Searched refs:exclaim (Results 1 – 17 of 17) sorted by relevance
/external/llvm/lib/AsmParser/ |
D | LLToken.h | 31 exclaim, // ! enumerator
|
D | LLParser.cpp | 186 case lltok::exclaim: if (ParseStandaloneMetadata()) return true; break; in ParseTopLevelEntities() 551 ParseToken(lltok::exclaim, "Expected '!' here") || in ParseNamedMetadata() 558 if (ParseToken(lltok::exclaim, "Expected '!' here")) in ParseNamedMetadata() 575 assert(Lex.getKind() == lltok::exclaim); in ParseStandaloneMetadata() 592 } else if (ParseToken(lltok::exclaim, "Expected '!' here") || in ParseStandaloneMetadata() 2980 return ParseToken(lltok::exclaim, "expected '!' here") || in ParseMDNode() 3864 if (Lex.getKind() != lltok::exclaim) in ParseMetadata() 3868 assert(Lex.getKind() == lltok::exclaim && "Expected '!' here"); in ParseMetadata()
|
D | LLLexer.cpp | 425 return lltok::exclaim; in LexExclaim()
|
/external/clang/lib/Lex/ |
D | TokenConcatenation.cpp | 116 TokenInfo[tok::exclaim ] |= aci_avoid_equal; // != in TokenConcatenation()
|
D | PPExpressions.cpp | 399 case tok::exclaim: { in EvaluateValue()
|
D | ModuleMap.cpp | 1150 case tok::exclaim: in consumeToken()
|
D | Lexer.cpp | 3300 Kind = tok::exclaim; in LexTokenInternal()
|
/external/clang/include/clang/Basic/ |
D | OperatorKinds.def | 72 OVERLOADED_OPERATOR(Exclaim , "!" , exclaim , true , false, false)
|
D | TokenKinds.def | 174 PUNCTUATOR(exclaim, "!") 325 CXX_KEYWORD_OPERATOR(not , exclaim)
|
/external/clang/lib/Format/ |
D | FormatToken.h | 335 case tok::exclaim: in isUnaryOperator()
|
D | TokenAnnotator.cpp | 818 } else if (Current.is(tok::semi) || Current.is(tok::exclaim)) { in modifyContext() 857 } else if (Current.isOneOf(tok::exclaim, tok::tilde)) { in determineTokenType() 1670 if (Left.isOneOf(tok::exclaim, tok::tilde)) in spaceRequiredBetween()
|
D | Format.cpp | 755 tok::exclaim, tok::l_square, tok::colon, tok::comma, in tryMergeJSRegexLiteral()
|
/external/clang/lib/Parse/ |
D | ParseTentative.cpp | 915 case tok::exclaim: in isExpressionOrTypeSpecifierSimple()
|
D | ParseExpr.cpp | 1006 case tok::exclaim: // unary-expression: '!' cast-expression in ParseCastExpression()
|
D | ParseObjc.cpp | 673 case tok::exclaim: in ParseObjCSelectorPiece()
|
D | ParseDeclCXX.cpp | 3528 case tok::exclaim: // 'not' in TryParseCXX11AttributeIdentifier()
|
/external/clang/lib/Sema/ |
D | SemaExpr.cpp | 9878 case tok::exclaim: Opc = UO_LNot; break; in ConvertTokenKindToUnaryOpcode()
|