Searched refs:memberSpecifications (Results 1 - 6 of 6) sorted by relevance

/external/proguard/src/proguard/
H A DFullyQualifiedClassNameChecker.java86 private void checkMemberSpecifications(List memberSpecifications, boolean isField) argument
88 if (memberSpecifications != null)
90 for (int index = 0; index < memberSpecifications.size(); index++)
93 (MemberSpecification)memberSpecifications.get(index);
H A DClassSpecificationVisitorFactory.java354 private static void addMemberVisitors(List memberSpecifications, argument
359 if (memberSpecifications != null)
361 for (int index = 0; index < memberSpecifications.size(); index++)
364 (MemberSpecification)memberSpecifications.get(index);
397 private static ClassVisitor createClassMemberTester(List memberSpecifications, argument
402 if (memberSpecifications != null)
404 for (int index = 0; index < memberSpecifications.size(); index++)
407 (MemberSpecification)memberSpecifications.get(index);
H A DConfigurationWriter.java502 private void writeFieldSpecification(List memberSpecifications) argument
504 if (memberSpecifications != null)
506 for (int index = 0; index < memberSpecifications.size(); index++)
509 (MemberSpecification)memberSpecifications.get(index);
544 private void writeMethodSpecification(List memberSpecifications) argument
546 if (memberSpecifications != null)
548 for (int index = 0; index < memberSpecifications.size(); index++)
551 (MemberSpecification)memberSpecifications.get(index);
H A DInitializer.java383 List memberSpecifications = isField ?
387 if (memberSpecifications != null)
389 for (int index2 = 0; index2 < memberSpecifications.size(); index2++)
392 (MemberSpecification)memberSpecifications.get(index2);
/external/proguard/src/proguard/gui/
H A DMemberSpecificationsPanel.java195 List memberSpecifications = new ArrayList(size);
203 memberSpecifications.add(wrapper.memberSpecification);
207 return memberSpecifications;
/external/proguard/src/proguard/ant/
H A DMemberSpecificationElement.java49 * @param memberSpecifications the class member specifications to be
56 public void appendTo(List memberSpecifications, argument
123 memberSpecifications.add(memberSpecification);

Completed in 97 milliseconds