Home | History | Annotate | Download | only in Format

Lines Matching refs:l_brace

230         if (CurrentToken->Next && CurrentToken->Next->is(tok::l_brace) &&
270 if (CurrentToken->is(tok::l_brace))
311 CurrentToken->isNot(tok::l_brace) &&
325 Contexts.back().ContextKind == tok::l_brace &&
326 Parent->isOneOf(tok::l_brace, tok::comma)) {
406 ScopedContextCreator ContextCreator(*this, tok::l_brace, 1);
421 if (CurrentToken->isOneOf(tok::colon, tok::l_brace)) {
442 if (Current->is(tok::l_brace) && Current->BlockKind == BK_Block)
588 case tok::l_brace:
1038 !Current.Next->isOneOf(tok::semi, tok::colon, tok::l_brace,
1066 PreviousNoComment->isOneOf(tok::comma, tok::l_brace))
1199 Tok.Next->isOneOf(tok::equal, tok::semi, tok::l_brace, tok::greater);
1248 (NextToken->is(tok::l_brace) && !NextToken->getNextNonComment()))
1254 if (PrevToken->isOneOf(tok::l_paren, tok::l_square, tok::l_brace,
1312 tok::kw_case, tok::at, tok::l_brace))
1645 if (Line.Last->is(tok::l_brace))
1658 if (Tok->isOneOf(tok::l_brace, tok::string_literal, TT_ObjCMethodExpr) ||
1851 if (Left.is(tok::equal) && Right.is(tok::l_brace))
1994 tok::numeric_constant, tok::l_paren, tok::l_brace,
2024 (Right.is(tok::l_brace) && Right.BlockKind == BK_Block) ||
2048 if (Left.is(tok::l_brace) && Right.is(tok::r_brace))
2050 if ((Left.is(tok::l_brace) && Left.BlockKind != BK_Block) ||
2080 Right.is(tok::l_brace) && Right.getNextNonComment() &&
2126 if (Left.is(Keywords.kw_is) && Right.is(tok::l_brace))
2132 if ((Left.is(tok::l_brace) || Right.is(tok::r_brace)) &&
2138 !Right.isOneOf(tok::equal, tok::l_brace, tok::comma, tok::l_square,
2150 if (Left.is(tok::r_square) && Right.is(tok::l_brace))
2217 if (Right.is(tok::coloncolon) && !Left.isOneOf(tok::l_brace, tok::comment))
2247 return Tok.is(tok::l_brace) && Tok.BlockKind == BK_Block &&
2262 if (Left.is(TT_DictLiteral) && Left.is(tok::l_brace) && Line.Level == 0 &&
2272 if (Left.is(tok::l_brace) && Line.Level == 0 &&
2278 if (Right.is(tok::r_brace) && Left.is(tok::l_brace) &&
2296 if (Left.isOneOf(tok::l_brace, TT_ArrayInitializerLSquare) &&
2300 Right.MatchingParen->isOneOf(tok::l_brace,
2336 if (Right.Previous->is(tok::l_brace) && Right.NestingLevel == 1 &&
2353 (Line.Last->is(tok::l_brace) || Style.BreakAfterJavaFieldAnnotations))
2374 if (Left.is(TT_JsFatArrow) && Right.is(tok::l_brace))
2458 // the l_brace, which is tracked by BreakBeforeClosingBrace.
2465 return !Right.isOneOf(tok::l_brace, tok::semi, tok::equal, tok::l_paren,
2501 return Left.isOneOf(tok::comma, tok::coloncolon, tok::semi, tok::l_brace,