Home
last modified time | relevance | path

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

/external/proguard/src/proguard/
DLibraryKeepChecker.java65 public void checkClassSpecifications(List keepSpecifications) in checkClassSpecifications() argument
67 if (keepSpecifications != null) in checkClassSpecifications()
70 for (int index = 0; index < keepSpecifications.size(); index++) in checkClassSpecifications()
73 (KeepClassSpecification)keepSpecifications.get(index); in checkClassSpecifications()
DDescriptorKeepChecker.java68 public void checkClassSpecifications(List keepSpecifications) in checkClassSpecifications() argument
77 ClassSpecificationVisitorFactory.createClassPoolVisitor(keepSpecifications, in checkClassSpecifications()
/external/proguard/src/proguard/ant/
DConfigurationTask.java364 private List extendKeepSpecifications(List keepSpecifications, in extendKeepSpecifications() argument
369 if (keepSpecifications == null) in extendKeepSpecifications()
371 keepSpecifications = new ArrayList(); in extendKeepSpecifications()
374 keepSpecificationElement.appendTo(keepSpecifications, in extendKeepSpecifications()
378 return keepSpecifications; in extendKeepSpecifications()
DKeepSpecificationElement.java47 public void appendTo(List keepSpecifications, in appendTo() argument
67 keepSpecifications.add(keepClassSpecification); in appendTo()
/external/proguard/src/proguard/gui/
DProGuardGUI.java706 private KeepClassSpecification[] extractKeepSpecifications(List keepSpecifications, in extractKeepSpecifications() argument
712 for (int index = 0; index < keepSpecifications.size(); index++) in extractKeepSpecifications()
714 …pClassSpecification keepClassSpecification = (KeepClassSpecification)keepSpecifications.get(index); in extractKeepSpecifications()
1253 private List filteredKeepSpecifications(List keepSpecifications, in filteredKeepSpecifications() argument
1258 for (int index = 0; index < keepSpecifications.size(); index++) in filteredKeepSpecifications()
1261 (KeepClassSpecification)keepSpecifications.get(index); in filteredKeepSpecifications()
1280 List keepSpecifications) in findMatchingKeepSpecifications() argument
1282 if (keepSpecifications == null) in findMatchingKeepSpecifications()
1289 for (int index = 0; index < keepSpecifications.size(); index++) in findMatchingKeepSpecifications()
1292 (KeepClassSpecification)keepSpecifications.get(index); in findMatchingKeepSpecifications()
[all …]