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

  /external/clang/lib/Parse/
ParseInit.cpp 229 SkipUntil(tok::r_square, StopAtSemi);
269 SkipUntil(tok::r_square, StopAtSemi);
281 SkipUntil(tok::r_square, StopAtSemi);
311 SkipUntil(tok::r_square, StopAtSemi);
339 SkipUntil(tok::r_square, StopAtSemi);
ParseExpr.cpp     [all...]
ParseTemplate.cpp 120 SkipUntil(tok::r_brace, StopAtSemi | StopBeforeMatch);
141 SkipUntil(tok::r_brace, StopAtSemi | StopBeforeMatch);
234 SkipUntil(tok::r_brace, StopAtSemi | StopBeforeMatch);
375 StopAtSemi | StopBeforeMatch);
390 StopAtSemi | StopBeforeMatch);
649 StopAtSemi | StopBeforeMatch);
703 SkipUntil(tok::comma, tok::greater, StopAtSemi | StopBeforeMatch);
    [all...]
ParseExprCXX.cpp 723 SkipUntil(tok::r_square, StopAtSemi);
724 SkipUntil(tok::l_brace, StopAtSemi);
725 SkipUntil(tok::r_brace, StopAtSemi);
    [all...]
ParseTentative.cpp 299 if (!SkipUntil(tok::r_paren, StopAtSemi))
    [all...]
ParseDecl.cpp 133 SkipUntil(tok::r_paren, StopAtSemi); // skip until ) or ;
137 SkipUntil(tok::r_paren, StopAtSemi); // skip until ) or ;
188 SkipUntil(tok::r_paren, StopAtSemi);
191 SkipUntil(tok::r_paren, StopAtSemi);
311 SkipUntil(tok::r_paren, StopAtSemi);
728 StopAtSemi | StopBeforeMatch | StopAtCodeCompletion);
757 StopAtSemi | StopBeforeMatch | StopAtCodeCompletion);
778 StopAtSemi | StopBeforeMatch | StopAtCodeCompletion);
807 StopAtSemi | StopBeforeMatch | StopAtCodeCompletion);
826 StopAtSemi | StopBeforeMatch | StopAtCodeCompletion)
    [all...]
ParseObjc.cpp 651 SkipUntil(tok::at, StopAtSemi | StopBeforeMatch);
724 SkipUntil(tok::r_brace, tok::at, StopAtSemi);
    [all...]
ParseStmtAsm.cpp 658 SkipUntil(tok::r_paren, StopAtSemi);
781 SkipUntil(tok::r_paren, StopAtSemi);
795 SkipUntil(tok::r_paren, StopAtSemi);
802 SkipUntil(tok::r_paren, StopAtSemi);
812 SkipUntil(tok::r_paren, StopAtSemi);
ParseDeclCXX.cpp 816 if (SkipUntil(tok::r_paren, StopAtSemi | StopBeforeMatch)) {
    [all...]
ParseStmt.cpp 190 SkipUntil(tok::r_brace, StopAtSemi | StopBeforeMatch);
378 SkipUntil(tok::r_brace, StopAtSemi | StopBeforeMatch);
395 SkipUntil(tok::r_brace, StopAtSemi | StopBeforeMatch);
674 if (SkipUntil(tok::colon, tok::r_brace, StopAtSemi | StopBeforeMatch)) {
692 if (SkipUntil(tok::colon, tok::r_brace, StopAtSemi | StopBeforeMatch)) {
    [all...]
Parser.cpp 247 /// good stopping point. If StopAtSemi is true, skipping will stop at a ';'
273 !HasFlagsSet(Flags, StopAtSemi) &&
356 if (HasFlagsSet(Flags, StopAtSemi))
    [all...]
ParseCXXInlineMethods.cpp 150 ConsumeAndStoreUntil(tok::r_brace, Toks, /*StopAtSemi=*/false);
156 ConsumeAndStoreUntil(tok::l_brace, Toks, /*StopAtSemi=*/false);
157 ConsumeAndStoreUntil(tok::r_brace, Toks, /*StopAtSemi=*/false);
211 ConsumeAndStoreUntil(tok::r_brace, Toks, /*StopAtSemi=*/true);
657 /// If StopAtSemi is true, then we will stop early at a ';' character.
662 bool StopAtSemi, bool ConsumeFinalToken) {
688 ConsumeAndStoreUntil(tok::r_paren, Toks, /*StopAtSemi=*/false);
694 ConsumeAndStoreUntil(tok::r_square, Toks, /*StopAtSemi=*/false);
700 ConsumeAndStoreUntil(tok::r_brace, Toks, /*StopAtSemi=*/false);
741 if (StopAtSemi)
    [all...]
  /external/clang/include/clang/Parse/
Parser.h 842 StopAtSemi = 1 << 0, ///< Stop skipping at semicolon
857 /// likely good stopping point. If Flags has StopAtSemi flag, skipping will
    [all...]

Completed in 116 milliseconds