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

  /external/clang/lib/Parse/
ParseInit.cpp 247 SkipUntil(tok::r_square);
288 SkipUntil(tok::r_square);
315 SkipUntil(tok::r_square);
343 SkipUntil(tok::r_square);
460 SkipUntil(tok::r_brace, false, true);
ParseStmt.cpp 157 SkipUntil(tok::r_brace, /*StopAtSemi=*/true, /*DontConsume=*/true);
302 SkipUntil(tok::r_brace, true, true);
319 SkipUntil(tok::r_brace, /*StopAtSemi=*/true, /*DontConsume=*/true);
534 SkipUntil(tok::colon);
547 SkipUntil(tok::colon);
851 SkipUntil(tok::semi);
913 SkipUntil(tok::semi);
949 SkipUntil(tok::semi);
    [all...]
ParseDeclCXX.cpp 95 SkipUntil(tok::semi);
126 SkipUntil(tok::r_brace, false);
132 SkipUntil(tok::r_brace, /*StopAtSemi*/false, /*DontConsume*/true);
251 SkipUntil(tok::semi);
408 SkipUntil(tok::semi);
475 SkipUntil(tok::semi);
491 SkipUntil(tok::semi);
526 SkipUntil(tok::semi);
534 SkipUntil(tok::semi);
705 if (SkipUntil(tok::r_paren, /*StopAtSemi=*/true, /*DontConsume=*/true))
    [all...]
ParseObjc.cpp 77 SkipUntil(tok::semi);
98 SkipUntil(tok::semi);
387 SkipUntil(tok::at, /*StopAtSemi=*/true, /*DontConsume=*/true);
445 SkipUntil(tok::semi);
460 SkipUntil(tok::r_brace, tok::at);
615 SkipUntil(tok::r_paren);
633 SkipUntil(tok::r_paren);
930 SkipUntil(tok::r_paren);
    [all...]
ParseExpr.cpp     [all...]
ParseDecl.cpp 123 SkipUntil(tok::r_paren, true); // skip until ) or ;
127 SkipUntil(tok::r_paren, true); // skip until ) or ;
171 SkipUntil(tok::r_paren, false);
174 SkipUntil(tok::r_paren, false);
272 SkipUntil(tok::r_paren);
295 SkipUntil(tok::r_paren, false, true); // skip until ')'
582 SkipUntil(tok::comma, tok::r_paren, true, true, true);
610 SkipUntil(tok::comma, tok::r_paren, true, true, true);
628 SkipUntil(tok::comma, tok::r_paren, true, true, true);
655 SkipUntil(tok::comma, tok::r_paren, true, true, true)
    [all...]
ParseTemplate.cpp 143 SkipUntil(tok::r_brace, true, true);
238 SkipUntil(tok::r_brace, true, true);
269 SkipUntil(tok::semi, true, false);
342 SkipUntil(tok::comma, tok::greater, tok::greatergreater, true, true);
356 SkipUntil(tok::comma, tok::greater, tok::greatergreater, true, true);
604 SkipUntil(tok::comma, tok::greater, tok::greatergreater, true, true);
654 SkipUntil(tok::comma, tok::greater, true, true);
816 SkipUntil(tok::greater, true, !ConsumeLastToken);
    [all...]
ParseTentative.cpp 219 if (!SkipUntil(tok::r_paren))
451 bool IsAttribute = SkipUntil(tok::r_square, false);
523 if (!SkipUntil(tok::r_paren, false)) {
    [all...]
Parser.cpp 147 /// SkipToTok is specified, it calls SkipUntil(SkipToTok). Finally, true is
181 SkipUntil(SkipToTok);
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, bool StopAtSemi,
283 SkipUntil(tok::r_paren, false, false, StopAtCodeCompletion);
288 SkipUntil(tok::r_square, false, false, StopAtCodeCompletion);
293 SkipUntil(tok::r_brace, false, false, StopAtCodeCompletion);
843 SkipUntil(tok::semi); // FIXME: better skip?
    [all...]
ParseExprCXX.cpp 608 SkipUntil(tok::r_square);
609 SkipUntil(tok::l_brace);
610 SkipUntil(tok::r_brace);
    [all...]
ParseCXXInlineMethods.cpp 78 SkipUntil(tok::semi);
106 SkipUntil(tok::semi);
542 /// NOTE: This is a specialized version of Parser::SkipUntil.
  /external/clang/include/clang/Parse/
Parser.h 607 /// SkipToTok is specified, it calls SkipUntil(SkipToTok). Finally, true is
708 /// SkipUntil - Read tokens until we get to the specified token, then consume
714 /// If SkipUntil finds the specified token, it returns true, otherwise it
716 bool SkipUntil(tok::TokenKind T, bool StopAtSemi = true,
718 return SkipUntil(llvm::makeArrayRef(T), StopAtSemi, DontConsume,
721 bool SkipUntil(tok::TokenKind T1, tok::TokenKind T2, bool StopAtSemi = true,
724 return SkipUntil(TokArray, StopAtSemi, DontConsume,StopAtCodeCompletion);
726 bool SkipUntil(tok::TokenKind T1, tok::TokenKind T2, tok::TokenKind T3,
730 return SkipUntil(TokArray, StopAtSemi, DontConsume,StopAtCodeCompletion);
732 bool SkipUntil(ArrayRef<tok::TokenKind> Toks, bool StopAtSemi = true
    [all...]
  /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/libvpx/libvpx/third_party/googletest/src/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, '..')

Completed in 115 milliseconds