HomeSort by relevance Sort by last modified time
    Searched defs:Loc (Results 1 - 25 of 197) sorted by null

1 2 3 4 5 6 7 8

  /external/clang/include/clang/Basic/
PrettyStackTrace.h 29 SourceLocation Loc;
33 : SM(sm), Loc(L), Message(Msg) {}
  /external/compiler-rt/lib/ubsan/
ubsan_handlers_cxx.h 22 SourceLocation Loc;
ubsan_handlers.h 21 SourceLocation Loc;
39 SourceLocation Loc;
60 SourceLocation Loc;
71 SourceLocation Loc;
80 SourceLocation Loc;
91 SourceLocation Loc;
99 // FIXME: SourceLocation Loc;
108 SourceLocation Loc;
116 SourceLocation Loc;
  /external/clang/include/clang/AST/
CommentBriefParser.h 39 SourceLocation Loc = Tok.getLocation();
41 return Loc;
LambdaCapture.h 40 SourceLocation Loc;
49 /// \param Loc The source location associated with this capture.
62 LambdaCapture(SourceLocation Loc, bool Implicit, LambdaCaptureKind Kind,
107 SourceLocation getLocation() const { return Loc; }
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/
PrettyDeclStackTrace.h 34 SourceLocation Loc;
38 PrettyDeclStackTraceEntry(Sema &S, Decl *D, SourceLocation Loc,
40 : S(S), TheDecl(D), Loc(Loc), Message(Msg) {}
ParsedTemplate.h 43 /// \param Loc the location of the type.
44 ParsedTemplateArgument(KindType Kind, void *Arg, SourceLocation Loc)
45 : Kind(Kind), Arg(Arg), Loc(Loc) { }
61 SS(SS), Loc(TemplateLoc), EllipsisLoc() { }
88 SourceLocation getLocation() const { return Loc; }
126 SourceLocation Loc;
  /external/clang/lib/AST/
SelectorLocationsKind.cpp 57 SourceLocation Loc = Arg->getLocStart();
58 if (Loc.isInvalid())
59 return Loc;
61 return Loc.getLocWithOffset(-1);
  /external/clang/test/Analysis/
region-store.cpp 4 class Loc {
9 Loc l;
10 void setLoc(Loc L) {
24 int radar13445834(Derived *Builder, Loc l) {
  /external/llvm/lib/DebugInfo/
DWARFDebugLoc.cpp 30 for (unsigned char Loc : E.Loc) {
31 OS << format("%2.2x ", Loc);
42 LocationList &Loc = Locations.back();
43 Loc.Offset = Offset;
70 E.Loc.reserve(str.size());
71 std::copy(str.begin(), str.end(), std::back_inserter(E.Loc));
72 Loc.Entries.push_back(std::move(E));
83 LocationList &Loc = Locations.back();
84 Loc.Offset = Offset
    [all...]
DWARFDebugLoc.h 29 SmallVector<unsigned char, 4> Loc;
63 SmallVector<unsigned char, 4> Loc;
  /external/clang/lib/ARCMigrate/
TransARCAssign.cpp 48 SourceLocation Loc = OrigLoc;
52 Expr::isModifiableLvalueResult IsLV = E->isModifiableLvalue(Ctx, &Loc);
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;
173 bool isInMainFile(SourceLocation Loc) {
174 if (Loc.isInvalid())
178 return SM.isInFileID(SM.getExpansionLoc(Loc), SM.getMainFileID())
    [all...]
TransRetainReleaseDealloc.cpp 333 SourceLocation Loc = Msg->getExprLoc();
334 if (!Loc.isMacroID())
337 StringRef MacroName = Lexer::getImmediateMacroName(Loc, SM,
394 void clearDiagnostics(SourceLocation loc) const {
398 loc);
  /external/clang/lib/StaticAnalyzer/Checkers/
TraversalChecker.cpp 48 SourceLocation Loc = Parent->getLocStart();
49 llvm::outs() << C.getSourceManager().getSpellingLineNumber(Loc) << " "
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/llvm/include/llvm/ExecutionEngine/
JITEventListener.h 39 DebugLoc Loc;
  /external/clang/include/clang/Lex/
PPConditionalDirectiveRecord.h 32 SourceLocation Loc;
36 CondDirectiveLoc(SourceLocation Loc, SourceLocation RegionLoc)
37 : Loc(Loc), RegionLoc(RegionLoc) {}
39 SourceLocation getLoc() const { return Loc; }
86 SourceLocation findConditionalDirectiveRegionLoc(SourceLocation Loc) const;
89 void If(SourceLocation Loc, SourceRange ConditionRange,
91 void Elif(SourceLocation Loc, SourceRange ConditionRange,
93 void Ifdef(SourceLocation Loc, const Token &MacroNameTok,
95 void Ifndef(SourceLocation Loc, const Token &MacroNameTok
    [all...]
  /external/clang/tools/libclang/
IndexTypeSourceInfo.cpp 127 SourceLocation Loc = NNS.getSourceRange().getBegin();
136 Loc, Parent, DC);
140 Loc, Parent, DC);
  /external/llvm/utils/TableGen/
CTagsEmitter.cpp 34 SMLoc Loc;
37 : Id(&Name), Loc(Location) {}
41 SrcMgr.getMemoryBuffer(SrcMgr.FindBufferContainingLoc(Loc));
43 std::pair<unsigned, unsigned> LineAndColumn = SrcMgr.getLineAndColumn(Loc);
  /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/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/lib/Parse/
ParseStmtAsm.cpp 49 ClangAsmParserCallback(Parser &P, SourceLocation Loc, StringRef AsmString,
51 : TheParser(P), AsmLoc(Loc), AsmString(AsmString), AsmToks(Toks),
154 SourceLocation Loc = AsmLoc;
157 Loc = Tok.getLocation();
158 Loc = Loc.getLocWithOffset(Offset - TokOffset);
160 TheParser.Diag(Loc, diag::err_inline_ms_asm_parsing) << D.getMessage();
592 SourceLocation Loc = Tok.getLocation();
597 Diag(Loc, diag::w_asm_qualifier_ignored) << "const";
599 Diag(Loc, diag::w_asm_qualifier_ignored) << "restrict"
    [all...]

Completed in 1091 milliseconds

1 2 3 4 5 6 7 8