Searched refs:SkipUntil (Results 1 - 16 of 16) sorted by relevance

/external/clang/lib/Parse/
H A DParseOpenMP.cpp81 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(to
[all...]
H A DParseInit.cpp229 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);
H A DParseObjc.cpp85 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(to
[all...]
H A DParseStmt.cpp193 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)) {
987 SkipUntil(tok::semi);
1049 SkipUntil(tok::semi);
1085 SkipUntil(tok::semi);
1209 SkipUntil(tok::semi);
1248 SkipUntil(to
[all...]
H A DParseExpr.cpp1416 SkipUntil(tok::greatergreatergreater, StopAtSemi);
1421 SkipUntil(tok::greatergreatergreater, StopAtSemi);
1472 SkipUntil(tok::r_paren, StopAtSemi);
1729 SkipUntil(tok::r_paren, StopAtSemi);
1836 SkipUntil(tok::r_paren, StopAtSemi);
1857 SkipUntil(tok::r_paren, StopAtSemi);
1862 SkipUntil(tok::r_paren, StopAtSemi);
1869 SkipUntil(tok::r_paren, StopAtSemi);
1891 SkipUntil(tok::r_paren, StopAtSemi);
1909 SkipUntil(to
[all...]
H A DParseDeclCXX.cpp110 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(to
[all...]
H A DParseTemplate.cpp119 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);
881 SkipUntil(tok::greater, StopAtSemi);
883 SkipUntil(tok::greater, StopAtSemi | StopBeforeMatch);
1241 SkipUntil(to
[all...]
H A DParseDecl.cpp132 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(to
[all...]
H A DParser.cpp224 /// 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) { function in class:Parser
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(to
[all...]
H A DParseTentative.cpp162 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)) {
1545 if (!SkipUntil(tok::r_paren, StopAtSemi))
1739 if (!SkipUntil(tok::comma, tok::r_paren, StopAtSemi | StopBeforeMatch))
1782 if (!SkipUntil(tok::r_paren, StopAtSemi))
1803 if (!SkipUntil(to
[all...]
H A DParseExprCXX.cpp723 SkipUntil(tok::r_square, StopAtSemi);
724 SkipUntil(tok::l_brace, StopAtSemi);
725 SkipUntil(tok::r_brace, StopAtSemi);
1379 SkipUntil(tok::r_paren, StopAtSemi);
1429 SkipUntil(tok::r_paren, StopAtSemi);
1616 SkipUntil(tok::r_paren, StopAtSemi);
1702 SkipUntil(tok::semi, StopAtSemi);
1734 if (SkipUntil(tok::r_paren, StopAtSemi | StopBeforeMatch))
2630 SkipUntil(tok::semi, StopAtSemi | StopBeforeMatch);
2637 SkipUntil(to
[all...]
H A DParseStmtAsm.cpp640 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);
H A DParseCXXInlineMethods.cpp66 SkipUntil(tok::semi);
97 SkipUntil(tok::semi);
100 SkipUntil(tok::semi);
662 /// NOTE: This is a specialized version of Parser::SkipUntil.
975 Self.SkipUntil(EndKind, StopAtSemi | StopBeforeMatch);
/external/clang/include/clang/Parse/
H A DParser.h818 /// \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, function in class:clang::Parser
842 return SkipUntil(llvm::makeArrayRef(T), Flags);
844 bool SkipUntil(tok::TokenKind T1, tok::TokenKind T2, function in class:clang::Parser
847 return SkipUntil(TokArray, Flags);
849 bool SkipUntil(tok::TokenKind T1, tok::TokenKind T2, tok::TokenKind T3, function in class:clang::Parser
852 return SkipUntil(TokArray, Flags);
854 bool SkipUntil(ArrayRe
[all...]
/external/google-breakpad/src/testing/gtest/scripts/
H A Dpump.py270 def SkipUntil(lines, pos, regex, token_type): function
290 pos = SkipUntil(lines, pos, r'\(|\)', ')')
355 dots_pos = SkipUntil(lines, pos, DOT_DOT_REGEX, '..')
/external/protobuf/gtest/scripts/
H A Dpump.py260 def SkipUntil(lines, pos, regex, token_type): function
280 pos = SkipUntil(lines, pos, r'\(|\)', ')')
349 dots_pos = SkipUntil(lines, pos, DOT_DOT_REGEX, '..')

Completed in 199 milliseconds