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

/external/chromium/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.cpp136 /// SkipToTok is specified, it calls SkipUntil(SkipToTok). Finally, true is
170 SkipUntil(SkipToTok);
197 /// SkipUntil - Read tokens until we get to the specified token, then consume
203 /// If SkipUntil finds the specified token, it returns true, otherwise it
205 bool Parser::SkipUntil(const tok::TokenKind *Toks, unsigned NumToks, function in class:Parser
237 SkipUntil(tok::r_paren, false, false, StopAtCodeCompletion);
242 SkipUntil(tok::r_square, false, false, StopAtCodeCompletion);
247 SkipUntil(tok::r_brace, false, false, StopAtCodeCompletion);
755 SkipUntil(tok::semi); // FIXME: better skip?
848 SkipUntil(to
[all...]
/external/clang/include/clang/Parse/
H A DParser.h616 /// SkipToTok is specified, it calls SkipUntil(SkipToTok). Finally, true is
699 /// SkipUntil - Read tokens until we get to the specified token, then consume
705 /// If SkipUntil finds the specified token, it returns true, otherwise it
707 bool SkipUntil(tok::TokenKind T, bool StopAtSemi = true, function in class:clang::Parser
709 return SkipUntil(&T, 1, StopAtSemi, DontConsume, StopAtCodeCompletion);
711 bool SkipUntil(tok::TokenKind T1, tok::TokenKind T2, bool StopAtSemi = true, function in class:clang::Parser
714 return SkipUntil(TokArray, 2, StopAtSemi, DontConsume,StopAtCodeCompletion);
716 bool SkipUntil(const tok::TokenKind *Toks, unsigned NumToks,

Completed in 69 milliseconds