Searched refs:getResult (Results 1 - 25 of 32) sorted by relevance

12

/macosx-10.10.1/CPANInternal-159.1/Tree-Simple-VisitorFactory-0.10/t/
H A D30_Tree_Simple_Visitor_FindByPath_test.t59 can_ok($visitor, 'getResult');
64 is($visitor->getResult(), $first_search, '... this should be what we got back');
78 ok(!defined($visitor->getResult()), '... match failed so we get undef back');
91 ok(!defined($visitor->getResult()), '... match failed so we get undef back');
103 ok(!defined($visitor->getResult()), '... match failed so we get undef back');
117 is($visitor->getResult(), $second_search, '... this should be what we got back');
135 ok(!defined($visitor->getResult()), '... should fail, and we get back undef');
147 ok(!defined($visitor->getResult()), '... should fail, and we get back undef');
H A D32_Tree_Simple_Visitor_FindByNodeValue_test.t67 can_ok($visitor, 'getResult');
72 my $match = $visitor->getResult();
92 my $match = $visitor->getResult();
111 my $match = $visitor->getResult();
128 my $match = $visitor->getResult();
145 my $match = $visitor->getResult();
162 my $match = $visitor->getResult();
H A D35_Tree_Simple_Visitor_FindByUID_test.t66 can_ok($visitor, 'getResult');
71 my $match = $visitor->getResult();
91 my $match = $visitor->getResult();
110 my $match = $visitor->getResult();
127 my $match = $visitor->getResult();
144 my $match = $visitor->getResult();
161 my $match = $visitor->getResult();
/macosx-10.10.1/IOATAFamily-253.0.1/
H A DATADeviceNub.cpp245 err = cmd->getResult();
344 if( cmd->getResult() )
346 err = cmd->getResult();
584 if( command->getResult() )
587 DLOG("Command result error = %ld\n",(long int)command->getResult() );
H A DIOATACommand.h226 /*!@function getResult
229 virtual IOReturn getResult (void);
H A DIOATACommand.cpp585 IOATACommand::getResult (void) function in class:IOATACommand
/macosx-10.10.1/llvmCore-3425.0.34/lib/Analysis/
H A DMemoryDependenceAnalysis.cpp636 if (I->getResult().isDirty())
684 if (!Entry->getResult().isDirty())
695 if (Instruction *Inst = ExistingResult->getResult().getInst()) {
796 if (ExistingResult && !ExistingResult->getResult().isDirty()) {
798 return ExistingResult->getResult();
805 if (ExistingResult && ExistingResult->getResult().getInst()) {
806 assert(ExistingResult->getResult().getInst()->getParent() == BB &&
809 ScanPos = ExistingResult->getResult().getInst();
926 if (Instruction *Inst = DI->getResult().getInst())
947 if (Instruction *Inst = DI->getResult()
[all...]
H A DMemDepPrinter.cpp118 const MemDepResult &Res = I->getResult();
151 const MemDepResult &Res = I->getResult();
/macosx-10.10.1/Security-57031.1.35/Security/include/security_keychain/
H A DCertificateRequest.h72 void getResult(
H A DSecCertificateRequest.cpp94 CertificateRequest::required(certRequestRef)->getResult(estimatedTime, certData);
H A DCertificateRequest.cpp471 void CertificateRequest::getResult( function in class:CertificateRequest
486 certReqDbg("CertificateRequest::getResult(): bad policy");
/macosx-10.10.1/Security-57031.1.35/Security/libsecurity_keychain/Security/
H A DCertificateRequest.h72 void getResult(
H A DSecCertificateRequest.cpp94 CertificateRequest::required(certRequestRef)->getResult(estimatedTime, certData);
/macosx-10.10.1/Security-57031.1.35/Security/libsecurity_keychain/lib/
H A DCertificateRequest.h72 void getResult(
H A DSecCertificateRequest.cpp94 CertificateRequest::required(certRequestRef)->getResult(estimatedTime, certData);
/macosx-10.10.1/CPANInternal-159.1/Tree-Simple-VisitorFactory-0.10/lib/Tree/Simple/Visitor/
H A DFindByNodeValue.pm118 sub getResult { subroutine
151 my $result = $visitor->getResult() || die "No Tree found";
185 =item B<getResult>
H A DFindByPath.pm120 sub getResult { subroutine
154 my $result = $visitor->getResult() || die "No Tree found";
188 =item B<getResult>
H A DFindByUID.pm118 sub getResult { subroutine
151 my $result = $visitor->getResult() || die "No Tree found";
185 =item B<getResult>
/macosx-10.10.1/llvmCore-3425.0.34/include/llvm/Analysis/
H A DMemoryDependenceAnalysis.h205 const MemDepResult &getResult() const { return Result; } function in class:llvm::NonLocalDepEntry
230 const MemDepResult &getResult() const { return Entry.getResult(); } function in class:llvm::NonLocalDepResult
/macosx-10.10.1/IOATAPIProtocolTransport-350.0.3/
H A DIOATAPIProtocolTransport.cpp948 result = cmd->getResult ( );
1411 if ( cmd->getResult ( ) != kATANoErr )
1414 STATUS_LOG ( ( "Command result error = %ld\n", cmd->getResult ( ) ) );
1444 status = cmd->getResult ( );
1942 status = fConfigCommand->getResult ( );
2277 theErr = cmd->getResult ( );
2627 status = cmd->getResult ( );
2629 STATUS_LOG ( ( "getResult returned 0x%0lX\n", status ) );
/macosx-10.10.1/WebKit2-7600.1.25/DatabaseProcess/IndexedDB/
H A DDatabaseProcessIDBConnection.cpp291 m_uniqueIDBDatabase->getRecord(IDBIdentifier(*this, transactionID), objectStoreID, indexID, keyRange, static_cast<IndexedDB::CursorType>(cursorType), [connection, requestID](const IDBGetResult& getResult, uint32_t errorCode, const String& errorMessage) {
292 connection->send(Messages::WebIDBServerConnection::DidGetRecord(requestID, getResult, errorCode, errorMessage));
H A DUniqueIDBDatabase.cpp918 IDBGetResult getResult = result ? IDBGetResult(result.release(), keyRange->lower(), objectStoreMetadata.keyPath) : IDBGetResult(); local
919 postMainThreadTask(createAsyncTask(*this, &UniqueIDBDatabase::didGetRecordFromBackingStore, requestID, getResult, 0, String(StringImpl::empty())));
930 IDBGetResult getResult = result ? IDBGetResult(result.release(), resultKey.release(), objectStoreMetadata.keyPath) : IDBGetResult(); local
931 postMainThreadTask(createAsyncTask(*this, &UniqueIDBDatabase::didGetRecordFromBackingStore, requestID, getResult, 0, String(StringImpl::empty())));
/macosx-10.10.1/llvmCore-3425.0.34/lib/Transforms/Scalar/
H A DGVN.cpp334 if (I->getResult().isNonLocal())
339 if (!I->getResult().isDef() || cdep != 0) {
344 CallInst *NonLocalDepCall = dyn_cast<CallInst>(I->getResult().getInst());
1351 !Deps[0].getResult().isDef() && !Deps[0].getResult().isClobber()) {
1369 MemDepResult DepInfo = Deps[i].getResult();
/macosx-10.10.1/llvmCore-3425.0.34/utils/TableGen/
H A DDAGISelMatcherOpt.cpp99 if (CM->getResult(i) != RootResultFirst+i)
/macosx-10.10.1/WebKit2-7600.1.25/WebProcess/Databases/IndexedDB/
H A DWebIDBServerConnection.cpp459 void WebIDBServerConnection::didGetRecord(uint64_t requestID, const WebCore::IDBGetResult& getResult, uint32_t errorCode, const String& errorMessage) argument
468 serverRequest->completeRequest(getResult, errorCode ? IDBDatabaseError::create(errorCode, errorMessage) : nullptr);

Completed in 241 milliseconds

12