/external/clang/lib/StaticAnalyzer/Checkers/ |
D | PointerArithChecker.cpp | 65 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/ |
D | transform_reduce_iter_iter_init_bop_uop.pass.cpp | 43 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/ |
D | transform_inclusive_scan_bop_uop.pass.cpp | 39 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()
|
D | transform_inclusive_scan_bop_uop_init.pass.cpp | 38 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/ |
D | transform_exclusive_scan_init_bop_uop.pass.cpp | 38 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/ |
D | Consumed.cpp | 510 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/ |
D | SkSLJIT.cpp | 546 #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/ |
D | SkSLJIT.cpp | 546 #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/ |
D | SemaDeclAttr.cpp | 556 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()
|
D | SemaChecking.cpp | 7853 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()
|