HomeSort by: relevance | last modified time | path
    Searched defs:SkipUntil (Results 1 - 2 of 2) sorted by relevancy

  /src/external/apache2/llvm/dist/clang/lib/Parse/
Parser.cpp 270 /// SkipUntil - Read tokens until we get to the specified token, then consume
276 /// If SkipUntil finds the specified token, it returns true, otherwise it
278 bool Parser::SkipUntil(ArrayRef<tok::TokenKind> Toks, SkipUntilFlags Flags) {
335 SkipUntil(tok::r_paren, StopAtCodeCompletion);
337 SkipUntil(tok::r_paren);
343 SkipUntil(tok::r_square, StopAtCodeCompletion);
345 SkipUntil(tok::r_square);
351 SkipUntil(tok::r_brace, StopAtCodeCompletion);
353 SkipUntil(tok::r_brace);
359 SkipUntil(tok::colon
    [all...]
  /src/external/apache2/llvm/dist/clang/include/clang/Parse/
Parser.h 1180 /// Control flags for SkipUntil functions.
1194 /// SkipUntil - Read tokens until we get to the specified token, then consume
1201 /// If SkipUntil finds the specified token, it returns true, otherwise it
1203 bool SkipUntil(tok::TokenKind T,
1205 return SkipUntil(llvm::makeArrayRef(T), Flags);
1207 bool SkipUntil(tok::TokenKind T1, tok::TokenKind T2,
1210 return SkipUntil(TokArray, Flags);
1212 bool SkipUntil(tok::TokenKind T1, tok::TokenKind T2, tok::TokenKind T3,
1215 return SkipUntil(TokArray, Flags);
1217 bool SkipUntil(ArrayRef<tok::TokenKind> Toks
    [all...]

Completed in 37 milliseconds