HomeSort by relevance Sort by last modified time
    Searched defs:targetClass (Results 1 - 24 of 24) sorted by null

  /external/proguard/src/proguard/classfile/editor/
SubclassToAdder.java 35 private final Clazz targetClass;
42 public SubclassToAdder(Clazz targetClass)
44 this.targetClass = targetClass;
52 targetClass.addSubClass(programClass);
58 targetClass.addSubClass(libraryClass);
AnnotationAdder.java 42 private final ProgramClass targetClass;
54 public AnnotationAdder(ProgramClass targetClass,
57 this.targetClass = targetClass;
62 constantAdder = new ConstantAdder(targetClass);
70 public AnnotationAdder(ProgramClass targetClass,
73 this.targetClass = targetClass;
78 constantAdder = new ConstantAdder(targetClass);
86 public AnnotationAdder(ProgramClass targetClass,
    [all...]
AttributesEditor.java 36 private final ProgramClass targetClass;
46 public AttributesEditor(ProgramClass targetClass,
49 this(targetClass, null, null, replaceAttributes);
57 public AttributesEditor(ProgramClass targetClass,
61 this(targetClass, targetMember, null, replaceAttributes);
69 public AttributesEditor(ProgramClass targetClass,
74 this.targetClass = targetClass;
125 !replaceAttribute(targetClass.u2attributesCount,
126 targetClass.attributes
    [all...]
ElementValuesEditor.java 36 private final ProgramClass targetClass;
46 public ElementValuesEditor(ProgramClass targetClass,
50 this.targetClass = targetClass;
61 public ElementValuesEditor(ProgramClass targetClass,
65 this.targetClass = targetClass;
153 elementValue.getMethodName(targetClass));
230 if (elementValues[index].getMethodName(targetClass).equals(elementValueName))
InterfacesEditor.java 36 private final ProgramClass targetClass;
43 public InterfacesEditor(ProgramClass targetClass)
45 this.targetClass = targetClass;
57 int interfacesCount = targetClass.u2interfacesCount++;
58 int[] interfaces = targetClass.u2interfaces;
68 targetClass.u2interfaces = interfaces;
86 int interfacesCount = --targetClass.u2interfacesCount;
87 int[] interfaces = targetClass.u2interfaces;
109 int interfacesCount = targetClass.u2interfacesCount
    [all...]
ClassEditor.java 36 private ProgramClass targetClass;
43 public ClassEditor(ProgramClass targetClass)
45 this.targetClass = targetClass;
54 int interfacesCount = targetClass.u2interfacesCount;
55 int[] interfaces = targetClass.u2interfaces;
60 targetClass.u2interfaces = new int[interfacesCount+1];
62 targetClass.u2interfaces, 0,
64 interfaces = targetClass.u2interfaces;
69 System.out.println(targetClass.getName()+": adding interface ["+targetClass.getClassName(interfaceConstantIndex)+"]")
    [all...]
ElementValueAdder.java 39 private final ProgramClass targetClass;
50 public ElementValueAdder(ProgramClass targetClass,
54 this.targetClass = targetClass;
57 constantAdder = new ConstantAdder(targetClass);
66 public ElementValueAdder(ProgramClass targetClass,
70 this.targetClass = targetClass;
73 constantAdder = new ConstantAdder(targetClass);
74 elementValuesEditor = new ElementValuesEditor(targetClass,
    [all...]
MemberAdder.java 48 private final ProgramClass targetClass;
59 * @param targetClass the class to which all visited class members will be
64 public MemberAdder(ProgramClass targetClass)//),
67 this.targetClass = targetClass;
70 constantAdder = new ConstantAdder(targetClass);
71 classEditor = new ClassEditor(targetClass);
72 constantPoolEditor = new ConstantPoolEditor(targetClass);
85 ProgramField targetField = (ProgramField)targetClass.findField(name, descriptor);
96 System.out.println("MemberAdder: renaming field ["+targetClass+"."+targetField.getName(targetClass)+" "+targetField.getDescriptor(targetClass)+"]")
    [all...]
ConstantPoolEditor.java 35 private ProgramClass targetClass;
42 public ConstantPoolEditor(ProgramClass targetClass)
44 this.targetClass = targetClass;
55 int constantPoolCount = targetClass.u2constantPoolCount;
56 Constant[] constantPool = targetClass.constantPool;
84 int constantPoolCount = targetClass.u2constantPoolCount;
85 Constant[] constantPool = targetClass.constantPool;
114 int constantPoolCount = targetClass.u2constantPoolCount;
115 Constant[] constantPool = targetClass.constantPool
    [all...]
AttributeAdder.java 46 private final ProgramClass targetClass;
59 public AttributeAdder(ProgramClass targetClass,
62 this(targetClass, null, null, replaceAttributes);
70 public AttributeAdder(ProgramClass targetClass,
74 this(targetClass, targetMember, null, replaceAttributes);
82 public AttributeAdder(ProgramClass targetClass,
87 this.targetClass = targetClass;
92 constantAdder = new ConstantAdder(targetClass);
93 attributesEditor = new AttributesEditor(targetClass,
    [all...]
  /external/proguard/src/proguard/classfile/visitor/
SimilarMemberVisitor.java 35 private final Clazz targetClass;
45 * @param targetClass the class in whose hierarchy to look for
61 public SimilarMemberVisitor(Clazz targetClass,
68 this.targetClass = targetClass;
81 targetClass.hierarchyAccept(visitThisMember,
93 targetClass.hierarchyAccept(visitThisMember,
105 targetClass.hierarchyAccept(visitThisMember,
117 targetClass.hierarchyAccept(visitThisMember,
  /external/proguard/src/proguard/optimize/info/
ClassOptimizationInfo.java 39 private Clazz targetClass;
114 public void setTargetClass(Clazz targetClass)
116 this.targetClass = targetClass;
122 return targetClass;
  /external/proguard/src/proguard/optimize/peephole/
ClassMerger.java 57 private final ProgramClass targetClass;
66 * @param targetClass the class into which all visited
74 public ClassMerger(ProgramClass targetClass,
78 this(targetClass, allowAccessModification, mergeInterfacesAggressively, null);
85 * @param targetClass the class into which all visited
95 public ClassMerger(ProgramClass targetClass,
100 this.targetClass = targetClass;
113 // targetClass.getName().equals(CLASS_NAME);
125 System.err.println(" Target class = ["+targetClass.getName()+"]")
    [all...]
MethodInliner.java 73 private ProgramClass targetClass;
147 targetClass = (ProgramClass)clazz;
149 constantAdder = new ConstantAdder(targetClass);
150 exceptionInfoAdder = new ExceptionInfoAdder(targetClass, codeAttributeComposer);
161 targetClass = null;
191 targetClass.getName()+"."+targetMethod.getName(targetClass)+targetMethod.getDescriptor(targetClass)+"]");
471 // (programClass.equals(targetClass) &&
472 // targetMethod.getName(targetClass).equals(ClassConstants.INTERNAL_METHOD_NAME_INIT))) &
    [all...]
TargetClassChanger.java 72 Clazz targetClass = ClassMerger.getTargetClass(programClass);
73 if (targetClass != null)
  /libcore/luni/src/main/java/java/util/logging/
MemoryHandler.java 95 Class<?> targetClass = AccessController
106 target = (Handler) targetClass.newInstance();
  /libcore/luni/src/main/java/java/io/
ObjectInputStream.java     [all...]
  /external/proguard/lib/
proguard.jar 
  /prebuilt/sdk/10/
android.jar 
  /prebuilt/sdk/4/
android.jar 
  /prebuilt/sdk/5/
android.jar 
  /prebuilt/sdk/6/
android.jar 
  /prebuilt/sdk/7/
android.jar 
  /prebuilt/sdk/9/
android.jar 

Completed in 950 milliseconds