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

  /external/clang/lib/Parse/
ParseOpenMP.cpp 50 SkipUntil(tok::annot_pragma_openmp_end, false, true);
68 SkipUntil(tok::annot_pragma_openmp_end, false);
103 SkipUntil(tok::annot_pragma_openmp_end, false, true);
110 SkipUntil(tok::annot_pragma_openmp_end, false);
165 SkipUntil(tok::annot_pragma_openmp_end, false);
171 SkipUntil(tok::annot_pragma_openmp_end, false);
207 SkipUntil(tok::comma, tok::r_paren, tok::annot_pragma_openmp_end,
212 SkipUntil(tok::comma, tok::r_paren, tok::annot_pragma_openmp_end,
217 SkipUntil(tok::comma, tok::r_paren, tok::annot_pragma_openmp_end,
279 SkipUntil(tok::annot_pragma_openmp_end, false, true)
    [all...]
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);
ParseDeclCXX.cpp 96 SkipUntil(tok::semi);
127 SkipUntil(tok::r_brace, false);
133 SkipUntil(tok::r_brace, /*StopAtSemi*/false, /*DontConsume*/true);
252 SkipUntil(tok::semi);
409 SkipUntil(tok::semi);
479 SkipUntil(tok::semi);
508 SkipUntil(tok::semi);
543 SkipUntil(tok::semi);
551 SkipUntil(tok::semi);
734 if (SkipUntil(tok::r_paren, /*StopAtSemi=*/true
    [all...]
ParseObjc.cpp 89 SkipUntil(tok::semi);
111 SkipUntil(tok::semi);
403 SkipUntil(tok::at, /*StopAtSemi=*/true, /*DontConsume=*/true);
461 SkipUntil(tok::semi);
476 SkipUntil(tok::r_brace, tok::at);
628 SkipUntil(tok::r_paren);
646 SkipUntil(tok::r_paren);
943 SkipUntil(tok::r_paren);
    [all...]
ParseExpr.cpp     [all...]
ParseStmt.cpp 170 SkipUntil(tok::r_brace, /*StopAtSemi=*/true, /*DontConsume=*/true);
322 SkipUntil(tok::r_brace, true, true);
339 SkipUntil(tok::r_brace, /*StopAtSemi=*/true, /*DontConsume=*/true);
554 SkipUntil(tok::colon);
567 SkipUntil(tok::colon);
871 SkipUntil(tok::semi);
933 SkipUntil(tok::semi);
969 SkipUntil(tok::semi);
    [all...]
ParseTemplate.cpp 123 SkipUntil(tok::r_brace, true, true);
219 SkipUntil(tok::r_brace, true, true);
279 SkipUntil(tok::semi, true, false);
352 SkipUntil(tok::comma, tok::greater, tok::greatergreater, true, true);
366 SkipUntil(tok::comma, tok::greater, tok::greatergreater, true, true);
614 SkipUntil(tok::comma, tok::greater, tok::greatergreater, true, true);
664 SkipUntil(tok::comma, tok::greater, true, true);
826 SkipUntil(tok::greater, true, !ConsumeLastToken);
    [all...]
ParseTentative.cpp 229 if (!SkipUntil(tok::r_paren))
465 bool IsAttribute = SkipUntil(tok::r_square, false);
537 if (!SkipUntil(tok::r_paren, false)) {
    [all...]
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...]
ParseDecl.cpp 124 SkipUntil(tok::r_paren, true); // skip until ) or ;
128 SkipUntil(tok::r_paren, true); // skip until ) or ;
172 SkipUntil(tok::r_paren, false);
175 SkipUntil(tok::r_paren, false);
283 SkipUntil(tok::r_paren);
306 SkipUntil(tok::r_paren, false, true); // skip until ')'
697 SkipUntil(tok::comma, tok::r_paren, true, true, true);
725 SkipUntil(tok::comma, tok::r_paren, true, true, true);
743 SkipUntil(tok::comma, tok::r_paren, true, true, true);
770 SkipUntil(tok::comma, tok::r_paren, true, true, true)
    [all...]
ParseExprCXX.cpp 639 SkipUntil(tok::r_square);
640 SkipUntil(tok::l_brace);
641 SkipUntil(tok::r_brace);
    [all...]
ParseCXXInlineMethods.cpp 77 SkipUntil(tok::semi);
105 SkipUntil(tok::semi);
558 /// NOTE: This is a specialized version of Parser::SkipUntil.
  /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...]
  /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/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/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, '..')

Completed in 118 milliseconds