HomeSort by: relevance | last modified time | path
    Searched refs:getLocForEndOfToken (Results 1 - 25 of 46) sorted by relevancy

1 2

  /src/external/apache2/llvm/dist/clang/include/clang/Tooling/Refactoring/
RecursiveSymbolVisitor.h 54 Lexer::getLocForEndOfToken(Initializer->getSourceLocation(),
89 Lexer::getLocForEndOfToken(TypeBeginLoc, 0, SM, LangOpts);
110 Lexer::getLocForEndOfToken(TL.getBeginLoc(), 0, SM, LangOpts);
146 return visit(ND, Loc, Lexer::getLocForEndOfToken(Loc, 0, SM, LangOpts));
  /src/external/apache2/llvm/dist/clang/include/clang/Lex/
Lexer.h 390 static SourceLocation getLocForEndOfToken(SourceLocation Loc, unsigned Offset,
401 SourceLocation End = getLocForEndOfToken(Range.getEnd(), 0, SM, LangOpts);
Preprocessor.h 1830 SourceLocation getLocForEndOfToken(SourceLocation Loc, unsigned Offset = 0) {
1831 return Lexer::getLocForEndOfToken(Loc, Offset, SourceMgr, LangOpts);
  /src/external/apache2/llvm/dist/clang/lib/ARCMigrate/
TransformActions.cpp 72 End = FullSourceLoc(getLocForEndOfToken(endLoc, srcMgr, PP), srcMgr);
177 static SourceLocation getLocForEndOfToken(SourceLocation loc,
443 addInsertion(getLocForEndOfToken(loc, Ctx.getSourceManager(), PP), text);
476 getLocForEndOfToken(replacementRange.getEnd(),
591 SourceLocation TransformActionsImpl::getLocForEndOfToken(SourceLocation loc,
600 return PP.getLocForEndOfToken(loc);
Transforms.cpp 138 loc = Lexer::getLocForEndOfToken(loc, /*Offset=*/0, SM, Ctx.getLangOpts());
ObjCMT.cpp 268 BegLoc = PP.getLocForEndOfToken(BegLoc);
298 BegLoc = PP.getLocForEndOfToken(BegLoc);
1405 EndLoc = PP.getLocForEndOfToken(EndLoc);
  /src/external/apache2/llvm/dist/clang/lib/Sema/
SemaAvailability.cpp 291 Lexer::getLocForEndOfToken(TD->getInnerLocStart(), 0, SM, LangOpts);
497 CharSourceRange::getCharRange(Loc, S.getLocForEndOfToken(Loc));
509 Locs[I], S.getLocForEndOfToken(Locs[I]));
845 Lexer::getLocForEndOfToken(StmtEndLoc, 0, SM, SemaRef.getLangOpts());
SemaFixItUtils.cpp 60 const SourceLocation End = S.getLocForEndOfToken(FullExpr->getSourceRange()
SemaLambda.cpp 1052 SourceRange(getLocForEndOfToken(PrevCaptureLoc), C->Loc));
1141 SourceRange(getLocForEndOfToken(PrevCaptureLoc), C->Loc));
1146 SourceRange(getLocForEndOfToken(PrevCaptureLoc), C->Loc));
1179 SourceRange(getLocForEndOfToken(PrevCaptureLoc), C->Loc));
1815 getLocForEndOfToken(CaptureRange.getEnd()));
1818 FixItRange = SourceRange(getLocForEndOfToken(PrevCaptureLoc),
1843 getLocForEndOfToken(CaptureDefaultLoc), ", this");
SemaStmtAttr.cpp 32 SourceLocation L = S.getLocForEndOfToken(Range.getEnd());
AnalysisBasedWarnings.cpp 98 Close = S.getLocForEndOfToken(Close);
774 SourceLocation Loc = S.getLocForEndOfToken(VD->getEndLoc());
796 SourceLocation ElseKwLoc = S.getLocForEndOfToken(Then->getEndLoc());
Sema.cpp 52 SourceLocation Sema::getLocForEndOfToken(SourceLocation Loc, unsigned Offset) {
53 return Lexer::getLocForEndOfToken(Loc, Offset, SourceMgr, LangOpts);
2409 SourceLocation ParenInsertionLoc = getLocForEndOfToken(Range.getEnd());
SemaDeclObjC.cpp 684 SourceLocation starLoc = getLocForEndOfToken(
838 diagLoc = S.getLocForEndOfToken(newTypeParams->back()->getEndLoc());
952 = S.getLocForEndOfToken(newTypeParam->getLocation());
1513 << FixItHint::CreateInsertion(getLocForEndOfToken(firstClassNameLoc),
1594 SourceLocation starLoc = getLocForEndOfToken(loc);
4120 SourceLocation SuperClassLoc(getLocForEndOfToken(DeclLoc));
SemaExprObjC.cpp 1170 getLocForEndOfToken(LParenLoc));
3806 S.getLocForEndOfToken(range.getEnd()),
3839 S.getLocForEndOfToken(range.getEnd()),
3912 SourceLocation afterLParen = S.getLocForEndOfToken(castRange.getBegin());
4330 getLocForEndOfToken(SrcExpr->getEndLoc());
4358 getLocForEndOfToken(SrcExpr->getEndLoc());
  /src/external/apache2/llvm/dist/clang/lib/Lex/
PPMacroExpansion.cpp 716 PP.getLocForEndOfToken(ClosingBrace->getLocation())));
734 SourceLocation Loc = PP.getLocForEndOfToken((I - 1)->getLocation());
1183 LParenLoc = PP.getLocForEndOfToken(LParenLoc);
1215 PP.Diag(PP.getLocForEndOfToken(FilenameLoc), diag::err_pp_expected_after)
1804 Diag(getLocForEndOfToken(Loc), diag::err_pp_expected_after)
1836 Diag(getLocForEndOfToken(Tok.getLocation()), diag::err_pp_expected_after)
Lexer.cpp 781 SourceLocation Lexer::getLocForEndOfToken(SourceLocation Loc, unsigned Offset,
858 End = Lexer::getLocForEndOfToken(End, 0, SM,LangOpts);
1247 Loc = Lexer::getLocForEndOfToken(Loc, 0, SM, LangOpts);
  /src/external/apache2/llvm/dist/clang/lib/Edit/
Commit.cpp 272 loc = Lexer::getLocForEndOfToken(loc, 0, SourceMgr, LangOpts);
  /src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Checkers/
DeadStoresChecker.cpp 238 Lexer::getLocForEndOfToken(V->getInit()->getEndLoc(), 1, SM, LO);
  /src/external/apache2/llvm/dist/clang/lib/Tooling/Refactoring/
ASTSelection.cpp 143 End = Lexer::getLocForEndOfToken(End, 0, SM, Context.getLangOpts());
  /src/external/apache2/llvm/dist/clang/lib/Tooling/Refactoring/Rename/
USRLocFinder.cpp 90 const SourceLocation EndLoc = Lexer::getLocForEndOfToken(
  /src/external/apache2/llvm/dist/clang/lib/Parse/
Parser.cpp 89 SourceLocation EndLoc = PP.getLocForEndOfToken(ParenRange.getEnd());
137 SourceLocation EndLoc = PP.getLocForEndOfToken(PrevTokLocation);
252 SourceLocation SpaceLoc = PP.getLocForEndOfToken(FirstTokLoc);
1558 SourceRange RemovalRange(PP.getLocForEndOfToken(Loc),
1559 PP.getLocForEndOfToken(Tok.getLocation()));
ParseExpr.cpp 281 PP.getLocForEndOfToken(E.get()->getEndLoc()), ")")
1803 << FixItHint::CreateInsertion(PP.getLocForEndOfToken(PrevTokLocation),
2269 SourceLocation LParenLoc = PP.getLocForEndOfToken(OpTok.getLocation());
2270 SourceLocation RParenLoc = PP.getLocForEndOfToken(PrevTokLocation);
2364 RParenLoc = PP.getLocForEndOfToken(NameLoc);
2372 LParenLoc = PP.getLocForEndOfToken(EllipsisLoc);
2373 RParenLoc = PP.getLocForEndOfToken(NameLoc);
ParseStmt.cpp 767 SourceLocation ExpectedLoc = PP.getLocForEndOfToken(PrevTokLocation);
807 SourceLocation AfterColonLoc = PP.getLocForEndOfToken(ColonLoc);
848 SourceLocation ExpectedLoc = PP.getLocForEndOfToken(PrevTokLocation);
862 SourceLocation AfterColonLoc = PP.getLocForEndOfToken(ColonLoc);
ParseDeclCXX.cpp 1889 PP.getLocForEndOfToken(TemplateInfo.TemplateLoc);
3099 Diag(PP.getLocForEndOfToken(PrevTokLocation),
3334 SourceLocation BraceLoc = PP.getLocForEndOfToken(PrevTokLocation);
3464 Tok.setLocation(PP.getLocForEndOfToken(PrevTokLocation));
3526 SourceLocation Loc = PP.getLocForEndOfToken(PrevTokLocation);
ParseDecl.cpp 2300 PP.getLocForEndOfToken(TemplateInfo.TemplateLoc);
2976 Diag(PP.getLocForEndOfToken(DS.getRepAsDecl()->getEndLoc()),
6051 Diag(PP.getLocForEndOfToken(D.getCXXScopeSpec().getEndLoc()),
6135 Diag(PP.getLocForEndOfToken(D.getEllipsisLoc()),
6168 Diag(PP.getLocForEndOfToken(Loc), diag::err_expected_unqualified_id)
7179 SourceLocation EndLoc = PP.getLocForEndOfToken(D.getEndLoc());
7199 SourceLocation EndLoc = PP.getLocForEndOfToken(D.getEndLoc());

Completed in 118 milliseconds

1 2