Lines Matching defs:Start
31 SourceLocation findPreviousTokenStart(SourceLocation Start,
35 SourceLocation findPreviousTokenKind(SourceLocation Start,
40 SourceLocation findNextTerminator(SourceLocation Start, const SourceManager &SM,
44 SourceLocation findPreviousAnyTokenKind(SourceLocation Start,
48 if (Start.isInvalid() || Start.isMacroID())
51 SourceLocation L = findPreviousTokenStart(Start, SM, LangOpts);
63 Start = L;
68 SourceLocation findNextAnyTokenKind(SourceLocation Start,
74 Lexer::findNextToken(Start, SM, LangOpts);
88 Start = PotentialMatch.getLastLoc();
93 findNextTokenIncludingComments(SourceLocation Start, const SourceManager &SM,
95 return Lexer::findNextToken(Start, SM, LangOpts, true);
99 std::optional<Token> findNextTokenSkippingComments(SourceLocation Start,