Home | History | Annotate | Download | only in Parse

Lines Matching refs:SkipUntil

147 /// SkipToTok is specified, it calls SkipUntil(SkipToTok).  Finally, true is
181 SkipUntil(SkipToTok);
244 /// SkipUntil - Read tokens until we get to the specified token, then consume
250 /// If SkipUntil finds the specified token, it returns true, otherwise it
252 bool Parser::SkipUntil(ArrayRef<tok::TokenKind> Toks, bool StopAtSemi,
283 SkipUntil(tok::r_paren, false, false, StopAtCodeCompletion);
288 SkipUntil(tok::r_square, false, false, StopAtCodeCompletion);
293 SkipUntil(tok::r_brace, false, false, StopAtCodeCompletion);
843 SkipUntil(tok::semi); // FIXME: better skip?
939 SkipUntil(tok::l_brace, true, true);
1063 SkipUntil(tok::semi);
1198 SkipUntil(tok::semi, true);
1266 SkipUntil(tok::r_paren, true, true);
1847 SkipUntil(tok::semi);
1852 SkipUntil(tok::semi);
1880 P.SkipUntil(tok::eof);
1910 if (P.SkipUntil(Close, /*StopAtSemi*/ true, /*DontConsume*/ true))
1916 P.SkipUntil(Close, false);