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);
270 SkipUntil(tok::r_square, StopAtSemi);
297 SkipUntil(tok::r_square, StopAtSemi);
325 SkipUntil(tok::r_square, StopAtSemi);
ParseExpr.cpp     [all...]
ParseObjc.cpp 341 SkipUntil(tok::at, StopAtSemi | StopBeforeMatch);
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);
917 SkipUntil(tok::r_paren, StopAtSemi);
    [all...]
ParseTemplate.cpp 119 SkipUntil(tok::r_brace, StopAtSemi | StopBeforeMatch);
222 SkipUntil(tok::r_brace, StopAtSemi | StopBeforeMatch);
363 StopAtSemi | StopBeforeMatch);
378 StopAtSemi | StopBeforeMatch);
638 StopAtSemi | StopBeforeMatch);
691 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...]
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);
698 StopAtSemi | StopBeforeMatch | StopAtCodeCompletion);
727 StopAtSemi | StopBeforeMatch | StopAtCodeCompletion);
748 StopAtSemi | StopBeforeMatch | StopAtCodeCompletion);
777 StopAtSemi | StopBeforeMatch | StopAtCodeCompletion);
796 StopAtSemi | StopBeforeMatch | StopAtCodeCompletion)
    [all...]
ParseTentative.cpp 299 if (!SkipUntil(tok::r_paren, 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);
ParseDeclCXX.cpp 808 if (SkipUntil(tok::r_paren, StopAtSemi | StopBeforeMatch)) {
892 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...]
Parser.cpp 227 /// good stopping point. If StopAtSemi is true, skipping will stop at a ';'
253 !HasFlagsSet(Flags, StopAtSemi) &&
335 if (HasFlagsSet(Flags, StopAtSemi))
    [all...]
ParseCXXInlineMethods.cpp 153 ConsumeAndStoreUntil(tok::r_brace, Toks, /*StopAtSemi=*/false);
159 ConsumeAndStoreUntil(tok::l_brace, Toks, /*StopAtSemi=*/false);
160 ConsumeAndStoreUntil(tok::r_brace, Toks, /*StopAtSemi=*/false);
214 ConsumeAndStoreUntil(tok::r_brace, Toks, /*StopAtSemi=*/true);
660 /// If StopAtSemi is true, then we will stop early at a ';' character.
665 bool StopAtSemi, bool ConsumeFinalToken) {
691 ConsumeAndStoreUntil(tok::r_paren, Toks, /*StopAtSemi=*/false);
697 ConsumeAndStoreUntil(tok::r_square, Toks, /*StopAtSemi=*/false);
703 ConsumeAndStoreUntil(tok::r_brace, Toks, /*StopAtSemi=*/false);
744 if (StopAtSemi)
    [all...]
  /external/clang/include/clang/Parse/
Parser.h 820 StopAtSemi = 1 << 0, ///< Stop skipping at semicolon
835 /// likely good stopping point. If Flags has StopAtSemi flag, skipping will
    [all...]

Completed in 783 milliseconds