Lines Matching refs:l_brace

151         nextTok.isOneOf(tok::l_paren, tok::semi, tok::identifier, tok::l_brace);  in StatementFilterCCC()
307 case tok::l_brace: // C99 6.8.2: compound-statement in ParseStatementOrDeclarationAfterAttributes()
604 if (Tok.isNot(tok::l_brace)) in ParseSEHTryBlock()
605 return StmtError(Diag(Tok, diag::err_expected) << tok::l_brace); in ParseSEHTryBlock()
675 if (Tok.isNot(tok::l_brace)) in ParseSEHExceptBlock()
676 return StmtError(Diag(Tok, diag::err_expected) << tok::l_brace); in ParseSEHExceptBlock()
696 if (Tok.isNot(tok::l_brace)) in ParseSEHFinallyBlock()
697 return StmtError(Diag(Tok, diag::err_expected) << tok::l_brace); in ParseSEHFinallyBlock()
1035 assert(Tok.is(tok::l_brace) && "Not a compound stmt!"); in ParseCompoundStatement()
1190 BalancedDelimiterTracker T(*this, tok::l_brace); in ParseCompoundStatementBody()
1413 ShouldSkip(P.getCurToken().is(tok::l_brace)) { in MisleadingIndentationChecker()
1570 bool IsBracedThen = Tok.is(tok::l_brace); in ParseIfStatement()
1642 Tok.is(tok::l_brace)); in ParseIfStatement()
1769 if (Tok.is(tok::l_brace)) { in ParseSwitchStatement()
1789 ParseScope InnerScope(this, Scope::DeclScope, C99orCXX, Tok.is(tok::l_brace)); in ParseSwitchStatement()
1862 ParseScope InnerScope(this, Scope::DeclScope, C99orCXX, Tok.is(tok::l_brace)); in ParseWhileStatement()
1908 ParseScope InnerScope(this, Scope::DeclScope, C99orCXX, Tok.is(tok::l_brace)); in ParseDoStatement()
2083 if (Tok.is(tok::l_brace)) in ParseForStatement()
2335 Tok.is(tok::l_brace)); in ParseForStatement()
2454 if (Tok.is(tok::l_brace) && getLangOpts().CPlusPlus) { in ParseReturnStatement()
2514 assert(Tok.is(tok::l_brace)); in ParseFunctionStatementBody()
2610 if (!SkipUntil(tok::l_brace, StopAtCodeCompletion) || in trySkippingFunctionBody()
2649 if (Tok.isNot(tok::l_brace)) in ParseCXXTryBlockCommon()
2650 return StmtError(Diag(Tok, diag::err_expected) << tok::l_brace); in ParseCXXTryBlockCommon()
2753 if (Tok.isNot(tok::l_brace)) in ParseCXXCatchBlock()
2754 return StmtError(Diag(Tok, diag::err_expected) << tok::l_brace); in ParseCXXCatchBlock()
2774 if (!Tok.is(tok::l_brace)) { in ParseMicrosoftIfExistsStatement()
2775 Diag(Tok, diag::err_expected) << tok::l_brace; in ParseMicrosoftIfExistsStatement()
2793 BalancedDelimiterTracker Braces(*this, tok::l_brace); in ParseMicrosoftIfExistsStatement()
2795 Diag(Tok, diag::err_expected) << tok::l_brace; in ParseMicrosoftIfExistsStatement()