HomeSort by: relevance | last modified time | path
    Searched defs:LocStart (Results 1 - 6 of 6) sorted by relevancy

  /src/external/apache2/llvm/dist/clang/lib/Parse/
ParseExprCXX.cpp 918 SourceLocation LocStart = Tok.getLocation();
1149 InitCaptureType, SourceRange(LocStart, LocEnd));
  /src/external/apache2/llvm/dist/clang/include/clang/AST/
Decl.h 478 SourceLocation LocStart;
482 : NamedDecl(Label, DC, IdentL, II), TheStmt(S), LocStart(StartL) {}
497 bool isGnuLocal() const { return LocStart != getLocation(); }
498 void setLocStart(SourceLocation L) { LocStart = L; }
501 return SourceRange(LocStart, getLocation());
521 SourceLocation LocStart;
626 return SourceRange(LocStart, RBraceLoc);
629 SourceLocation getBeginLoc() const LLVM_READONLY { return LocStart; }
631 void setLocStart(SourceLocation L) { LocStart = L; }
3109 SourceLocation LocStart;
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/CodeGen/
CoverageMappingGen.cpp 102 Optional<SourceLocation> LocStart;
112 SourceMappingRegion(Counter Count, Optional<SourceLocation> LocStart,
114 : Count(Count), LocStart(LocStart), LocEnd(LocEnd), GapRegion(GapRegion) {
118 Optional<SourceLocation> LocStart,
120 : Count(Count), FalseCount(FalseCount), LocStart(LocStart),
132 bool hasStartLoc() const { return LocStart.hasValue(); }
134 void setStartLoc(SourceLocation Loc) { LocStart = Loc; }
137 assert(LocStart && "Region has no start location")
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/Frontend/Rewrite/
RewriteModernObjC.cpp 806 SourceLocation LocStart = SM->getLocForStartOfFile(MainFileID);
823 LocStart.getLocWithOffset(BufPtr-MainBufStart);
1110 SourceLocation LocStart = Method->getBeginLoc();
1114 SM->getExpansionLineNumber(LocStart)) {
1115 InsertText(LocStart, "#if 0\n");
1118 InsertText(LocStart, "// ");
1130 SourceLocation LocStart = CatDecl->getBeginLoc();
1134 ReplaceText(LocStart, 1, "/** ");
1138 ReplaceText(LocStart, 0, "// ");
1155 SourceLocation LocStart = PDecl->getBeginLoc()
    [all...]
RewriteObjC.cpp 732 SourceLocation LocStart = SM->getLocForStartOfFile(MainFileID);
749 LocStart.getLocWithOffset(BufPtr-MainBufStart);
951 SourceLocation LocStart = Method->getBeginLoc();
955 SM->getExpansionLineNumber(LocStart)) {
956 InsertText(LocStart, "#if 0\n");
959 InsertText(LocStart, "// ");
971 SourceLocation LocStart = CatDecl->getBeginLoc();
974 ReplaceText(LocStart, 0, "// ");
989 SourceLocation LocStart = PDecl->getBeginLoc();
993 ReplaceText(LocStart, 0, "// ")
    [all...]
  /src/external/apache2/llvm/dist/clang/include/clang/Sema/
Sema.h 5477 SourceLocation LocStart, LocEnd;
7121 FriendDecl *CheckFriendTypeDecl(SourceLocation LocStart,

Completed in 44 milliseconds