Searched refs:keepClassSpecifications (Results 1 – 4 of 4) sorted by relevance
49 public static ClassPoolVisitor createClassPoolVisitor(List keepClassSpecifications, in createClassPoolVisitor() argument58 if (keepClassSpecifications != null) in createClassPoolVisitor()60 for (int index = 0; index < keepClassSpecifications.size(); index++) in createClassPoolVisitor()63 (KeepClassSpecification)keepClassSpecifications.get(index); in createClassPoolVisitor()
334 List keepClassSpecifications) in writeOptions() argument336 if (keepClassSpecifications != null) in writeOptions()338 for (int index = 0; index < keepClassSpecifications.size(); index++) in writeOptions()340 … writeOption(optionNames, (KeepClassSpecification)keepClassSpecifications.get(index)); in writeOptions()
413 private List parseKeepClassSpecificationArguments(List keepClassSpecifications, in parseKeepClassSpecificationArguments() argument420 if (keepClassSpecifications == null) in parseKeepClassSpecificationArguments()422 keepClassSpecifications = new ArrayList(); in parseKeepClassSpecificationArguments()472 keepClassSpecifications.add(new KeepClassSpecification(markClasses, in parseKeepClassSpecificationArguments()478 return keepClassSpecifications; in parseKeepClassSpecificationArguments()
726 …e ClassSpecification[] extractClassSpecifications(KeepClassSpecification[] keepClassSpecifications) in extractClassSpecifications() argument728 … ClassSpecification[] classSpecifications = new ClassSpecification[keepClassSpecifications.length]; in extractClassSpecifications()732 classSpecifications[index] = keepClassSpecifications[index]; in extractClassSpecifications()