Home
last modified time | relevance | path

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

/external/clang/lib/ARCMigrate/
DTransUnusedInitDelegate.cpp38 ExprSet Removables; member in __anon7dae2ade0111::UnusedInitRewriter
46 collectRemovables(body, Removables); in transformBody()
69 return Removables.count(E); in isRemovable()
DTransZeroOutPropsInDealloc.cpp34 ExprSet Removables; member in __anonb487cdb20111::ZeroOutInDeallocRemover
112 collectRemovables(D->getBody(), Removables); in TraverseObjCMethodDecl()
139 Removables.clear(); in TraverseObjCMethodDecl()
149 return Removables.count(E); in isRemovable()
DTransUnbridgedCasts.cpp66 mutable std::unique_ptr<ExprSet> Removables; member in __anon186b25cd0111::UnbridgedCastRewriter
325 if (!Removables) { in tryRemoving()
326 Removables.reset(new ExprSet); in tryRemoving()
327 collectRemovables(Body, *Removables); in tryRemoving()
330 if (Removables->count(E)) { in tryRemoving()
DTransRetainReleaseDealloc.cpp40 ExprSet Removables; member in __anonb56f6e730111::RetainReleaseDeallocRemover
56 collectRemovables(body, Removables); in transformBody()
419 return Removables.count(E); in isRemovable()
DTransforms.cpp243 ExprSet &Removables; member in __anon6f7c78620111::RemovablesCollector
247 : Removables(removables) { } in RemovablesCollector()
299 Removables.insert(E); in mark()