Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/clang/lib/ARCMigrate/
H A DTransUnusedInitDelegate.cpp37 ExprSet Removables; member in __anonb7cafbd30111::UnusedInitRewriter
45 collectRemovables(body, Removables); in transformBody()
68 return Removables.count(E); in isRemovable()
H A DTransZeroOutPropsInDealloc.cpp33 ExprSet Removables; member in __anon7bb8f6870111::ZeroOutInDeallocRemover
111 collectRemovables(D->getBody(), Removables); in TraverseObjCMethodDecl()
136 Removables.clear(); in TraverseObjCMethodDecl()
146 return Removables.count(E); in isRemovable()
H A DTransUnbridgedCasts.cpp65 mutable std::unique_ptr<ExprSet> Removables; member in __anon8323c4420111::UnbridgedCastRewriter
322 if (!Removables) { in tryRemoving()
323 Removables.reset(new ExprSet); in tryRemoving()
324 collectRemovables(Body, *Removables); in tryRemoving()
327 if (Removables->count(E)) { in tryRemoving()
H A DTransRetainReleaseDealloc.cpp39 ExprSet Removables; member in __anonea0450a80111::RetainReleaseDeallocRemover
55 collectRemovables(body, Removables); in transformBody()
423 return Removables.count(E); in isRemovable()
H A DTransforms.cpp237 ExprSet &Removables; member in __anon26e897370111::RemovablesCollector
241 : Removables(removables) { } in RemovablesCollector()
294 Removables.insert(E); in mark()