Searched defs:memberSpecifications (Results 1 - 5 of 5) sorted by relevance

/external/proguard/src/proguard/
H A DClassMemberChecker.java88 List memberSpecifications,
91 if (memberSpecifications != null)
95 for (int index = 0; index < memberSpecifications.size(); index++)
98 (MemberSpecification)memberSpecifications.get(index);
87 checkMemberSpecifications(Clazz clazz, List memberSpecifications, boolean isField) argument
H A DClassSpecificationVisitorFactory.java374 private static void addMemberVisitors(List memberSpecifications, argument
379 if (memberSpecifications != null)
381 for (int index = 0; index < memberSpecifications.size(); index++)
384 (MemberSpecification)memberSpecifications.get(index);
417 private static ClassVisitor createClassMemberTester(List memberSpecifications, argument
422 if (memberSpecifications != null)
424 for (int index = 0; index < memberSpecifications.size(); index++)
427 (MemberSpecification)memberSpecifications.get(index);
H A DFullyQualifiedClassNameChecker.java89 private void checkMemberSpecifications(List memberSpecifications, boolean isField) argument
91 if (memberSpecifications != null)
93 for (int index = 0; index < memberSpecifications.size(); index++)
96 (MemberSpecification)memberSpecifications.get(index);
H A DConfigurationWriter.java503 private void writeFieldSpecification(List memberSpecifications) argument
505 if (memberSpecifications != null)
507 for (int index = 0; index < memberSpecifications.size(); index++)
510 (MemberSpecification)memberSpecifications.get(index);
545 private void writeMethodSpecification(List memberSpecifications) argument
547 if (memberSpecifications != null)
549 for (int index = 0; index < memberSpecifications.size(); index++)
552 (MemberSpecification)memberSpecifications.get(index);
/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 135 milliseconds