Lines Matching refs:isNot
119 if (Left->Previous && Left->Previous->isNot(tok::kw_template)) in parseAngle()
188 Previous->isNot(tok::colon))) { in parseAngle()
360 CurrentToken->is(tok::identifier) && Next->isNot(tok::equal)) { in parseParens()
377 if (OpeningParen.isNot(TT_CppCastLParen) && MightBeFunctionType && in parseParens()
507 while (AttrTok && AttrTok->isNot(tok::r_square)) in isCSharpAttributeSpecifier()
547 if (AttrTok->isNot(tok::identifier)) in isCpp11AttributeSpecifier()
599 Left->isNot(TT_LambdaLSquare) && in parseSquare()
883 } else if (Left->ParameterCount == 0 && Current->isNot(tok::comment)) { in updateParameterCount()
1060 if (!CurrentToken || CurrentToken->isNot(tok::l_paren)) in consumeToken()
1151 CurrentToken->Previous->isNot(tok::kw_operator)) { in consumeToken()
1224 Tok->Next->isNot(tok::l_paren)) { in consumeToken()
1230 if (Tok->isNot(TT_LambdaArrow) && Tok->Previous && in consumeToken()
1276 if (CurrentToken->isNot(tok::comment) && in parseIncludeDirective()
1619 if (Tok->isNot(TT_TemplateOpener)) { in modifyContext()
1648 return !Current.Previous || Current.Previous->isNot(tok::kw_operator); in modifyContext()
1667 Previous->Previous && Previous->Previous->isNot(tok::equal)) { in modifyContext()
1863 (!Current.Previous || Current.Previous->isNot(tok::l_square)) && in determineTokenType()
1892 if (AfterParen->isNot(tok::caret)) { in determineTokenType()
1955 Current.isNot(Keywords.kw_interface)) { in determineTokenType()
1976 if (Tok.isNot(tok::identifier) || !Tok.Previous) in isStartOfName()
2007 PreviousNotConst->MatchingParen->Previous->isNot(tok::period) && in isStartOfName()
2008 PreviousNotConst->MatchingParen->Previous->isNot(tok::kw_template); in isStartOfName()
2074 LeftOfParens->isNot(TT_CastRParen)) { in rParenEndsCast()
2085 if (Tok->isNot(tok::r_square)) in rParenEndsCast()
2089 if (!Tok || Tok->isNot(tok::l_square)) in rParenEndsCast()
2093 if (!Tok || Tok->isNot(tok::kw_delete)) in rParenEndsCast()
2147 if (Tok.Next->isNot(tok::string_literal) && in rParenEndsCast()
2311 if (NextToken->is(tok::l_square) && NextToken->isNot(TT_LambdaLSquare)) in determineStarAmpUsage()
2617 if (!Current || Current->isNot(TT_ConditionalExpr)) in parseConditionalExpr()
2664 NextNonCommentLine = Line->First->isNot(tok::r_brace) ? Line : nullptr; in setCommentLineLevels()
3049 if (Right.is(Keywords.kw_function) && Left.isNot(tok::comma)) in splitPenalty()
3137 (!Right.Next || Right.Next->isNot(tok::l_paren))) { in splitPenalty()
3278 (Left.is(tok::l_brace) && Left.isNot(BK_Block) && in spaceRequiredBetween()
3279 Right.is(tok::r_brace) && Right.isNot(BK_Block))) { in spaceRequiredBetween()
3387 if (Right.is(TT_FunctionTypeLParen) && Left.isNot(tok::l_paren) && in spaceRequiredBetween()
3502 return (Left.is(TT_ArrayInitializerLSquare) && Right.isNot(tok::r_square) && in spaceRequiredBetween()
3506 Style.SpacesInSquareBrackets && Right.isNot(tok::r_square)); in spaceRequiredBetween()
3530 if ((Left.is(tok::l_brace) && Left.isNot(BK_Block)) || in spaceRequiredBetween()
3532 Right.MatchingParen->isNot(BK_Block))) { in spaceRequiredBetween()
3546 if (Left.is(TT_TemplateCloser) && Right.isNot(TT_FunctionTypeLParen)) in spaceRequiredBetween()
3600 if (!Left.Previous || Left.Previous->isNot(tok::period)) { in spaceRequiredBetween()
3629 (Left.isNot(tok::colon) || Left.isNot(TT_ObjCMethodExpr)); in spaceRequiredBetween()
3635 Right.isNot(BK_Block)) { in spaceRequiredBetween()
3785 if (Left.is(tok::l_brace) && Right.isNot(tok::r_brace)) in spaceRequiredBefore()
3788 if (Left.isNot(tok::l_brace) && Right.is(tok::r_brace)) in spaceRequiredBefore()
4090 (Right.is(tok::period) && Right.isNot(TT_DesignatedInitializerPeriod))) { in spaceRequiredBefore()
4093 if (!Style.SpaceBeforeAssignmentOperators && Left.isNot(TT_TemplateCloser) && in spaceRequiredBefore()
4140 if (Right.is(tok::less) && Left.isNot(tok::l_paren) && in spaceRequiredBefore()
4316 Left.isNot(BK_Block) && Left.MatchingParen) { in mustBreakBefore()
4332 return Left.isNot(BK_BracedInit) && Left.isNot(TT_CtorInitializerColon) && in mustBreakBefore()
4362 if (Left.ClosesRequiresClause && Right.isNot(tok::semi)) { in mustBreakBefore()
4475 Right.isNot(TT_LeadingJavaAnnotation) && Right.isNot(tok::l_paren) && in mustBreakBefore()
4712 (!Right.Next || Right.Next->isNot(TT_FunctionDeclarationName))); in canBreakBefore()
4741 Left.isNot(TT_SelectorName)) { in canBreakBefore()
4792 return Left.isNot(tok::period); // FIXME: Properly parse ObjC calls. in canBreakBefore()
4911 if (Right.is(tok::kw_typename) && Left.isNot(tok::kw_const)) in canBreakBefore()