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 81 SkipUntil(tok::annot_pragma_openmp_end, StopBeforeMatch);
116 SkipUntil(tok::annot_pragma_openmp_end);
161 SkipUntil(tok::annot_pragma_openmp_end, StopBeforeMatch);
167 SkipUntil(tok::annot_pragma_openmp_end);
274 SkipUntil(tok::annot_pragma_openmp_end);
310 SkipUntil(tok::comma, tok::r_paren, tok::annot_pragma_openmp_end,
315 SkipUntil(tok::comma, tok::r_paren, tok::annot_pragma_openmp_end,
320 SkipUntil(tok::comma, tok::r_paren, tok::annot_pragma_openmp_end,
456 SkipUntil(tok::annot_pragma_openmp_end, StopBeforeMatch);
461 SkipUntil(tok::comma, tok::annot_pragma_openmp_end, StopBeforeMatch)
    [all...]
ParseInit.cpp 229 SkipUntil(tok::r_square, StopAtSemi);
270 SkipUntil(tok::r_square, StopAtSemi);
297 SkipUntil(tok::r_square, StopAtSemi);
325 SkipUntil(tok::r_square, StopAtSemi);
444 SkipUntil(tok::r_brace, StopBeforeMatch);
ParseObjc.cpp 85 SkipUntil(tok::semi);
89 SkipUntil(tok::semi);
111 SkipUntil(tok::semi);
341 SkipUntil(tok::at, StopAtSemi | StopBeforeMatch);
399 SkipUntil(tok::semi);
414 SkipUntil(tok::r_brace, tok::at, StopAtSemi);
581 SkipUntil(tok::r_paren, StopAtSemi);
600 SkipUntil(tok::r_paren, StopAtSemi);
610 SkipUntil(tok::r_paren, StopAtSemi);
619 SkipUntil(tok::r_paren, StopAtSemi)
    [all...]
ParseStmt.cpp 193 SkipUntil(tok::r_brace, StopAtSemi | StopBeforeMatch);
372 SkipUntil(tok::r_brace, StopAtSemi | StopBeforeMatch);
389 SkipUntil(tok::r_brace, StopAtSemi | StopBeforeMatch);
668 if (SkipUntil(tok::colon, tok::r_brace, StopAtSemi | StopBeforeMatch)) {
686 if (SkipUntil(tok::colon, tok::r_brace, StopAtSemi | StopBeforeMatch)) {
    [all...]
ParseExpr.cpp     [all...]
ParseDeclCXX.cpp 110 SkipUntil(tok::semi);
135 SkipUntil(tok::r_brace);
148 SkipUntil(tok::r_brace, StopBeforeMatch);
269 SkipUntil(tok::semi);
280 SkipUntil(tok::semi);
448 SkipUntil(tok::semi);
469 SkipUntil(tok::semi);
508 SkipUntil(tok::semi);
521 SkipUntil(tok::semi);
550 SkipUntil(tok::semi)
    [all...]
ParseTemplate.cpp 119 SkipUntil(tok::r_brace, StopAtSemi | StopBeforeMatch);
222 SkipUntil(tok::r_brace, StopAtSemi | StopBeforeMatch);
292 SkipUntil(tok::semi);
362 SkipUntil(tok::comma, tok::greater, tok::greatergreater,
377 SkipUntil(tok::comma, tok::greater, tok::greatergreater,
637 SkipUntil(tok::comma, tok::greater, tok::greatergreater,
691 SkipUntil(tok::comma, tok::greater, StopAtSemi | StopBeforeMatch);
    [all...]
ParseDecl.cpp 132 SkipUntil(tok::r_paren, StopAtSemi); // skip until ) or ;
136 SkipUntil(tok::r_paren, StopAtSemi); // skip until ) or ;
187 SkipUntil(tok::r_paren, StopAtSemi);
190 SkipUntil(tok::r_paren, StopAtSemi);
310 SkipUntil(tok::r_paren, StopAtSemi);
392 SkipUntil(tok::r_paren);
697 SkipUntil(tok::comma, tok::r_paren,
726 SkipUntil(tok::comma, tok::r_paren,
747 SkipUntil(tok::comma, tok::r_paren,
776 SkipUntil(tok::comma, tok::r_paren
    [all...]
Parser.cpp 224 /// SkipUntil - Read tokens until we get to the specified token, then consume
230 /// If SkipUntil finds the specified token, it returns true, otherwise it
232 bool Parser::SkipUntil(ArrayRef<tok::TokenKind> Toks, SkipUntilFlags Flags) {
284 SkipUntil(tok::r_paren, StopAtCodeCompletion);
286 SkipUntil(tok::r_paren);
292 SkipUntil(tok::r_square, StopAtCodeCompletion);
294 SkipUntil(tok::r_square);
300 SkipUntil(tok::r_brace, StopAtCodeCompletion);
302 SkipUntil(tok::r_brace);
864 SkipUntil(tok::semi); // FIXME: better skip
    [all...]
ParseTentative.cpp 162 if (!SkipUntil(tok::r_paren))
186 if (!SkipUntil(tok::r_square))
193 if (!SkipUntil(tok::r_paren))
299 if (!SkipUntil(tok::r_paren, StopAtSemi))
521 bool IsAttribute = SkipUntil(tok::r_square);
593 if (!SkipUntil(tok::r_paren)) {
    [all...]
ParseExprCXX.cpp 723 SkipUntil(tok::r_square, StopAtSemi);
724 SkipUntil(tok::l_brace, StopAtSemi);
725 SkipUntil(tok::r_brace, StopAtSemi);
    [all...]
ParseStmtAsm.cpp 640 SkipUntil(tok::r_paren, StopAtSemi);
754 SkipUntil(tok::r_paren, StopAtSemi);
768 SkipUntil(tok::r_paren, StopAtSemi);
775 SkipUntil(tok::r_paren, StopAtSemi);
785 SkipUntil(tok::r_paren, StopAtSemi);
ParseCXXInlineMethods.cpp 66 SkipUntil(tok::semi);
97 SkipUntil(tok::semi);
100 SkipUntil(tok::semi);
662 /// NOTE: This is a specialized version of Parser::SkipUntil.
    [all...]
  /external/clang/include/clang/Parse/
Parser.h 818 /// \brief Control flags for SkipUntil functions.
832 /// SkipUntil - Read tokens until we get to the specified token, then consume
838 /// If SkipUntil finds the specified token, it returns true, otherwise it
840 bool SkipUntil(tok::TokenKind T,
842 return SkipUntil(llvm::makeArrayRef(T), Flags);
844 bool SkipUntil(tok::TokenKind T1, tok::TokenKind T2,
847 return SkipUntil(TokArray, Flags);
849 bool SkipUntil(tok::TokenKind T1, tok::TokenKind T2, tok::TokenKind T3,
852 return SkipUntil(TokArray, Flags);
854 bool SkipUntil(ArrayRef<tok::TokenKind> Toks
    [all...]
  /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/protobuf/gtest/scripts/
pump.py 260 def SkipUntil(lines, pos, regex, token_type):
280 pos = SkipUntil(lines, pos, r'\(|\)', ')')
349 dots_pos = SkipUntil(lines, pos, DOT_DOT_REGEX, '..')

Completed in 104 milliseconds