HomeSort by relevance Sort by last modified time
    Searched defs:SkipUntil (Results 1 - 3 of 3) sorted by null

  /external/chromium_org/testing/gtest/scripts/
pump.py 270 def SkipUntil(lines, pos, regex, token_type):
290 pos = SkipUntil(lines, pos, r'\(|\)', ')')
355 dots_pos = SkipUntil(lines, pos, DOT_DOT_REGEX, '..')
  /external/clang/lib/Parse/
Parser.cpp 224 /// SkipUntil - Read tokens until we get to the specified token, then consume
230 /// If SkipUntil finds the specified token, it returns true, otherwise it
232 bool Parser::SkipUntil(ArrayRef<tok::TokenKind> Toks, SkipUntilFlags Flags) {
284 SkipUntil(tok::r_paren, StopAtCodeCompletion);
286 SkipUntil(tok::r_paren);
292 SkipUntil(tok::r_square, StopAtCodeCompletion);
294 SkipUntil(tok::r_square);
300 SkipUntil(tok::r_brace, StopAtCodeCompletion);
302 SkipUntil(tok::r_brace);
859 SkipUntil(tok::semi); // FIXME: better skip
    [all...]
  /external/clang/include/clang/Parse/
Parser.h 829 /// \brief Control flags for SkipUntil functions.
843 /// SkipUntil - Read tokens until we get to the specified token, then consume
849 /// If SkipUntil finds the specified token, it returns true, otherwise it
851 bool SkipUntil(tok::TokenKind T,
853 return SkipUntil(llvm::makeArrayRef(T), Flags);
855 bool SkipUntil(tok::TokenKind T1, tok::TokenKind T2,
858 return SkipUntil(TokArray, Flags);
860 bool SkipUntil(tok::TokenKind T1, tok::TokenKind T2, tok::TokenKind T3,
863 return SkipUntil(TokArray, Flags);
865 bool SkipUntil(ArrayRef<tok::TokenKind> Toks
    [all...]

Completed in 58 milliseconds