Home
last modified time | relevance | path

Searched refs:exclaim (Results 1 – 17 of 17) sorted by relevance

/external/llvm/lib/AsmParser/
DLLToken.h31 exclaim, // ! enumerator
DLLParser.cpp186 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()
DLLLexer.cpp425 return lltok::exclaim; in LexExclaim()
/external/clang/lib/Lex/
DTokenConcatenation.cpp116 TokenInfo[tok::exclaim ] |= aci_avoid_equal; // != in TokenConcatenation()
DPPExpressions.cpp399 case tok::exclaim: { in EvaluateValue()
DModuleMap.cpp1150 case tok::exclaim: in consumeToken()
DLexer.cpp3300 Kind = tok::exclaim; in LexTokenInternal()
/external/clang/include/clang/Basic/
DOperatorKinds.def72 OVERLOADED_OPERATOR(Exclaim , "!" , exclaim , true , false, false)
DTokenKinds.def174 PUNCTUATOR(exclaim, "!")
325 CXX_KEYWORD_OPERATOR(not , exclaim)
/external/clang/lib/Format/
DFormatToken.h335 case tok::exclaim: in isUnaryOperator()
DTokenAnnotator.cpp818 } 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()
DFormat.cpp755 tok::exclaim, tok::l_square, tok::colon, tok::comma, in tryMergeJSRegexLiteral()
/external/clang/lib/Parse/
DParseTentative.cpp915 case tok::exclaim: in isExpressionOrTypeSpecifierSimple()
DParseExpr.cpp1006 case tok::exclaim: // unary-expression: '!' cast-expression in ParseCastExpression()
DParseObjc.cpp673 case tok::exclaim: in ParseObjCSelectorPiece()
DParseDeclCXX.cpp3528 case tok::exclaim: // 'not' in TryParseCXX11AttributeIdentifier()
/external/clang/lib/Sema/
DSemaExpr.cpp9878 case tok::exclaim: Opc = UO_LNot; break; in ConvertTokenKindToUnaryOpcode()