OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:Removables
(Results
1 - 5
of
5
) sorted by null
/external/clang/lib/ARCMigrate/
TransUnusedInitDelegate.cpp
38
ExprSet
Removables
;
46
collectRemovables(body,
Removables
);
69
return
Removables
.count(E);
TransZeroOutPropsInDealloc.cpp
34
ExprSet
Removables
;
112
collectRemovables(D->getBody(),
Removables
);
139
Removables
.clear();
149
return
Removables
.count(E);
TransUnbridgedCasts.cpp
66
mutable std::unique_ptr<ExprSet>
Removables
;
325
if (!
Removables
) {
326
Removables
.reset(new ExprSet);
327
collectRemovables(Body, *
Removables
);
330
if (
Removables
->count(E)) {
TransRetainReleaseDealloc.cpp
40
ExprSet
Removables
;
56
collectRemovables(body,
Removables
);
419
return
Removables
.count(E);
Transforms.cpp
243
ExprSet &
Removables
;
246
RemovablesCollector(ExprSet &
removables
)
247
:
Removables
(
removables
) { }
299
Removables
.insert(E);
Completed in 101 milliseconds