Home
last modified time | relevance | path

Searched refs:isIncrementDecrementOp (Results 1 – 14 of 14) sorted by relevance

/freebsd/contrib/llvm-project/clang/lib/Index/
H A DIndexBody.cpp91 if (UO->isIncrementDecrementOp()) { in getRolesForRef()
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaOpenACCAtomic.cpp348 if (!UnaryOperator::isIncrementDecrementOp(Inf.Operator)) { in CheckIncDec()
H A DSemaPseudoObject.cpp494 assert(UnaryOperator::isIncrementDecrementOp(opcode)); in buildIncDecOperation()
1481 assert(UnaryOperator::isIncrementDecrementOp(opcode)); in checkIncDec()
H A DSemaOpenACC.cpp1442 if (!UO->isIncrementDecrementOp()) in checkForInc()
H A DSemaExprCXX.cpp7427 if (!UO->isIncrementDecrementOp()) in MaybeDecrementCount()
H A DSemaOpenMP.cpp8381 if (UO->isIncrementDecrementOp() && in checkAndSetInc()
11535 if (AtomicUnaryOp->isIncrementDecrementOp()) { in checkStatement()
H A DSemaDeclCXX.cpp4040 if (E->isIncrementDecrementOp()) { in VisitUnaryOperator()
H A DSemaDecl.cpp12903 if (E->isIncrementDecrementOp()) { in VisitUnaryOperator()
H A DSemaExpr.cpp15930 UnaryOperator::isIncrementDecrementOp(Opc)) in BuildUnaryOp()
/freebsd/contrib/llvm-project/clang/lib/Analysis/
H A DUninitializedValues.cpp403 if (UO->isIncrementDecrementOp()) in VisitUnaryOperator()
/freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/
H A DExprEngineC.cpp1103 assert (U->isIncrementDecrementOp()); in VisitIncrementDecrementOperator()
H A DBugReporterVisitors.cpp123 (U->isIncrementDecrementOp() && U->getType()->isPointerType())) { in getDerefExpr()
/freebsd/contrib/llvm-project/clang/lib/AST/
H A DExpr.cpp2881 if (UO->isIncrementDecrementOp()) in isUnusedResultAWarning()
3743 if (cast<UnaryOperator>(this)->isIncrementDecrementOp()) in HasSideEffects()
4170 if (UnOp->isPrefix() && UnOp->isIncrementDecrementOp()) in getSourceBitField()
/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DExpr.h2338 static bool isIncrementDecrementOp(Opcode Op) { return Op <= UO_PreDec; } in isIncrementDecrementOp() function
2339 bool isIncrementDecrementOp() const { in isIncrementDecrementOp() function
2340 return isIncrementDecrementOp(getOpcode()); in isIncrementDecrementOp()