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

  /external/chromium/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/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/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 159 /// SkipToTok is specified, it calls SkipUntil(SkipToTok). Finally, true is
193 SkipUntil(SkipToTok);
256 /// SkipUntil - Read tokens until we get to the specified token, then consume
262 /// If SkipUntil finds the specified token, it returns true, otherwise it
264 bool Parser::SkipUntil(ArrayRef<tok::TokenKind> Toks, bool StopAtSemi,
305 SkipUntil(tok::r_paren, false, false, StopAtCodeCompletion);
310 SkipUntil(tok::r_square, false, false, StopAtCodeCompletion);
315 SkipUntil(tok::r_brace, false, false, StopAtCodeCompletion);
878 SkipUntil(tok::semi); // FIXME: better skip?
    [all...]
  /external/clang/include/clang/Parse/
Parser.h 636 /// SkipToTok is specified, it calls SkipUntil(SkipToTok). Finally, true is
737 /// SkipUntil - Read tokens until we get to the specified token, then consume
743 /// If SkipUntil finds the specified token, it returns true, otherwise it
745 bool SkipUntil(tok::TokenKind T, bool StopAtSemi = true,
747 return SkipUntil(llvm::makeArrayRef(T), StopAtSemi, DontConsume,
750 bool SkipUntil(tok::TokenKind T1, tok::TokenKind T2, bool StopAtSemi = true,
753 return SkipUntil(TokArray, StopAtSemi, DontConsume,StopAtCodeCompletion);
755 bool SkipUntil(tok::TokenKind T1, tok::TokenKind T2, tok::TokenKind T3,
759 return SkipUntil(TokArray, StopAtSemi, DontConsume,StopAtCodeCompletion);
761 bool SkipUntil(ArrayRef<tok::TokenKind> Toks, bool StopAtSemi = true
    [all...]

Completed in 219 milliseconds