Searched defs:keepSpecifications (Results 1 - 4 of 4) sorted by relevance

/external/proguard/src/proguard/ant/
H A DKeepSpecificationElement.java41 * @param keepSpecifications the class specifications to be extended.
46 public void appendTo(List keepSpecifications, argument
65 keepSpecifications.add(keepClassSpecification);
H A DConfigurationTask.java354 private List extendKeepSpecifications(List keepSpecifications, argument
359 if (keepSpecifications == null)
361 keepSpecifications = new ArrayList();
364 keepSpecificationElement.appendTo(keepSpecifications,
368 return keepSpecifications;
/external/proguard/src/proguard/
H A DDescriptorKeepChecker.java69 public void checkClassSpecifications(List keepSpecifications) argument
78 ClassSpecificationVisitorFactory.createClassPoolVisitor(keepSpecifications,
/external/proguard/src/proguard/gui/
H A DProGuardGUI.java699 private KeepClassSpecification[] extractKeepSpecifications(List keepSpecifications, argument
705 for (int index = 0; index < keepSpecifications.size(); index++)
707 KeepClassSpecification keepClassSpecification = (KeepClassSpecification)keepSpecifications.get(index);
1242 private List filteredKeepSpecifications(List keepSpecifications, argument
1247 for (int index = 0; index < keepSpecifications.size(); index++)
1250 (KeepClassSpecification)keepSpecifications.get(index);
1269 List keepSpecifications)
1271 if (keepSpecifications == null)
1278 for (int index = 0; index < keepSpecifications.size(); index++)
1281 (KeepClassSpecification)keepSpecifications
1268 findMatchingKeepSpecifications(KeepClassSpecification keepClassSpecificationTemplate, List keepSpecifications) argument
[all...]

Completed in 185 milliseconds