Searched defs:Result (Results 276 - 300 of 759) sorted by relevance

<<11121314151617181920>>

/external/clang/lib/AST/
H A DDeclarationName.cpp270 std::string Result; local
271 llvm::raw_string_ostream OS(Result);
543 std::string Result; local
544 llvm::raw_string_ostream OS(Result);
H A DNestedNameSpecifier.cpp390 void *Result; local
391 memcpy(&Result, static_cast<char *>(Data) + Offset, sizeof(void*));
392 return Result;
/external/clang/lib/ASTMatchers/
H A DASTMatchersInternal.cpp83 bool Result = InnerMatcher->dynMatches(DynNode, Finder, Builder); variable
84 if (Result) Builder->setBinding(ID, DynNode);
85 return Result;
212 auto Result = *this;
213 Result.Implementation = new IdDynMatcher(ID, Result.Implementation);
214 return Result;
270 BoundNodesTreeBuilder Result; local
276 Result.addMatch(BuilderInner);
279 *Builder = std::move(Result);
288 BoundNodesTreeBuilder Result = *Builder; local
[all...]
/external/clang/lib/Frontend/
H A DInitPreprocessor.cpp310 std::string Result; local
317 llvm::raw_string_ostream Out(Result);
358 Builder.append(Result);
/external/clang/lib/Lex/
H A DPPExpressions.cpp88 static bool EvaluateDefined(PPValue &Result, Token &PeekTok, DefinedTracker &DT, argument
91 Result.setBegin(beginLoc);
118 Result.Val = !!Macro;
119 Result.Val.setIsUnsigned(false); // Result is signed intmax_t.
122 if (Result.Val != 0 && ValueLive)
131 Result.setEnd(PeekTok.getLocation());
141 Result.setEnd(PeekTok.getLocation());
145 Result.setEnd(PeekTok.getLocation());
207 /// return the computed value in Result
214 EvaluateValue(PPValue &Result, Token &PeekTok, DefinedTracker &DT, bool ValueLive, Preprocessor &PP) argument
[all...]
H A DPPLexerChange.cpp235 SmallString<128> &Result) {
236 Result.clear();
243 Result = FilePath.substr(Path.size());
244 llvm::sys::path::append(Result,
253 Result = File->getName();
256 void Preprocessor::PropagateLineStartLeadingSpaceInfo(Token &Result) { argument
258 CurTokenLexer->PropagateLineStartLeadingSpaceInfo(Result);
262 CurLexer->PropagateLineStartLeadingSpaceInfo(Result);
295 bool Preprocessor::HandleEndOfFile(Token &Result, bool isEndOfMacro) { argument
378 Result
233 computeRelativePath(FileManager &FM, const DirectoryEntry *Dir, const FileEntry *File, SmallString<128> &Result) argument
523 HandleEndOfTokenLexer(Token &Result) argument
[all...]
H A DPreprocessingRecord.cpp54 return llvm::make_range(iterator(this, CachedRangeQuery.Result.first),
55 iterator(this, CachedRangeQuery.Result.second));
61 CachedRangeQuery.Result = Res;
315 unsigned Result = LoadedPreprocessedEntities.size(); local
318 return Result;
H A DTokenLexer.cpp581 // Lex the resultant pasted token into Result.
582 Token Result; local
588 Result.startToken();
589 Result.setKind(tok::raw_identifier);
590 Result.setRawIdentifierData(ResultTokStrPtr);
591 Result.setLocation(ResultTokLoc);
592 Result.setLength(LHSLen+RHSLen);
617 bool isInvalid = !TL.LexFromRawLexer(Result);
621 isInvalid |= Result.is(tok::eof);
657 if (Result
854 PropagateLineStartLeadingSpaceInfo(Token &Result) argument
[all...]
/external/clang/lib/Parse/
H A DParseStmtAsm.cpp66 ExprResult Result = TheParser.ParseMSAsmIdentifier( variable
93 Info.OpDecl = static_cast<void *>(Result.get());
218 ExprResult Result; local
220 Result = ParseCXXThis();
229 Result = Actions.LookupInlineAsmIdentifier(SS, TemplateKWLoc, Id, Info,
235 while (Result.isUsable() && Tok.is(tok::period)) {
242 Result = Actions.LookupInlineAsmVarDeclField(Result.get(), Id->getName(),
278 return Result;
/external/clang/lib/Sema/
H A DSemaStmtAsm.cpp287 llvm::APSInt Result; local
288 if (!InputExpr->EvaluateAsInt(Result, Context))
292 if (!Info.isValidAsmImmediate(Result))
295 << Result.toString(10) << Info.getConstraintStr()
300 ExprResult Result = DefaultFunctionArrayLvalueConversion(Exprs[i]); local
301 if (Result.isInvalid())
304 Exprs[i] = Result.get();
572 ExprResult Result = ActOnIdExpression(getCurScope(), SS, TemplateKWLoc, Id,
581 if (!Result.isUsable()) return Result;
[all...]
/external/clang/lib/Serialization/
H A DModuleManager.cpp258 VisitState *Result = FirstVisitState; local
260 Result->NextState = nullptr;
261 return Result;
H A DMultiOnDiskHashTable.h213 data_type Result; local
227 Result = It->second;
230 data_type_builder ResultBuilder(Result);
240 return Result;
246 data_type Result; local
247 data_type_builder ResultBuilder(Result);
270 return Result;
/external/clang/lib/StaticAnalyzer/Core/
H A DStore.cpp242 SVal Result = Derived;
246 Result = evalDerivedToBase(Result, (*I)->getType(), (*I)->isVirtual());
248 return Result;
253 SVal Result = Derived; local
256 Result = evalDerivedToBase(Result, I->Base->getType(),
259 return Result;
/external/clang/lib/Tooling/Core/
H A DReplacement.cpp76 std::string Result; local
77 llvm::raw_string_ostream Stream(Result);
222 bool Result = true; local
227 Result = I->apply(Rewrite) && Result;
229 Result = false;
232 return Result;
239 bool Result = true; local
244 Result = I->apply(Rewrite) && Result;
278 std::string Result; local
293 std::vector<Range> Result; local
447 Replacements Result; local
[all...]
/external/clang/test/CodeGen/
H A D2002-07-14-MiscTests3.c64 int Result; local
65 if (Val > 12.345) Result = 4;
66 return Result; /* Test use of undefined value */
76 int Result = Param; local
80 EF1(&Result, &c, &X);
85 EF1(&Result, &c, &X);
89 return Result;
112 int i, Result = 0; local
114 Result += Array[i];
116 return Result;
[all...]
/external/clang/test/SemaTemplate/
H A Ddefault-expr-arguments.cpp176 vector<A> Result; local
180 vector<A> Result; local
/external/clang/unittests/Tooling/
H A DRefactoringTest.cpp640 StringRef Result, const Replacements &First,
648 EXPECT_EQ(Result, *InSequenceRewrite);
639 mergeAndTestRewrite(StringRef Code, StringRef Intermediate, StringRef Result, const Replacements &First, const Replacements &Second) argument
/external/deqp/framework/common/
H A DtcuThreadUtil.hpp44 enum Result enum in class:tcu::ThreadUtil::Event
53 void setResult (Result result);
54 Result waitReady (void);
55 Result getResult (void) const { return m_result; }
58 volatile Result m_result;
/external/dng_sdk/source/
H A Ddng_negative.cpp517 return printer.Result ();
632 fEmbeddedXMPDigest = printer.Result ();
1569 return printer.Result ();
1755 fTileHash [tileIndex] = printer.Result ();
1759 dng_fingerprint Result () function
1771 return printer.Result ();
1837 fNewRawImageDigest = task.Result ();
1858 maskDigest = task.Result ();
1870 fNewRawImageDigest = printer.Result ();
2108 fRawDataUniqueID = printer.Result ();
[all...]
/external/libusb/libusb/os/
H A Dwindows_usbdk.h73 USB_DK_TRANSFER_RESULT Result; member in struct:tag_USB_DK_TRANSFER_REQUEST
/external/llvm/examples/Kaleidoscope/Chapter3/
H A Dtoy.cpp215 auto Result = llvm::make_unique<NumberExprAST>(NumVal); local
217 return std::move(Result);
/external/llvm/include/llvm/Analysis/
H A DCallGraph.h304 typedef CallGraph Result; typedef in class:CallGraphAnalysis
H A DMemoryDependenceAnalysis.h203 MemDepResult Result; member in class:llvm::NonLocalDepEntry
207 : BB(bb), Result(result) {}
215 void setResult(const MemDepResult &R) { Result = R; }
217 const MemDepResult &getResult() const { return Result; }
385 SmallVectorImpl<NonLocalDepResult> &Result);
457 SmallVectorImpl<NonLocalDepResult> &Result,
480 typedef MemoryDependenceResults Result; typedef in class:llvm::MemoryDependenceAnalysis
/external/llvm/include/llvm/IR/
H A DStatepoint.h402 std::vector<const GCRelocateInst *> Result; local
411 Result.push_back(Relocate);
414 return Result;
423 Result.push_back(Relocate);
425 return Result;
/external/llvm/include/llvm/ProfileData/
H A DSampleProf.h50 sampleprof_error Result) {
54 Result != sampleprof_error::success)
55 Accumulator = Result;
155 sampleprof_error Result = addSamples(Other.getSamples(), Weight); local
157 MergeResult(Result, addCalledTarget(I.first(), I.second, Weight));
159 return Result;
260 sampleprof_error Result = sampleprof_error::success; local
262 MergeResult(Result, addTotalSamples(Other.getTotalSamples(), Weight));
263 MergeResult(Result, addHeadSamples(Other.getHeadSamples(), Weight));
267 MergeResult(Result, BodySample
49 MergeResult(sampleprof_error &Accumulator, sampleprof_error Result) argument
[all...]

Completed in 2281 milliseconds

<<11121314151617181920>>