Home
last modified time | relevance | path

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

/frameworks/base/tools/aapt2/java/
DProguardRules.cpp42 BaseVisitor(const ResourceFile& file, KeepSet* keep_set) : file_(file), keep_set_(keep_set) { in BaseVisitor() argument
103 LayoutVisitor(const ResourceFile& file, KeepSet* keep_set) : BaseVisitor(file, keep_set) { in LayoutVisitor() argument
141 MenuVisitor(const ResourceFile& file, KeepSet* keep_set) : BaseVisitor(file, keep_set) { in MenuVisitor() argument
167 XmlResourceVisitor(const ResourceFile& file, KeepSet* keep_set) : BaseVisitor(file, keep_set) { in XmlResourceVisitor() argument
194 TransitionVisitor(const ResourceFile& file, KeepSet* keep_set) : BaseVisitor(file, keep_set) { in TransitionVisitor() argument
216 ManifestVisitor(const ResourceFile& file, KeepSet* keep_set, bool main_dex_only) in ManifestVisitor() argument
217 : BaseVisitor(file, keep_set), main_dex_only_(main_dex_only) { in ManifestVisitor()
285 bool CollectProguardRulesForManifest(xml::XmlResource* res, KeepSet* keep_set, bool main_dex_only) { in CollectProguardRulesForManifest() argument
286 ManifestVisitor visitor(res->file, keep_set, main_dex_only); in CollectProguardRulesForManifest()
294 bool CollectProguardRules(xml::XmlResource* res, KeepSet* keep_set) { in CollectProguardRules() argument
[all …]
DProguardRules.h67 friend void WriteKeepSet(const KeepSet& keep_set, io::OutputStream* out);
69 friend bool CollectLocations(const UsageLocation& location, const KeepSet& keep_set,
79 bool CollectProguardRulesForManifest(xml::XmlResource* res, KeepSet* keep_set,
82 bool CollectProguardRules(xml::XmlResource* res, KeepSet* keep_set);
84 bool CollectResourceReferences(IAaptContext* context, ResourceTable* table, KeepSet* keep_set);
86 void WriteKeepSet(const KeepSet& keep_set, io::OutputStream* out);
88 bool CollectLocations(const UsageLocation& location, const KeepSet& keep_set,
/frameworks/base/tools/aapt2/cmd/
DLink.cpp356 proguard::KeepSet* keep_set);
389 IAaptContext* context, proguard::KeepSet* keep_set) in ResourceFileFlattener() argument
390 : options_(options), context_(context), keep_set_(keep_set) { in ResourceFileFlattener()
1282 bool WriteProguardFile(const Maybe<std::string>& out, const proguard::KeepSet& keep_set) { in WriteProguardFile() argument
1295 proguard::WriteKeepSet(keep_set, &fout); in WriteProguardFile()
1574 bool WriteApk(IArchiveWriter* writer, proguard::KeepSet* keep_set, xml::XmlResource* manifest, in WriteApk() argument
1595 ResourceFileFlattener file_flattener(file_flattener_options, context_, keep_set); in WriteApk()