Home
last modified time | relevance | path

Searched refs:keepSpecifications (Results 1 – 4 of 4) sorted by relevance

/external/proguard/src/proguard/ant/
DConfigurationTask.java354 private List extendKeepSpecifications(List keepSpecifications, in extendKeepSpecifications() argument
359 if (keepSpecifications == null) in extendKeepSpecifications()
361 keepSpecifications = new ArrayList(); in extendKeepSpecifications()
364 keepSpecificationElement.appendTo(keepSpecifications, in extendKeepSpecifications()
368 return keepSpecifications; in extendKeepSpecifications()
DKeepSpecificationElement.java46 public void appendTo(List keepSpecifications, in appendTo() argument
65 keepSpecifications.add(keepClassSpecification); in appendTo()
/external/proguard/src/proguard/
DDescriptorKeepChecker.java69 public void checkClassSpecifications(List keepSpecifications) in checkClassSpecifications() argument
78 ClassSpecificationVisitorFactory.createClassPoolVisitor(keepSpecifications, in checkClassSpecifications()
/external/proguard/src/proguard/gui/
DProGuardGUI.java699 private KeepClassSpecification[] extractKeepSpecifications(List keepSpecifications, in extractKeepSpecifications() argument
705 for (int index = 0; index < keepSpecifications.size(); index++) in extractKeepSpecifications()
707 …pClassSpecification keepClassSpecification = (KeepClassSpecification)keepSpecifications.get(index); in extractKeepSpecifications()
1242 private List filteredKeepSpecifications(List keepSpecifications, in filteredKeepSpecifications() argument
1247 for (int index = 0; index < keepSpecifications.size(); index++) in filteredKeepSpecifications()
1250 (KeepClassSpecification)keepSpecifications.get(index); in filteredKeepSpecifications()
1269 List keepSpecifications) in findMatchingKeepSpecifications() argument
1271 if (keepSpecifications == null) in findMatchingKeepSpecifications()
1278 for (int index = 0; index < keepSpecifications.size(); index++) in findMatchingKeepSpecifications()
1281 (KeepClassSpecification)keepSpecifications.get(index); in findMatchingKeepSpecifications()
[all …]