Searched defs:SkipUntil (Results 1 - 4 of 4) 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/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.cpp166 /// SkipToTok is specified, it calls SkipUntil(SkipToTok). Finally, true is
200 SkipUntil(SkipToTok);
263 /// SkipUntil - Read tokens until we get to the specified token, then consume
269 /// If SkipUntil finds the specified token, it returns true, otherwise it
271 bool Parser::SkipUntil(ArrayRef<tok::TokenKind> Toks, bool StopAtSemi, function in class:Parser
302 SkipUntil(tok::r_paren, false, false, StopAtCodeCompletion);
307 SkipUntil(tok::r_square, false, false, StopAtCodeCompletion);
312 SkipUntil(tok::r_brace, false, false, StopAtCodeCompletion);
854 SkipUntil(tok::semi); // FIXME: better skip?
950 SkipUntil(to
[all...]
/external/clang/include/clang/Parse/
H A DParser.h623 /// SkipToTok is specified, it calls SkipUntil(SkipToTok). Finally, true is
721 /// SkipUntil - Read tokens until we get to the specified token, then consume
727 /// If SkipUntil finds the specified token, it returns true, otherwise it
729 bool SkipUntil(tok::TokenKind T, bool StopAtSemi = true, function in class:clang::Parser
731 return SkipUntil(llvm::makeArrayRef(T), StopAtSemi, DontConsume,
734 bool SkipUntil(tok::TokenKind T1, tok::TokenKind T2, bool StopAtSemi = true, function in class:clang::Parser
737 return SkipUntil(TokArray, StopAtSemi, DontConsume,StopAtCodeCompletion);
739 bool SkipUntil(tok::TokenKind T1, tok::TokenKind T2, tok::TokenKind T3, function in class:clang::Parser
743 return SkipUntil(TokArray, StopAtSemi, DontConsume,StopAtCodeCompletion);
745 bool SkipUntil(ArrayRe
[all...]

Completed in 120 milliseconds