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

  /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/
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...]
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...]
  /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/Parse/
ParseExpr.cpp 2526 Comps.back().LocStart = Comps.back().LocEnd = ConsumeToken();
2534 Comps.back().LocStart = ConsumeToken();
2553 Comps.back().LocStart = ST.getOpenLocation();
ParseExprCXX.cpp 918 SourceLocation LocStart = Tok.getLocation();
1149 InitCaptureType, SourceRange(LocStart, LocEnd));
  /src/external/apache2/llvm/dist/clang/lib/Sema/
SemaExpr.cpp 15104 Comps.push_back(OffsetOfNode(OC.LocStart, Exprs.size(), OC.LocEnd));
15113 Comps.push_back(OffsetOfNode(OC.LocStart, OC.U.IdentInfo, OC.LocEnd));
15119 if (RequireCompleteType(OC.LocStart, CurrentType,
15146 << SourceRange(Components[0].LocStart, OC.LocEnd)
15152 LookupResult R(*this, OC.U.IdentInfo, OC.LocStart, LookupMemberName);
15163 << OC.U.IdentInfo << RD << SourceRange(OC.LocStart,
15185 if (IsDerivedFrom(OC.LocStart, CurrentType, Context.getTypeDeclType(Parent),
15202 Comps.push_back(OffsetOfNode(OC.LocStart,
15206 Comps.push_back(OffsetOfNode(OC.LocStart, MemberDecl, OC.LocEnd));
SemaTemplate.cpp 2429 ExplicitSpecifier ES, TypeSourceInfo *TInfo, SourceLocation LocStart,
2438 CXXDeductionGuideDecl::Create(SemaRef.Context, DC, LocStart, ES, Name,
SemaDeclCXX.cpp 16186 FriendDecl *Sema::CheckFriendTypeDecl(SourceLocation LocStart,
16244 if (getLangOpts().CPlusPlus11 && LocStart != FriendLoc)
SemaOpenMP.cpp 669 void addTargetDirLocation(SourceLocation LocStart) {
670 TargetLocations.push_back(LocStart);
TreeTransform.h 10392 Comp.LocStart = ON.getSourceRange().getBegin();
  /src/external/apache2/llvm/dist/clang/lib/AST/
DeclCXX.cpp 2868 redeclarable_base(C), LocStart(StartLoc),
  /src/external/apache2/llvm/dist/clang/include/clang/Sema/
Sema.h 5477 SourceLocation LocStart, LocEnd;
7121 FriendDecl *CheckFriendTypeDecl(SourceLocation LocStart,
  /src/external/apache2/llvm/dist/clang/lib/Serialization/
ASTReaderDecl.cpp 1604 D->LocStart = readSourceLocation();

Completed in 82 milliseconds