Lines Matching refs:isNot
88 if (AttrTok->isNot(tok::identifier)) in isCppAttribute()
151 if (Left->Previous && Left->Previous->isNot(tok::kw_template)) in parseAngle()
219 Previous->isNot(tok::colon))) { in parseAngle()
402 CurrentToken->is(tok::identifier) && Next->isNot(tok::equal)) { in parseParens()
419 if (OpeningParen.isNot(TT_CppCastLParen) && MightBeFunctionType && in parseParens()
549 while (AttrTok && AttrTok->isNot(tok::r_square)) in isCSharpAttributeSpecifier()
615 Left->isNot(TT_LambdaLSquare) && in parseSquare()
905 } else if (Left->ParameterCount == 0 && Current->isNot(tok::comment)) { in updateParameterCount()
976 } else if (Style.isVerilog() && Tok->isNot(TT_BinaryOperator)) { in consumeToken()
1108 if (!CurrentToken || CurrentToken->isNot(tok::l_paren)) in consumeToken()
1201 CurrentToken->Previous->isNot(tok::kw_operator)) { in consumeToken()
1283 Tok->Next->isNot(tok::l_paren)) { in consumeToken()
1291 if (Tok->isNot(TT_LambdaArrow) && Tok->Previous && in consumeToken()
1341 if (CurrentToken->isNot(tok::comment) && in parseIncludeDirective()
1687 if (Tok->isNot(TT_TemplateOpener)) { in modifyContext()
1716 return !Current.Previous || Current.Previous->isNot(tok::kw_operator); in modifyContext()
1735 Previous->Previous && Previous->Previous->isNot(tok::equal)) { in modifyContext()
1919 (!Current.Previous || Current.Previous->isNot(tok::l_square)) && in determineTokenType()
1948 if (AfterParen->isNot(tok::caret)) { in determineTokenType()
2013 Current.isNot(Keywords.kw_interface)) { in determineTokenType()
2034 if (Tok.isNot(tok::identifier) || !Tok.Previous) in isStartOfName()
2065 PreviousNotConst->MatchingParen->Previous->isNot(tok::period) && in isStartOfName()
2066 PreviousNotConst->MatchingParen->Previous->isNot(tok::kw_template); in isStartOfName()
2141 LeftOfParens->isNot(TT_CastRParen)) { in rParenEndsCast()
2152 if (Tok->isNot(tok::r_square)) in rParenEndsCast()
2156 if (!Tok || Tok->isNot(tok::l_square)) in rParenEndsCast()
2160 if (!Tok || Tok->isNot(tok::kw_delete)) in rParenEndsCast()
2214 if (Tok.Next->isNot(tok::string_literal) && in rParenEndsCast()
2379 if (NextToken->is(tok::l_square) && NextToken->isNot(TT_LambdaLSquare)) in determineStarAmpUsage()
2641 Current->isNot(TT_TrailingReturnArrow)) { in getCurrentPrecedence()
2695 if (!Current || Current->isNot(TT_ConditionalExpr)) in parseConditionalExpr()
2745 NextNonCommentLine = Line->First->isNot(tok::r_brace) ? Line : nullptr; in setCommentLineLevels()
3160 if (Right.is(Keywords.kw_function) && Left.isNot(tok::comma)) in splitPenalty()
3249 (!Right.Next || Right.Next->isNot(tok::l_paren))) { in splitPenalty()
3395 (Left.is(tok::l_brace) && Left.isNot(BK_Block) && in spaceRequiredBetween()
3396 Right.is(tok::r_brace) && Right.isNot(BK_Block))) { in spaceRequiredBetween()
3471 if (Right.isNot(TT_OverloadedOperatorLParen)) in spaceRequiredBetween()
3513 if (Right.is(TT_FunctionTypeLParen) && Left.isNot(tok::l_paren) && in spaceRequiredBetween()
3629 return (Left.is(TT_ArrayInitializerLSquare) && Right.isNot(tok::r_square) && in spaceRequiredBetween()
3633 Style.SpacesInSquareBrackets && Right.isNot(tok::r_square)); in spaceRequiredBetween()
3657 if ((Left.is(tok::l_brace) && Left.isNot(BK_Block)) || in spaceRequiredBetween()
3659 Right.MatchingParen->isNot(BK_Block))) { in spaceRequiredBetween()
3673 if (Left.is(TT_TemplateCloser) && Right.isNot(TT_FunctionTypeLParen)) in spaceRequiredBetween()
3728 if (!Left.Previous || Left.Previous->isNot(tok::period)) { in spaceRequiredBetween()
3757 (Left.isNot(tok::colon) || Left.isNot(TT_ObjCMethodExpr)); in spaceRequiredBetween()
3763 Right.isNot(BK_Block)) { in spaceRequiredBetween()
3916 if (Left.is(tok::l_brace) && Right.isNot(tok::r_brace)) in spaceRequiredBefore()
3919 if (Left.isNot(tok::l_brace) && Right.is(tok::r_brace)) in spaceRequiredBefore()
4096 (Right.is(TT_VerilogTableItem) && Left.isNot(tok::l_paren))) { in spaceRequiredBefore()
4101 if (Left.isNot(TT_BinaryOperator) && in spaceRequiredBefore()
4261 (Right.is(tok::period) && Right.isNot(TT_DesignatedInitializerPeriod))) { in spaceRequiredBefore()
4264 if (!Style.SpaceBeforeAssignmentOperators && Left.isNot(TT_TemplateCloser) && in spaceRequiredBefore()
4311 if (Right.is(tok::less) && Left.isNot(tok::l_paren) && in spaceRequiredBefore()
4472 Right.isNot(tok::r_square)) || in mustBreakBefore()
4501 Left.isNot(BK_Block) && Left.MatchingParen) { in mustBreakBefore()
4517 return Left.isNot(BK_BracedInit) && Left.isNot(TT_CtorInitializerColon) && in mustBreakBefore()
4547 if (Left.ClosesRequiresClause && Right.isNot(tok::semi)) { in mustBreakBefore()
4660 Right.isNot(TT_LeadingJavaAnnotation) && Right.isNot(tok::l_paren) && in mustBreakBefore()
4897 (!Right.Next || Right.Next->isNot(TT_FunctionDeclarationName))); in canBreakBefore()
4926 Left.isNot(TT_SelectorName)) { in canBreakBefore()
4977 return Left.isNot(tok::period); // FIXME: Properly parse ObjC calls. in canBreakBefore()
5101 if (Right.is(tok::kw_typename) && Left.isNot(tok::kw_const)) in canBreakBefore()