Home
last modified time | relevance | path

Searched refs:UOp (Results 1 – 10 of 10) sorted by relevance

/external/clang/lib/StaticAnalyzer/Checkers/
DPointerArithChecker.cpp65 void checkPreStmt(const UnaryOperator *UOp, CheckerContext &C) const;
299 void PointerArithChecker::checkPreStmt(const UnaryOperator *UOp, in checkPreStmt() argument
301 if (!UOp->isIncrementDecrementOp() || !UOp->getType()->isPointerType()) in checkPreStmt()
303 reportPointerArithMisuse(UOp->getSubExpr(), C, true); in checkPreStmt()
/external/libcxx/test/std/numerics/numeric.ops/transform.reduce/
Dtransform_reduce_iter_iter_init_bop_uop.pass.cpp43 template <class Iter1, class T, class BOp, class UOp>
45 test(Iter1 first1, Iter1 last1, T init, BOp bOp, UOp uOp, T x) in test()
/external/libcxx/test/std/numerics/numeric.ops/transform.inclusive.scan/
Dtransform_inclusive_scan_bop_uop.pass.cpp39 template <class Iter1, class BOp, class UOp, class Iter2>
41 test(Iter1 first, Iter1 last, BOp bop, UOp uop, Iter2 rFirst, Iter2 rLast) in test()
Dtransform_inclusive_scan_bop_uop_init.pass.cpp38 template <class Iter1, class BOp, class UOp, class T, class Iter2>
40 test(Iter1 first, Iter1 last, BOp bop, UOp uop, T init, Iter2 rFirst, Iter2 rLast) in test()
/external/libcxx/test/std/numerics/numeric.ops/transform.exclusive.scan/
Dtransform_exclusive_scan_init_bop_uop.pass.cpp38 template <class Iter1, class BOp, class UOp, class T, class Iter2>
40 test(Iter1 first, Iter1 last, BOp bop, UOp uop, T init, Iter2 rFirst, Iter2 rLast) in test()
/external/clang/lib/Analysis/
DConsumed.cpp510 void VisitUnaryOperator(const UnaryOperator *UOp);
912 void ConsumedStmtVisitor::VisitUnaryOperator(const UnaryOperator *UOp) { in VisitUnaryOperator() argument
913 InfoEntry Entry = findInfo(UOp->getSubExpr()); in VisitUnaryOperator()
916 switch (UOp->getOpcode()) { in VisitUnaryOperator()
918 PropagationMap.insert(PairType(UOp, Entry->second)); in VisitUnaryOperator()
923 PropagationMap.insert(PairType(UOp, Entry->second.invertTest())); in VisitUnaryOperator()
/external/skia/src/sksl/
DSkSLJIT.cpp546 #define COMPARE(SFunc, SOp, UFunc, UOp, FFunc, FOp) { \ in compileBinary() argument
554 return UFunc(builder, UOp, left, right, "binary"); \ in compileBinary()
/external/skqp/src/sksl/
DSkSLJIT.cpp546 #define COMPARE(SFunc, SOp, UFunc, UOp, FFunc, FOp) { \ in compileBinary() argument
554 return UFunc(builder, UOp, left, right, "binary"); \ in compileBinary()
/external/clang/lib/Sema/
DSemaDeclAttr.cpp556 if (UnaryOperator *UOp = dyn_cast<UnaryOperator>(ArgExp)) in checkAttrArgsAreCapabilityObjs() local
557 if (UOp->getOpcode() == UO_AddrOf) in checkAttrArgsAreCapabilityObjs()
558 if (DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(UOp->getSubExpr())) in checkAttrArgsAreCapabilityObjs()
DSemaChecking.cpp7853 if (UnaryOperator *UOp = dyn_cast<UnaryOperator>(InnerE)) in DiagnoseFloatingImpCast() local
7854 if (UOp->getOpcode() == UO_Minus || UOp->getOpcode() == UO_Plus) in DiagnoseFloatingImpCast()
7855 InnerE = UOp->getSubExpr()->IgnoreParenImpCasts(); in DiagnoseFloatingImpCast()