/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 = loader.loadClass(targetName); 96 target = (Handler) targetClass.newInstance();
|
/frameworks/base/core/java/android/animation/ |
PropertyValuesHolder.java | 369 * @param targetClass The class to search for the method 378 private Method getPropertyFunction(Class targetClass, String prefix, Class valueType) { 385 returnVal = targetClass.getMethod(methodName, args); 405 returnVal = targetClass.getMethod(methodName, args); 419 " not found on target class " + targetClass); 429 * utility function to request the Method from the targetClass directly. 430 * @param targetClass The Class on which the requested method should exist. 436 private Method setupSetterOrGetter(Class targetClass, 445 HashMap<String, Method> propertyMap = propertyMapMap.get(targetClass); 450 setterOrGetter = getPropertyFunction(targetClass, prefix, valueType) [all...] |
/external/javassist/src/main/javassist/compiler/ |
MemberCodeGen.java | 450 CtClass targetClass = null; 460 targetClass = thisClass; 471 targetClass = thisClass; 478 targetClass = MemberResolver.getSuperclass(targetClass); 485 targetClass 511 targetClass = resolver.lookupClass(javaLangObject, true); 513 targetClass = resolver.lookupClassByJvmName(className); 523 atMethodCallCore(targetClass, mname, args, isStatic, isSpecial, 534 * @param targetClass the class at which method lookup starts [all...] |
TypeChecker.java | 627 CtClass targetClass = null; 633 targetClass = thisClass; 638 targetClass = MemberResolver.getSuperclass(thisClass); 640 targetClass = thisClass; 647 targetClass 669 targetClass = resolver.lookupClass(javaLangObject, true); 671 targetClass = resolver.lookupClassByJvmName(className); 682 = atMethodCallCore(targetClass, mname, args); 694 public MemberResolver.Method atMethodCallCore(CtClass targetClass, 705 = resolver.lookupMethod(targetClass, thisClass, thisMethod [all...] |
/libcore/luni/src/main/java/java/io/ |
ObjectInputStream.java | [all...] |
/prebuilts/tools/common/m2/internal/net/sf/proguard/proguard-base/4.9/ |
proguard-base-4.9.jar | |
/external/proguard/lib/ |
proguard.jar | |
/prebuilts/tools/common/proguard/proguard4.7/lib/ |
proguard.jar | |
/prebuilts/tools/common/cglib/ |
cglib-2.2.3.jar | |
cglib-nodep-2.2.3.jar | |