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()
152 bool isZeroingPropIvar(Expr *E) { in isZeroingPropIvar() function in __anon6df63aad0111::ZeroOutInDeallocRemover
155 return isZeroingPropIvar(BO); in isZeroingPropIvar()
157 return isZeroingPropIvar(PO); in isZeroingPropIvar()
161 bool isZeroingPropIvar(BinaryOperator *BOE) { in isZeroingPropIvar() function in __anon6df63aad0111::ZeroOutInDeallocRemover
163 return isZeroingPropIvar(BOE->getLHS()) && in isZeroingPropIvar()
164 isZeroingPropIvar(BOE->getRHS()); in isZeroingPropIvar()
193 bool isZeroingPropIvar(PseudoObjectExpr *PO) { in isZeroingPropIvar() function in __anon6df63aad0111::ZeroOutInDeallocRemover
218 return isZeroingPropIvar(E); in isZero()