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

  /build/kati/
strutil.cc 61 static int SkipUntil(const char* s,
93 i = s + SkipUntil(in->data() + s, len - s, ranges, 4,
442 e += SkipUntil(s.data() + e, s.size() - e, ranges, 6,
534 size_t i = SkipUntil(s->c_str(), s->size(), ranges, 10, NeedsShellEscape);
552 i += SkipUntil(s->c_str() + i, s->size() - i, ranges, 10, NeedsShellEscape);
  /external/google-breakpad/src/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/googletest/googletest/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 244 /// SkipUntil - Read tokens until we get to the specified token, then consume
250 /// If SkipUntil finds the specified token, it returns true, otherwise it
252 bool Parser::SkipUntil(ArrayRef<tok::TokenKind> Toks, SkipUntilFlags Flags) {
305 SkipUntil(tok::r_paren, StopAtCodeCompletion);
307 SkipUntil(tok::r_paren);
313 SkipUntil(tok::r_square, StopAtCodeCompletion);
315 SkipUntil(tok::r_square);
321 SkipUntil(tok::r_brace, StopAtCodeCompletion);
323 SkipUntil(tok::r_brace);
911 SkipUntil(tok::semi); // FIXME: better skip
    [all...]
  /external/clang/include/clang/Parse/
Parser.h 862 /// \brief Control flags for SkipUntil functions.
876 /// SkipUntil - Read tokens until we get to the specified token, then consume
882 /// If SkipUntil finds the specified token, it returns true, otherwise it
884 bool SkipUntil(tok::TokenKind T,
886 return SkipUntil(llvm::makeArrayRef(T), Flags);
888 bool SkipUntil(tok::TokenKind T1, tok::TokenKind T2,
891 return SkipUntil(TokArray, Flags);
893 bool SkipUntil(tok::TokenKind T1, tok::TokenKind T2, tok::TokenKind T3,
896 return SkipUntil(TokArray, Flags);
898 bool SkipUntil(ArrayRef<tok::TokenKind> Toks
    [all...]

Completed in 198 milliseconds