Home
last modified time | relevance | path

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

/openbsd/gnu/llvm/clang/lib/ARCMigrate/
H A DTransZeroOutPropsInDealloc.cpp82 if (isZeroingPropIvar(POE) && isRemovable(POE)) { in VisitPseudoObjectExpr()
91 if (isZeroingPropIvar(BOE) && isRemovable(BOE)) { in VisitBinaryOperator()
149 bool isZeroingPropIvar(Expr *E) { in isZeroingPropIvar() function in __anon90a7af540111::ZeroOutInDeallocRemover
152 return isZeroingPropIvar(BO); in isZeroingPropIvar()
154 return isZeroingPropIvar(PO); in isZeroingPropIvar()
158 bool isZeroingPropIvar(BinaryOperator *BOE) { in isZeroingPropIvar() function in __anon90a7af540111::ZeroOutInDeallocRemover
160 return isZeroingPropIvar(BOE->getLHS()) && in isZeroingPropIvar()
161 isZeroingPropIvar(BOE->getRHS()); in isZeroingPropIvar()
190 bool isZeroingPropIvar(PseudoObjectExpr *PO) { in isZeroingPropIvar() function in __anon90a7af540111::ZeroOutInDeallocRemover
215 return isZeroingPropIvar(E); in isZero()