Searched refs:getLocForEndOfToken (Results 1 - 25 of 48) sorted by relevance

12

/freebsd-13-stable/contrib/llvm-project/clang/include/clang/Tooling/Refactoring/
H A DRecursiveSymbolVisitor.h54 Lexer::getLocForEndOfToken(Initializer->getSourceLocation(),
89 Lexer::getLocForEndOfToken(TypeBeginLoc, 0, SM, LangOpts);
110 Lexer::getLocForEndOfToken(TL.getBeginLoc(), 0, SM, LangOpts);
135 return visit(ND, Loc, Lexer::getLocForEndOfToken(Loc, 0, SM, LangOpts));
/freebsd-13-stable/contrib/llvm-project/clang/include/clang/Lex/
H A DLexer.h386 static SourceLocation getLocForEndOfToken(SourceLocation Loc, unsigned Offset,
397 SourceLocation End = getLocForEndOfToken(Range.getEnd(), 0, SM, LangOpts);
H A DPreprocessor.h1811 SourceLocation getLocForEndOfToken(SourceLocation Loc, unsigned Offset = 0) { function in class:clang::Preprocessor
1812 return Lexer::getLocForEndOfToken(Loc, Offset, SourceMgr, LangOpts);
/freebsd-13-stable/contrib/llvm-project/clang/lib/ARCMigrate/
H A DTransformActions.cpp72 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, function in class:TransformActionsImpl
600 return PP.getLocForEndOfToken(loc);
H A DTransforms.cpp138 loc = Lexer::getLocForEndOfToken(loc, /*Offset=*/0, SM, Ctx.getLangOpts());
H A DObjCMT.cpp268 BegLoc = PP.getLocForEndOfToken(BegLoc);
298 BegLoc = PP.getLocForEndOfToken(BegLoc);
1407 EndLoc = PP.getLocForEndOfToken(EndLoc);
/freebsd-13-stable/contrib/llvm-project/clang/lib/Sema/
H A DSemaAvailability.cpp291 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());
H A DSemaFixItUtils.cpp60 const SourceLocation End = S.getLocForEndOfToken(FullExpr->getSourceRange()
H A DSemaLambda.cpp1046 SourceRange(getLocForEndOfToken(PrevCaptureLoc), C->Loc));
1135 SourceRange(getLocForEndOfToken(PrevCaptureLoc), C->Loc));
1140 SourceRange(getLocForEndOfToken(PrevCaptureLoc), C->Loc));
1173 SourceRange(getLocForEndOfToken(PrevCaptureLoc), C->Loc));
1728 getLocForEndOfToken(CaptureRange.getEnd()));
1731 FixItRange = SourceRange(getLocForEndOfToken(PrevCaptureLoc),
1756 getLocForEndOfToken(CaptureDefaultLoc), ", this");
H A DSemaStmtAttr.cpp32 SourceLocation L = S.getLocForEndOfToken(Range.getEnd());
H A DAnalysisBasedWarnings.cpp96 Close = S.getLocForEndOfToken(Close);
772 SourceLocation Loc = S.getLocForEndOfToken(VD->getEndLoc());
794 SourceLocation ElseKwLoc = S.getLocForEndOfToken(Then->getEndLoc());
H A DSema.cpp51 SourceLocation Sema::getLocForEndOfToken(SourceLocation Loc, unsigned Offset) { function in class:Sema
52 return Lexer::getLocForEndOfToken(Loc, Offset, SourceMgr, LangOpts);
2303 SourceLocation ParenInsertionLoc = getLocForEndOfToken(Range.getEnd());
H A DSemaDeclObjC.cpp684 SourceLocation starLoc = getLocForEndOfToken(
838 diagLoc = S.getLocForEndOfToken(newTypeParams->back()->getEndLoc());
952 = S.getLocForEndOfToken(newTypeParam->getLocation());
1508 << FixItHint::CreateInsertion(getLocForEndOfToken(firstClassNameLoc),
1589 SourceLocation starLoc = getLocForEndOfToken(loc);
4060 SourceLocation SuperClassLoc(getLocForEndOfToken(DeclLoc));
H A DSemaExprObjC.cpp1170 getLocForEndOfToken(LParenLoc));
3799 S.getLocForEndOfToken(range.getEnd()),
3832 S.getLocForEndOfToken(range.getEnd()),
3902 SourceLocation afterLParen = S.getLocForEndOfToken(castRange.getBegin());
4320 getLocForEndOfToken(SrcExpr->getEndLoc());
4348 getLocForEndOfToken(SrcExpr->getEndLoc());
/freebsd-13-stable/contrib/llvm-project/clang/lib/Lex/
H A DPPMacroExpansion.cpp714 PP.getLocForEndOfToken(ClosingBrace->getLocation())));
732 SourceLocation Loc = PP.getLocForEndOfToken((I - 1)->getLocation());
1181 LParenLoc = PP.getLocForEndOfToken(LParenLoc);
1213 PP.Diag(PP.getLocForEndOfToken(FilenameLoc), diag::err_pp_expected_after)
1797 Diag(getLocForEndOfToken(Loc), diag::err_pp_expected_after)
1822 Diag(getLocForEndOfToken(Tok.getLocation()), diag::err_pp_expected_after)
/freebsd-13-stable/contrib/llvm-project/lldb/tools/lldb-instr/
H A DInstrument.cpp240 SourceLocation InsertLoc = Lexer::getLocForEndOfToken(
/freebsd-13-stable/contrib/llvm-project/clang/lib/Tooling/Transformer/
H A DRangeSelector.cpp121 return CharSourceRange::getCharRange(Lexer::getLocForEndOfToken(
/freebsd-13-stable/contrib/llvm-project/clang/lib/Edit/
H A DCommit.cpp272 loc = Lexer::getLocForEndOfToken(loc, 0, SourceMgr, LangOpts);
/freebsd-13-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
H A DDeadStoresChecker.cpp237 Lexer::getLocForEndOfToken(V->getInit()->getEndLoc(), 1, SM, LO);
/freebsd-13-stable/contrib/llvm-project/clang/lib/Tooling/Refactoring/
H A DASTSelection.cpp143 End = Lexer::getLocForEndOfToken(End, 0, SM, Context.getLangOpts());
/freebsd-13-stable/contrib/llvm-project/clang/lib/Tooling/Refactoring/Rename/
H A DUSRLocFinder.cpp90 const SourceLocation EndLoc = Lexer::getLocForEndOfToken(
/freebsd-13-stable/contrib/llvm-project/clang/lib/Parse/
H A DParseExpr.cpp281 PP.getLocForEndOfToken(E.get()->getEndLoc()), ")")
1817 << FixItHint::CreateInsertion(PP.getLocForEndOfToken(PrevTokLocation),
2281 SourceLocation LParenLoc = PP.getLocForEndOfToken(OpTok.getLocation());
2282 SourceLocation RParenLoc = PP.getLocForEndOfToken(PrevTokLocation);
2408 RParenLoc = PP.getLocForEndOfToken(NameLoc);
2416 LParenLoc = PP.getLocForEndOfToken(EllipsisLoc);
2417 RParenLoc = PP.getLocForEndOfToken(NameLoc);
H A DParseStmt.cpp758 SourceLocation ExpectedLoc = PP.getLocForEndOfToken(PrevTokLocation);
798 SourceLocation AfterColonLoc = PP.getLocForEndOfToken(ColonLoc);
839 SourceLocation ExpectedLoc = PP.getLocForEndOfToken(PrevTokLocation);
853 SourceLocation AfterColonLoc = PP.getLocForEndOfToken(ColonLoc);
H A DParser.cpp89 SourceLocation EndLoc = PP.getLocForEndOfToken(ParenRange.getEnd());
137 SourceLocation EndLoc = PP.getLocForEndOfToken(PrevTokLocation);
1523 SourceRange RemovalRange(PP.getLocForEndOfToken(Loc),
1524 PP.getLocForEndOfToken(Tok.getLocation()));
H A DParseDeclCXX.cpp1863 PP.getLocForEndOfToken(TemplateInfo.TemplateLoc);
3049 Diag(PP.getLocForEndOfToken(PrevTokLocation),
3284 SourceLocation BraceLoc = PP.getLocForEndOfToken(PrevTokLocation);
3423 Tok.setLocation(PP.getLocForEndOfToken(PrevTokLocation));
3484 SourceLocation Loc = PP.getLocForEndOfToken(PrevTokLocation);

Completed in 383 milliseconds

12