Searched refs:Result (Results 151 - 175 of 1042) sorted by relevance

1234567891011>>

/external/clang/lib/Basic/
H A DObjCRuntime.cpp20 std::string Result; local
22 llvm::raw_string_ostream Out(Result);
25 return Result;
H A DVersionTuple.cpp20 std::string Result; local
22 llvm::raw_string_ostream Out(Result);
25 return Result;
/external/clang/lib/Index/
H A DSimpleFormatContext.h59 std::string Result; local
60 llvm::raw_string_ostream OS(Result);
63 return Result;
/external/clang/lib/Lex/
H A DPPExpressions.cpp82 static bool EvaluateDefined(PPValue &Result, Token &PeekTok, DefinedTracker &DT, argument
85 Result.setBegin(beginLoc);
111 Result.Val = II->hasMacroDefinition();
112 Result.Val.setIsUnsigned(false); // Result is signed intmax_t.
116 if (Result.Val != 0 && ValueLive) {
127 Result.setEnd(PeekTok.getLocation());
137 Result.setEnd(PeekTok.getLocation());
141 Result.setEnd(PeekTok.getLocation());
149 if (!MD && Result
169 EvaluateValue(PPValue &Result, Token &PeekTok, DefinedTracker &DT, bool ValueLive, Preprocessor &PP) argument
[all...]
/external/clang/tools/diagtool/
H A DDiagnosticNames.cpp55 const DiagnosticRecord *Result = local
59 assert(Result && "diagnostic not found; table may be out of date");
60 return *Result;
/external/junit/src/org/junit/experimental/results/
H A DPrintableResult.java10 import org.junit.runner.Result;
37 private Result result;
46 private PrintableResult(Result result) {
/external/llvm/include/llvm/ADT/
H A DSetOperations.h52 S1Ty Result; local
56 Result.insert(*SI);
57 return Result;
H A DMapVector.h77 std::pair<typename MapType::iterator, bool> Result = Map.insert(Pair); local
78 unsigned &I = Result.first->second;
79 if (Result.second) {
93 std::pair<typename MapType::iterator, bool> Result = Map.insert(Pair); local
94 unsigned &I = Result.first->second;
95 if (Result.second) {
/external/clang/lib/Rewrite/Frontend/
H A DRewriteObjC.cpp331 std::string &Result);
336 virtual void RewriteMetaDataIntoBuffer(std::string &Result) = 0;
340 std::string &Result) = 0;
342 std::string &Result) = 0;
346 std::string &Result) = 0;
348 std::string &Result) = 0;
353 std::string &Result) = 0;
534 std::string &Result);
537 std::string &Result) override;
540 StringRef prefix, StringRef ClassName, std::string &Result) overrid
3113 RewriteObjCInternalStruct(ObjCInterfaceDecl *CDecl, std::string &Result) argument
5114 RewriteIvarOffsetComputation(ObjCIvarDecl *ivar, std::string &Result) argument
5132 RewriteObjCProtocolMetaData( ObjCProtocolDecl *PDecl, StringRef prefix, StringRef ClassName, std::string &Result) argument
5282 RewriteObjCProtocolListMetaData( const ObjCList<ObjCProtocolDecl> &Protocols, StringRef prefix, StringRef ClassName, std::string &Result) argument
5324 RewriteObjCClassMetaData(ObjCImplementationDecl *IDecl, std::string &Result) argument
5579 RewriteMetaDataIntoBuffer(std::string &Result) argument
5678 RewriteObjCCategoryImplDecl(ObjCCategoryImplDecl *IDecl, std::string &Result) argument
5787 RewriteObjCMethodsMetaData(MethodIterator MethodBegin, MethodIterator MethodEnd, bool IsInstanceMethod, StringRef prefix, StringRef ClassName, std::string &Result) argument
[all...]
/external/chromium_org/components/component_updater/
H A Dupdate_response.cc28 UpdateResponse::Result::Result() {} function in class:component_updater::UpdateResponse::Result
30 UpdateResponse::Result::~Result() {}
32 UpdateResponse::Result::Manifest::Manifest() {}
33 UpdateResponse::Result::Manifest::~Manifest() {}
35 UpdateResponse::Result::Manifest::Package::Package() : size(0), sizediff(0) {}
36 UpdateResponse::Result::Manifest::Package::~Package() {}
107 UpdateResponse::Result* result,
109 UpdateResponse::Result
[all...]
H A Dcrx_downloader.cc18 CrxDownloader::Result::Result() function in class:component_updater::CrxDownloader::Result
92 Result result;
111 const Result& result,
149 void CrxDownloader::OnDownloadProgress(const Result& result) {
/external/libnfc-nxp/src/
H A DphFriNfc_MapTools.c67 NFCSTATUS Result = NFCSTATUS_SUCCESS; local
118 Result = PHNFCSTVAL(CID_FRI_NFC_NDEF_MAP,
123 Result = ((NdefMap->CardState ==
127 Result);
128 return Result;
/external/llvm/lib/Transforms/ObjCARC/
H A DObjCARCAliasAnalysis.cpp64 AliasResult Result = local
67 if (Result != MayAlias)
68 return Result;
75 Result = AliasAnalysis::alias(Location(UA), Location(UB));
78 if (Result == NoAlias)
/external/chromium_org/components/gcm_driver/
H A Dgcm_driver.h29 GCMClient::Result result)> RegisterCallback;
31 GCMClient::Result result)> SendCallback;
32 typedef base::Callback<void(GCMClient::Result result)> UnregisterCallback;
130 virtual GCMClient::Result EnsureStarted() = 0;
147 GCMClient::Result result);
151 GCMClient::Result result);
156 GCMClient::Result result);
/external/easymock/src/org/easymock/internal/
H A DRecordState.java35 private Result lastResult;
100 lastResult = Result.createReturnResult(value);
109 lastResult = Result.createThrowResult(throwable);
118 lastResult = Result.createAnswerResult(answer);
127 lastResult = Result.createDelegatingResult(delegateTo);
137 behavior.addStub(lastInvocation, Result.createReturnResult(value));
150 lastInvocation.withMatcher(org.easymock.MockControl.ALWAYS_MATCHER), Result
158 behavior.addStub(lastInvocation, Result.createReturnResult(null));
167 lastInvocation.withMatcher(org.easymock.MockControl.ALWAYS_MATCHER), Result
178 behavior.addStub(lastInvocation, Result
[all...]
/external/clang/lib/ASTMatchers/
H A DASTMatchFinder.cpp391 MemoizedMatchResult Result; local
392 Result.Nodes = *Builder;
393 Result.ResultOfMatch = matchesRecursively(Node, Matcher, &Result.Nodes,
395 ResultCache[Key] = Result;
396 *Builder = Result.Nodes;
397 return Result.ResultOfMatch;
517 MemoizedMatchResult Result; local
518 Result.ResultOfMatch = false;
519 Result
[all...]
/external/llvm/lib/DebugInfo/
H A DDWARFDebugInfoEntry.cpp173 Optional<const char *> Result = FormValue.getAsCString(U);
174 return Result.hasValue() ? Result.getValue() : FailValue;
182 Optional<uint64_t> Result = FormValue.getAsAddress(U);
183 return Result.hasValue() ? Result.getValue() : FailValue;
191 Optional<uint64_t> Result = FormValue.getAsUnsignedConstant();
192 return Result.hasValue() ? Result.getValue() : FailValue;
200 Optional<uint64_t> Result
216 uint64_t Result = local
[all...]
/external/clang/test/SemaTemplate/
H A Dinstantiate-expr-4.cpp240 template<typename T, typename Result>
243 Result result = t.m; // expected-error{{non-const lvalue reference to type}}
262 template<typename T, typename Result>
265 Result result = t->m; // expected-error 2{{non-const lvalue reference}}
307 template<typename T, typename Result>
310 Result result = t.f();
322 template<typename Result>
324 Result g();
327 Result r1 = g();
328 Result r
[all...]
/external/clang/lib/Sema/
H A DSemaStmtAsm.cpp166 ExprResult Result = DefaultFunctionArrayLvalueConversion(Exprs[i]); local
167 if (Result.isInvalid())
170 Exprs[i] = Result.get();
382 ExprResult Result = ActOnIdExpression(getCurScope(), SS, TemplateKWLoc, Id, local
391 if (!Result.isUsable()) return Result;
393 Result = CheckPlaceholderExpr(Result.get());
394 if (!Result.isUsable()) return Result;
468 CharUnits Result = Context.toCharUnitsFromBits(RL.getFieldOffset(i)); local
[all...]
/external/pdfium/core/src/fxcodec/lcms2/lcms2-2.6/src/
H A Dcmscnvrt.c261 // Result is stored in a 3x3 matrix
430 cmsBool AddConversion(cmsPipeline* Result, cmsColorSpaceSignature InPCS, cmsColorSpaceSignature OutPCS, cmsMAT3* m, cmsVEC3* off) argument
444 !cmsPipelineInsertStage(Result, cmsAT_END, cmsStageAllocMatrix(Result ->ContextID, 3, 3, m_as_dbl, off_as_dbl)))
450 !cmsPipelineInsertStage(Result, cmsAT_END, cmsStageAllocMatrix(Result ->ContextID, 3, 3, m_as_dbl, off_as_dbl)))
452 if (!cmsPipelineInsertStage(Result, cmsAT_END, _cmsStageAllocXYZ2Lab(Result ->ContextID)))
467 if (!cmsPipelineInsertStage(Result, cmsAT_END, _cmsStageAllocLab2XYZ(Result
529 cmsPipeline* Result; local
722 cmsPipeline* Result; local
914 cmsPipeline* Result = NULL; local
[all...]
/external/llvm/tools/lli/ChildTarget/
H A DChildTarget.cpp32 void sendExecutionComplete(int Result);
165 int32_t Result = -1; local
166 RT->executeCode(Addr, Result);
169 sendExecutionComplete(Result);
220 void LLIChildTarget::sendExecutionComplete(int Result) { argument
234 rc = WriteBytes(&Result, 4);
/external/chromium_org/chrome/browser/chromeos/attestation/
H A Dattestation_policy_browsertest.cc66 void Callback(PlatformVerificationFlow::Result result,
76 PlatformVerificationFlow::Result SyncContentProtectionAttestation() {
91 PlatformVerificationFlow::Result result_;
/external/chromium_org/chrome/browser/extensions/api/gcm/
H A Dgcm_api.h54 gcm::GCMClient::Result result);
70 void CompleteFunctionWithResult(gcm::GCMClient::Result result);
87 gcm::GCMClient::Result result);
/external/chromium_org/extensions/browser/api/web_request/
H A Dupload_data_presenter.h51 // 3. If that check passed then retrieve object->Result().
57 virtual scoped_ptr<base::Value> Result() = 0;
77 virtual scoped_ptr<base::Value> Result() OVERRIDE;
107 virtual scoped_ptr<base::Value> Result() OVERRIDE;
/external/chromium_org/net/quic/
H A Dquic_crypto_server_stream.h87 const ValidateClientHelloResultCallback::Result& result,
106 const Result& result) OVERRIDE;
119 const ValidateClientHelloResultCallback::Result& result);

Completed in 2055 milliseconds

1234567891011>>