reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

tools/clang/include/clang/AST/Expr.h
 2100     return Op >= UO_Plus && Op <= UO_LNot;
tools/clang/include/clang/AST/RecursiveASTVisitor.h
  576       UNARYOP_LIST()
tools/clang/include/clang/AST/StmtVisitor.h
   95       case UO_LNot:      DISPATCH(UnaryLNot,      UnaryOperator);
tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/SMTConv.h
   49     case UO_LNot:
   65     case UO_LNot:
  141       return fromUnOp(Solver, UO_LNot,
  191       return fromFloatUnOp(Solver, UO_LNot,
  244       return fromFloatUnOp(Solver, UO_LNot,
  490         return Assumption ? fromUnOp(Solver, UO_LNot, Exp) : Exp;
tools/clang/lib/AST/Expr.cpp
  146     case UO_LNot:
 1310   case OO_Exclaim:    return UO_LNot;
 1324   case UO_LNot: return OO_Exclaim;
 2420     case UO_LNot:
tools/clang/lib/AST/ExprCXX.cpp
   69     assert(NotEq->getOpcode() == UO_LNot);
tools/clang/lib/AST/ExprConstant.cpp
12050   case UO_LNot: {
12289     case UO_LNot: {
14007     case UO_LNot:
tools/clang/lib/AST/StmtProfile.cpp
 1399     UnaryOp = UO_LNot;
tools/clang/lib/Analysis/BodyFarm.cpp
  454       /* opc=*/ UO_LNot,
tools/clang/lib/Analysis/CFG.cpp
 2372   if (U->getOpcode() == UO_LNot)
tools/clang/lib/Analysis/Consumed.cpp
  905   case UO_LNot:
tools/clang/lib/Analysis/ReachableCode.cpp
  250       if (UO->getOpcode() != UO_LNot && UO->getOpcode() != UO_Minus)
tools/clang/lib/Analysis/ThreadSafety.cpp
 1446     if (UOP->getOpcode() == UO_LNot) {
tools/clang/lib/Analysis/ThreadSafetyCommon.cpp
  174     if (UO->getOpcode() == UO_LNot) {
  465   case UO_LNot:
tools/clang/lib/CodeGen/CodeGenFunction.cpp
 1474     if (CondUOp->getOpcode() == UO_LNot) {
tools/clang/lib/CodeGen/CodeGenPGO.cpp
  330         if (UO->getOpcode() == UO_LNot)
tools/clang/lib/Sema/SemaChecking.cpp
10410     case UO_LNot:
12143     if (U->getOpcode() == UO_LNot) {
tools/clang/lib/Sema/SemaDeclAttr.cpp
  610     if (E->getOpcode() == UO_LNot || E->getOpcode() == UO_AddrOf ||
tools/clang/lib/Sema/SemaExpr.cpp
 7689     return OP->getOpcode() == UO_LNot;
10259   if (!UO || UO->getOpcode() != UO_LNot) return;
12634   case tok::exclaim:      Opc = UO_LNot; break;
13566   case UO_LNot: // logical negation
tools/clang/lib/Sema/SemaOverload.cpp
12993             R = CreateBuiltinUnaryOp(OpLoc, UO_LNot, R.get());
tools/clang/lib/StaticAnalyzer/Checkers/TestAfterDivZeroChecker.cpp
  231     if (U->getOpcode() == UO_LNot) {
tools/clang/lib/StaticAnalyzer/Core/BugReporterVisitors.cpp
 1902     if (UO->getOpcode() == UO_LNot)
 2291         if (UO->getOpcode() == UO_LNot) {
tools/clang/lib/StaticAnalyzer/Core/ExprEngine.cpp
 1814       if (AMgr.options.ShouldEagerlyAssume && (U->getOpcode() == UO_LNot)) {
tools/clang/lib/StaticAnalyzer/Core/ExprEngineC.cpp
 1003     case UO_LNot:
 1030         case UO_LNot:
tools/clang/tools/extra/clang-tidy/readability/ImplicitBoolConversionCheck.cpp
   63   return UnaryOperatorExpr && UnaryOperatorExpr->getOpcode() == UO_LNot;
tools/clang/tools/extra/clang-tidy/readability/SimplifyBooleanExprCheck.cpp
  203       if (UnOp->getOpcode() == UO_LNot) {
  254     if (UnOp->getOpcode() == UO_LNot) {