Lines Matching defs:Start
34 auto [Token, Start] =
39 SourceLocation findPreviousTokenStart(SourceLocation Start,
42 if (Start.isInvalid() || Start.isMacroID())
45 SourceLocation BeforeStart = Start.getLocWithOffset(-1);
52 SourceLocation findPreviousTokenKind(SourceLocation Start,
56 if (Start.isInvalid() || Start.isMacroID())
60 SourceLocation L = findPreviousTokenStart(Start, SM, LangOpts);
71 Start = L;
75 SourceLocation findNextTerminator(SourceLocation Start, const SourceManager &SM,
77 return findNextAnyTokenKind(Start, SM, LangOpts, tok::comma, tok::semi);
81 findNextTokenSkippingComments(SourceLocation Start, const SourceManager &SM,
83 while (Start.isValid()) {
85 Lexer::findNextToken(Start, SM, LangOpts);
89 Start = CurrentToken->getLocation();
230 // Start at the beginning of the function declaration, and find the closing