Searched defs:LocStart (Results 1 - 6 of 6) sorted by relevance

/external/clang/include/clang/AST/
H A DDecl.h356 /// LocStart - For normal labels, this is the same as the main declaration
359 SourceLocation LocStart; member in class:clang::LabelDecl
366 LocStart(StartL) {}
379 bool isGnuLocal() const { return LocStart != getLocation(); }
380 void setLocStart(SourceLocation L) { LocStart = L; }
383 return SourceRange(LocStart, getLocation());
401 /// LocStart - The starting location of the source range, pointing
403 SourceLocation LocStart; member in class:clang::NamespaceDecl
502 return SourceRange(LocStart, RBraceLoc);
505 SourceLocation getLocStart() const LLVM_READONLY { return LocStart; }
[all...]
/external/clang/lib/CodeGen/
H A DCoverageMappingGen.cpp40 Optional<SourceLocation> LocStart; member in class:__anon995::SourceMappingRegion
46 SourceMappingRegion(Counter Count, Optional<SourceLocation> LocStart, argument
48 : Count(Count), LocStart(LocStart), LocEnd(LocEnd) {}
51 : Count(std::move(Region.Count)), LocStart(std::move(Region.LocStart)),
56 LocStart = std::move(RHS.LocStart);
65 bool hasStartLoc() const { return LocStart.hasValue(); }
67 void setStartLoc(SourceLocation Loc) { LocStart
224 auto LocStart = I.getBegin(); local
252 SourceLocation LocStart = Region.getStartLoc(); local
[all...]
/external/clang/lib/Frontend/Rewrite/
H A DRewriteObjC.cpp731 SourceLocation LocStart = SM->getLocForStartOfFile(MainFileID); local
748 LocStart.getLocWithOffset(BufPtr-MainBufStart);
947 SourceLocation LocStart = Method->getLocStart();
951 SM->getExpansionLineNumber(LocStart)) {
952 InsertText(LocStart, "#if 0\n");
955 InsertText(LocStart, "// ");
967 SourceLocation LocStart = CatDecl->getLocStart(); local
970 ReplaceText(LocStart, 0, "// ");
985 SourceLocation LocStart = PDecl->getLocStart(); local
989 ReplaceText(LocStart,
1020 SourceLocation LocStart = (*D.begin())->getLocStart(); local
1029 SourceLocation LocStart = DG[0]->getLocStart(); local
1171 SourceLocation LocStart = OMD->getLocStart(); local
1182 SourceLocation LocStart = OMD->getLocStart(); local
3114 SourceLocation LocStart = CDecl->getLocStart(); local
3913 SourceLocation LocStart = CE->getLParenLoc(); local
[all...]
H A DRewriteModernObjC.cpp812 SourceLocation LocStart = SM->getLocForStartOfFile(MainFileID); local
829 LocStart.getLocWithOffset(BufPtr-MainBufStart);
1119 SourceLocation LocStart = Method->getLocStart();
1123 SM->getExpansionLineNumber(LocStart)) {
1124 InsertText(LocStart, "#if 0\n");
1127 InsertText(LocStart, "// ");
1139 SourceLocation LocStart = CatDecl->getLocStart(); local
1143 ReplaceText(LocStart, 1, "/** ");
1147 ReplaceText(LocStart, 0, "// ");
1164 SourceLocation LocStart local
1199 SourceLocation LocStart = (*D.begin())->getLocStart(); local
1208 SourceLocation LocStart = DG[0]->getLocStart(); local
1217 SourceLocation LocStart = LSD->getExternLoc(); local
1376 SourceLocation LocStart = OMD->getLocStart(); local
1387 SourceLocation LocStart = OMD->getLocStart(); local
3978 SourceLocation LocStart = CDecl->getLocStart(); local
4818 SourceLocation LocStart = CE->getLParenLoc(); local
[all...]
/external/clang/include/clang/Sema/
H A DSema.h3737 SourceLocation LocStart, LocEnd; member in struct:clang::Sema::OffsetOfComponent
5060 FriendDecl *CheckFriendTypeDecl(SourceLocation LocStart,
/external/clang/lib/Sema/
H A DSemaDeclCXX.cpp12139 FriendDecl *Sema::CheckFriendTypeDecl(SourceLocation LocStart, argument
12197 if (getLangOpts().CPlusPlus11 && LocStart != FriendLoc)

Completed in 144 milliseconds