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

  /external/clang/lib/Parse/
ParseExpr.cpp     [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);
ParseObjc.cpp 407 SkipUntil(tok::at, StopAtSemi | StopBeforeMatch);
480 SkipUntil(tok::r_brace, tok::at, StopAtSemi);
615 SkipUntil(tok::r_paren, StopAtSemi);
634 SkipUntil(tok::r_paren, StopAtSemi);
644 SkipUntil(tok::r_paren, StopAtSemi);
653 SkipUntil(tok::r_paren, StopAtSemi);
951 SkipUntil(tok::r_paren, StopAtSemi);
    [all...]
ParseTemplate.cpp 119 SkipUntil(tok::r_brace, StopAtSemi | StopBeforeMatch);
214 SkipUntil(tok::r_brace, StopAtSemi | StopBeforeMatch);
345 StopAtSemi | StopBeforeMatch);
360 StopAtSemi | StopBeforeMatch);
620 StopAtSemi | StopBeforeMatch);
673 SkipUntil(tok::comma, tok::greater, StopAtSemi | StopBeforeMatch);
    [all...]
ParseStmtAsm.cpp 608 SkipUntil(tok::r_paren, StopAtSemi);
722 SkipUntil(tok::r_paren, StopAtSemi);
736 SkipUntil(tok::r_paren, StopAtSemi);
743 SkipUntil(tok::r_paren, StopAtSemi);
753 SkipUntil(tok::r_paren, StopAtSemi);
ParseExprCXX.cpp 674 SkipUntil(tok::r_square, StopAtSemi);
675 SkipUntil(tok::l_brace, StopAtSemi);
676 SkipUntil(tok::r_brace, StopAtSemi);
    [all...]
ParseTentative.cpp 297 if (!SkipUntil(tok::r_paren, StopAtSemi))
    [all...]
ParseDecl.cpp 132 SkipUntil(tok::r_paren, StopAtSemi); // skip until ) or ;
136 SkipUntil(tok::r_paren, StopAtSemi); // skip until ) or ;
185 SkipUntil(tok::r_paren, StopAtSemi);
188 SkipUntil(tok::r_paren, StopAtSemi);
304 SkipUntil(tok::r_paren, StopAtSemi);
646 StopAtSemi | StopBeforeMatch | StopAtCodeCompletion);
675 StopAtSemi | StopBeforeMatch | StopAtCodeCompletion);
694 StopAtSemi | StopBeforeMatch | StopAtCodeCompletion);
722 StopAtSemi | StopBeforeMatch | StopAtCodeCompletion);
737 StopAtSemi | StopBeforeMatch | StopAtCodeCompletion)
    [all...]
ParseDeclCXX.cpp 786 if (SkipUntil(tok::r_paren, StopAtSemi | StopBeforeMatch)) {
870 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);
648 if (SkipUntil(tok::colon, tok::r_brace, StopAtSemi | StopBeforeMatch)) {
666 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 148 ConsumeAndStoreUntil(tok::r_brace, Toks, /*StopAtSemi=*/false);
154 ConsumeAndStoreUntil(tok::l_brace, Toks, /*StopAtSemi=*/false);
155 ConsumeAndStoreUntil(tok::r_brace, Toks, /*StopAtSemi=*/false);
209 ConsumeAndStoreUntil(tok::r_brace, Toks, /*StopAtSemi=*/true);
558 /// If StopAtSemi is true, then we will stop early at a ';' character.
563 bool StopAtSemi, bool ConsumeFinalToken) {
589 ConsumeAndStoreUntil(tok::r_paren, Toks, /*StopAtSemi=*/false);
595 ConsumeAndStoreUntil(tok::r_square, Toks, /*StopAtSemi=*/false);
601 ConsumeAndStoreUntil(tok::r_brace, Toks, /*StopAtSemi=*/false);
642 if (StopAtSemi)
    [all...]
  /external/clang/include/clang/Parse/
Parser.h 831 StopAtSemi = 1 << 0, ///< Stop skipping at semicolon
846 /// likely good stopping point. If Flags has StopAtSemi flag, skipping will
    [all...]

Completed in 299 milliseconds