HomeSort by relevance Sort by last modified time
    Searched defs:Loc (Results 151 - 175 of 956) sorted by null

1 2 3 4 5 67 8 91011>>

  /external/clang/lib/Index/
IndexTypeSourceInfo.cpp 163 SourceLocation Loc = NNS.getSourceRange().getBegin();
173 Loc, Parent, DC, SymbolRoleSet());
177 Loc, Parent, DC, SymbolRoleSet());
IndexingContext.cpp 32 bool IndexingContext::handleDecl(const Decl *D, SourceLocation Loc,
38 return handleDeclOccurrence(D, Loc, /*IsRef=*/false, cast<Decl>(DC),
43 bool IndexingContext::handleReference(const NamedDecl *D, SourceLocation Loc,
56 return handleDeclOccurrence(D, Loc, /*IsRef=*/true, Parent, Roles, Relations,
61 SourceLocation Loc;
64 Loc = IdLocs.front();
66 Loc = ImportD->getLocation();
68 Loc = SM.getFileLoc(Loc);
69 if (Loc.isInvalid()
    [all...]
  /external/clang/lib/Sema/
TypeLocBuilder.h 97 TyLocType Loc = TypeLoc(T, nullptr).castAs<TyLocType>();
98 size_t LocalSize = Loc.getLocalDataSize();
99 unsigned LocalAlign = Loc.getLocalDataAlignment();
  /external/clang/lib/StaticAnalyzer/Checkers/
AnalyzerStatsChecker.cpp 93 PresumedLoc Loc = SM.getPresumedLoc(D->getLocation());
94 if (!Loc.isValid())
102 output << "block(line:" << Loc.getLine() << ":col:" << Loc.getColumn();
CStringSyntaxChecker.cpp 144 PathDiagnosticLocation Loc =
161 "C String API", os.str(), Loc,
  /external/clang/tools/libclang/
CXLoadedDiagnostic.cpp 98 CXSourceLocation Loc = { { (void*) V, nullptr }, 0 };
99 return Loc;
173 const Location &Loc = *((Location*)V);
176 *file = Loc.file;
178 *line = Loc.line;
180 *column = Loc.column;
182 *offset = Loc.offset;
CXSourceLocation.cpp 210 const SourceLocation Loc =
212 if (Loc.isInvalid())
217 return SM.isInSystemHeader(Loc);
221 const SourceLocation Loc =
223 if (Loc.isInvalid())
228 return SM.isWrittenInMainFile(Loc);
241 SourceLocation Loc = SourceLocation::getFromRawEncoding(location.int_data);
243 if (!location.ptr_data[0] || Loc.isInvalid()) {
250 SourceLocation ExpansionLoc = SM.getExpansionLoc(Loc);
283 SourceLocation Loc = SourceLocation::getFromRawEncoding(location.int_data)
    [all...]
  /external/llvm/lib/Transforms/Scalar/
Sink.cpp 69 MemoryLocation Loc = MemoryLocation::get(L);
71 if (AA.getModRefInfo(S, Loc) & MRI_Mod)
  /external/swiftshader/third_party/LLVM/lib/Transforms/IPO/
FunctionAttrs.cpp 143 AliasAnalysis::Location Loc(Arg,
146 if (!AA->pointsToConstantMemory(Loc, /*OrLocal=*/true)) {
168 AliasAnalysis::Location Loc = AA->getLocation(LI);
169 if (AA->pointsToConstantMemory(Loc, /*OrLocal=*/true))
175 AliasAnalysis::Location Loc = AA->getLocation(SI);
176 if (AA->pointsToConstantMemory(Loc, /*OrLocal=*/true))
181 AliasAnalysis::Location Loc = AA->getLocation(VI);
182 if (AA->pointsToConstantMemory(Loc, /*OrLocal=*/true))
  /external/swiftshader/third_party/LLVM/lib/Transforms/Scalar/
Sink.cpp 163 AliasAnalysis::Location Loc = AA->getLocation(L);
166 if (AA->getModRefInfo(*I, Loc) & AliasAnalysis::Mod)
  /prebuilts/clang/host/darwin-x86/clang-4393122/include/llvm/MC/MCParser/
MCAsmParser.h 75 SMLoc Loc;
164 printError(Err.Loc, Twine(Err.Msg), Err.Range);
182 bool parseTokenLoc(SMLoc &Loc);
195 bool check(bool P, SMLoc Loc, const Twine &Msg);
  /prebuilts/clang/host/darwin-x86/clang-4479392/include/llvm/MC/MCParser/
MCAsmParser.h 75 SMLoc Loc;
164 printError(Err.Loc, Twine(Err.Msg), Err.Range);
182 bool parseTokenLoc(SMLoc &Loc);
195 bool check(bool P, SMLoc Loc, const Twine &Msg);
  /prebuilts/clang/host/linux-x86/clang-4393122/include/llvm/MC/MCParser/
MCAsmParser.h 75 SMLoc Loc;
164 printError(Err.Loc, Twine(Err.Msg), Err.Range);
182 bool parseTokenLoc(SMLoc &Loc);
195 bool check(bool P, SMLoc Loc, const Twine &Msg);
  /prebuilts/clang/host/linux-x86/clang-4479392/include/llvm/MC/MCParser/
MCAsmParser.h 75 SMLoc Loc;
164 printError(Err.Loc, Twine(Err.Msg), Err.Range);
182 bool parseTokenLoc(SMLoc &Loc);
195 bool check(bool P, SMLoc Loc, const Twine &Msg);
  /external/clang/include/clang/AST/
DependentDiagnostic.h 41 SourceLocation Loc,
49 DD->AccessData.Loc = Loc.getRawEncoding();
74 return SourceLocation::getFromRawEncoding(AccessData.Loc);
112 unsigned Loc;
  /external/clang/include/clang/Sema/
ParsedTemplate.h 50 /// \param Loc the location of the type.
51 ParsedTemplateArgument(KindType Kind, void *Arg, SourceLocation Loc)
52 : Kind(Kind), Arg(Arg), Loc(Loc) { }
68 SS(SS), Loc(TemplateLoc), EllipsisLoc() { }
95 SourceLocation getLocation() const { return Loc; }
133 SourceLocation Loc;
  /external/clang/lib/ARCMigrate/
TransGCAttrs.cpp 87 SourceLocation Loc = TL.getAttrNameLoc();
88 unsigned RawLoc = Loc.getRawEncoding();
94 if (Loc.isMacroID())
95 Loc = SM.getImmediateExpansionRange(Loc).first;
116 Attr.Loc = Loc;
171 bool isInMainFile(SourceLocation Loc) {
172 if (Loc.isInvalid())
176 return SM.isInFileID(SM.getExpansionLoc(Loc), SM.getMainFileID())
    [all...]
TransRetainReleaseDealloc.cpp 323 SourceLocation Loc = Msg->getExprLoc();
324 if (!Loc.isMacroID())
327 StringRef MacroName = Lexer::getImmediateMacroName(Loc, SM,
384 void clearDiagnostics(SourceLocation loc) const {
388 loc);
  /external/clang/lib/Edit/
Commit.cpp 20 SourceLocation Loc = SM.getLocForStartOfFile(Offset.getFID());
21 Loc = Loc.getLocWithOffset(Offset.getOffset());
22 assert(Loc.isFileID());
23 return Loc;
27 SourceLocation Loc = getFileLocation(SM);
28 return CharSourceRange::getCharRange(Loc, Loc.getLocWithOffset(Length));
32 SourceLocation Loc = SM.getLocForStartOfFile(InsertFromRangeOffs.getFID());
33 Loc = Loc.getLocWithOffset(InsertFromRangeOffs.getOffset())
    [all...]
  /external/clang/unittests/Lex/
LexerTest.cpp 299 SourceLocation Loc;
300 EXPECT_TRUE(Lexer::isAtStartOfMacroExpansion(lsqrLoc, SourceMgr, LangOpts, &Loc));
301 EXPECT_EQ(Loc, macroRange.getBegin());
304 EXPECT_TRUE(Lexer::isAtEndOfMacroExpansion(rsqrLoc, SourceMgr, LangOpts, &Loc));
305 EXPECT_EQ(Loc, macroRange.getEnd());
  /external/compiler-rt/lib/ubsan/
ubsan_handlers.h 21 SourceLocation Loc;
43 SourceLocation Loc;
64 SourceLocation Loc;
75 SourceLocation Loc;
84 SourceLocation Loc;
93 SourceLocation Loc;
108 SourceLocation Loc;
118 SourceLocation Loc;
126 SourceLocation Loc;
135 SourceLocation Loc;
    [all...]
  /external/llvm/include/llvm/MC/
MCFixup.h 76 SMLoc Loc;
79 MCFixupKind Kind, SMLoc Loc = SMLoc()) {
85 FI.Loc = Loc;
108 SMLoc getLoc() const { return Loc; }
  /external/llvm/lib/CodeGen/AsmPrinter/
DebugLocEntry.h 45 Value(const DIExpression *Expr, MachineLocation Loc)
46 : Expression(Expr), EntryKind(E_Location), Loc(Loc) {
65 MachineLocation Loc;
74 MachineLocation getLoc() const { return Loc; }
81 llvm::dbgs() << "Loc = { reg=" << Loc.getReg() << " ";
82 if (Loc.isIndirect())
83 llvm::dbgs() << '+' << Loc.getOffset();
114 /// share the same Loc/Constant and if Next immediately follows thi
    [all...]
  /external/llvm/lib/TableGen/
TGParser.h 38 SMLoc Loc;
41 : Name(N), Bits(B), Value(V), Loc(L) {
106 bool AddValue(Record *TheRec, SMLoc Loc, const RecordVal &RV);
107 bool SetValue(Record *TheRec, SMLoc Loc, Init *ValName,
110 bool SetValue(Record *TheRec, SMLoc Loc, const std::string &ValName,
113 return SetValue(TheRec, Loc, StringInit::get(ValName), BitList, V,
133 bool ProcessForeachDefs(Record *CurRec, SMLoc Loc);
134 bool ProcessForeachDefs(Record *CurRec, SMLoc Loc, IterSet &IterVals);
  /external/llvm/tools/llvm-mcmarkup/
llvm-mcmarkup.cpp 61 MarkupTag(StringRef n, StringRef m, SMLoc Loc)
62 : Name(n), Modifiers(m), StartLoc(Loc) {}
80 void FatalError(SMLoc Loc, StringRef Msg);
83 void MarkupParser::FatalError(SMLoc Loc, StringRef Msg) {
84 SM.PrintMessage(Loc, SourceMgr::DK_Error, Msg);
126 SMLoc Loc = SMLoc::getFromPointer(Start - 1);
134 return MarkupTag(SplitTag.first, SplitTag.second, Loc);
176 SMLoc Loc = SMLoc::getFromPointer(Lex.getPosition() - 1);
184 Parser.FatalError(Loc, "'>' without matching '<'");

Completed in 647 milliseconds

1 2 3 4 5 67 8 91011>>