Home
last modified time | relevance | path

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

/external/clang/lib/ARCMigrate/
DTransZeroOutPropsInDealloc.cpp83 if (isZeroingPropIvar(POE) && isRemovable(POE)) { in VisitPseudoObjectExpr()
92 if (isZeroingPropIvar(BOE) && isRemovable(BOE)) { in VisitBinaryOperator()
154 bool isZeroingPropIvar(Expr *E) { in isZeroingPropIvar() function in __anon881773cf0111::ZeroOutInDeallocRemover
157 return isZeroingPropIvar(BO); in isZeroingPropIvar()
159 return isZeroingPropIvar(PO); in isZeroingPropIvar()
163 bool isZeroingPropIvar(BinaryOperator *BOE) { in isZeroingPropIvar() function in __anon881773cf0111::ZeroOutInDeallocRemover
165 return isZeroingPropIvar(BOE->getLHS()) && in isZeroingPropIvar()
166 isZeroingPropIvar(BOE->getRHS()); in isZeroingPropIvar()
195 bool isZeroingPropIvar(PseudoObjectExpr *PO) { in isZeroingPropIvar() function in __anon881773cf0111::ZeroOutInDeallocRemover
220 return isZeroingPropIvar(E); in isZero()