Searched defs:SkipUntil (Results 1 - 3 of 3) sorted by relevance

/external/chromium_org/testing/gtest/scripts/
H A Dpump.py270 def SkipUntil(lines, pos, regex, token_type): function
290 pos = SkipUntil(lines, pos, r'\(|\)', ')')
355 dots_pos = SkipUntil(lines, pos, DOT_DOT_REGEX, '..')
/external/clang/lib/Parse/
H A DParser.cpp224 /// 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) { function in class:Parser
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(to
[all...]
/external/clang/include/clang/Parse/
H A DParser.h829 /// \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, function in class:clang::Parser
853 return SkipUntil(llvm::makeArrayRef(T), Flags);
855 bool SkipUntil(tok::TokenKind T1, tok::TokenKind T2, function in class:clang::Parser
858 return SkipUntil(TokArray, Flags);
860 bool SkipUntil(tok::TokenKind T1, tok::TokenKind T2, tok::TokenKind T3, function in class:clang::Parser
863 return SkipUntil(TokArray, Flags);
865 bool SkipUntil(ArrayRe
[all...]

Completed in 156 milliseconds