Home
last modified time | relevance | path

Searched refs:findNextToken (Results 1 – 14 of 14) sorted by relevance

/external/llvm-project/clang-tools-extra/clang-tidy/cppcoreguidelines/
DPreferMemberInitializerCheck.cpp170 Lexer::findNextToken(S->getEndLoc(), *Result.SourceManager, in check()
189 NextPos = Lexer::findNextToken(NextPos, *Result.SourceManager, in check()
231 Lexer::findNextToken(S->getEndLoc(), *Result.SourceManager, in check()
/external/llvm-project/clang-tools-extra/clang-tidy/bugprone/
DRedundantBranchConditionCheck.cpp113 Lexer::findNextToken(OtherSide->getEndLoc(), *Result.SourceManager, in check()
145 Lexer::findNextToken(CondOp->getLHS()->getEndLoc(), in check()
/external/llvm-project/clang-tools-extra/clang-tidy/utils/
DLexerUtils.cpp84 CurrentToken = Lexer::findNextToken(Start, SM, LangOpts); in findNextTokenSkippingComments()
99 llvm::Optional<Token> Tok = Lexer::findNextToken(Loc, SM, LangOpts); in rangeContainsExpansionsOrDirectives()
DLexerUtils.h67 Optional<Token> CurrentToken = Lexer::findNextToken(Start, SM, LangOpts); in findNextAnyTokenKind()
/external/llvm-project/clang-tools-extra/clang-tidy/modernize/
DReplaceDisallowCopyAndAssignMacroCheck.cpp63 llvm::Optional<Token> Next = Lexer::findNextToken( in shouldAppendSemi()
/external/llvm-project/clang/lib/Tooling/Refactoring/Extract/
DSourceExtraction.cpp103 Optional<Token> NextToken = Lexer::findNextToken(End, SM, LangOpts); in compute()
/external/llvm-project/clang-tools-extra/clangd/refactor/tweaks/
DRemoveUsingNamespace.cpp79 Lexer::findNextToken(D->getEndLoc(), SM, Ctx.getLangOpts()); in removeUsingDirective()
DDefineInline.cpp77 auto NextTok = Lexer::findNextToken(CurLoc, SM, LangOpts); in getSemicolonForDecl()
/external/llvm-project/clang-tools-extra/clangd/
DIncludeFixer.cpp206 while (auto CCTok = Lexer::findNextToken(NextLoc, SM, LangOpts)) { in qualifiedByUnresolved()
209 auto IDTok = Lexer::findNextToken(CCTok->getLocation(), SM, LangOpts); in qualifiedByUnresolved()
DCodeComplete.cpp1305 const auto NextToken = Lexer::findNextToken( in run()
/external/llvm-project/clang/include/clang/Lex/
DLexer.h523 static Optional<Token> findNextToken(SourceLocation Loc,
/external/llvm-project/clang/lib/StaticAnalyzer/Checkers/
DDeadStoresChecker.cpp233 Lexer::findNextToken( in Report()
/external/llvm-project/clang/unittests/Lex/
DLexerTest.cpp549 auto T = Lexer::findNextToken(Loc, SourceMgr, LangOpts); in TEST_F()
/external/llvm-project/clang/lib/Lex/
DLexer.cpp1240 Optional<Token> Lexer::findNextToken(SourceLocation Loc, in findNextToken() function in Lexer
1276 Optional<Token> Tok = findNextToken(Loc, SM, LangOpts); in findLocationAfterToken()