Searched refs:targetClass (Results 1 - 25 of 29) sorted by relevance

12

/external/proguard/src/proguard/classfile/editor/
H A DSubclassToAdder.java35 private final Clazz targetClass; field in class:SubclassToAdder
42 public SubclassToAdder(Clazz targetClass) argument
44 this.targetClass = targetClass;
52 targetClass.addSubClass(programClass);
58 targetClass.addSubClass(libraryClass);
H A DClassEditor.java36 private ProgramClass targetClass; field in class:ClassEditor
43 public ClassEditor(ProgramClass targetClass) argument
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
[all...]
H A DAnnotationAdder.java42 private final ProgramClass targetClass; field in class:AnnotationAdder
54 public AnnotationAdder(ProgramClass targetClass, argument
57 this.targetClass = targetClass;
62 constantAdder = new ConstantAdder(targetClass);
70 public AnnotationAdder(ProgramClass targetClass, argument
73 this.targetClass = targetClass;
78 constantAdder = new ConstantAdder(targetClass);
86 public AnnotationAdder(ProgramClass targetClass, argument
[all...]
H A DInterfacesEditor.java36 private final ProgramClass targetClass; field in class:InterfacesEditor
43 public InterfacesEditor(ProgramClass targetClass) argument
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
[all...]
H A DAttributesEditor.java36 private final ProgramClass targetClass; field in class:AttributesEditor
46 public AttributesEditor(ProgramClass targetClass, argument
49 this(targetClass, null, null, replaceAttributes);
57 public AttributesEditor(ProgramClass targetClass, argument
61 this(targetClass, targetMember, null, replaceAttributes);
69 public AttributesEditor(ProgramClass targetClass, argument
74 this.targetClass = targetClass;
125 !replaceAttribute(targetClass.u2attributesCount,
126 targetClass
[all...]
H A DMemberAdder.java48 private final ProgramClass targetClass; field in class:MemberAdder
59 * @param targetClass the class to which all visited class members will be
64 public MemberAdder(ProgramClass targetClass)//), argument
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
[all...]
H A DInterfaceAdder.java49 public InterfaceAdder(ProgramClass targetClass) argument
51 constantAdder = new ConstantAdder(targetClass);
52 interfacesEditor = new InterfacesEditor(targetClass);
H A DElementValueAdder.java39 private final ProgramClass targetClass; field in class:ElementValueAdder
50 public ElementValueAdder(ProgramClass targetClass, argument
54 this.targetClass = targetClass;
57 constantAdder = new ConstantAdder(targetClass);
66 public ElementValueAdder(ProgramClass targetClass, argument
70 this.targetClass = targetClass;
73 constantAdder = new ConstantAdder(targetClass);
74 elementValuesEditor = new ElementValuesEditor(targetClass,
84 ElementValueAdder(ProgramClass targetClass, ArrayElementValue targetArrayElementValue, boolean replaceElementValues) argument
[all...]
H A DConstantPoolEditor.java35 private ProgramClass targetClass; field in class:ConstantPoolEditor
42 public ConstantPoolEditor(ProgramClass targetClass) argument
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
[all...]
H A DElementValuesEditor.java36 private final ProgramClass targetClass; field in class:ElementValuesEditor
46 public ElementValuesEditor(ProgramClass targetClass, argument
50 this.targetClass = targetClass;
61 public ElementValuesEditor(ProgramClass targetClass, argument
65 this.targetClass = targetClass;
153 elementValue.getMethodName(targetClass));
230 if (elementValues[index].getMethodName(targetClass).equals(elementValueName))
H A DExceptionAdder.java47 public ExceptionAdder(ProgramClass targetClass, argument
50 constantAdder = new ConstantAdder(targetClass);
H A DAttributeAdder.java46 private final ProgramClass targetClass; field in class:AttributeAdder
59 public AttributeAdder(ProgramClass targetClass, argument
62 this(targetClass, null, null, replaceAttributes);
70 public AttributeAdder(ProgramClass targetClass, argument
74 this(targetClass, targetMember, null, replaceAttributes);
82 public AttributeAdder(ProgramClass targetClass, argument
87 this.targetClass = targetClass;
92 constantAdder = new ConstantAdder(targetClass);
93 attributesEditor = new AttributesEditor(targetClass,
[all...]
H A DExceptionInfoAdder.java44 public ExceptionInfoAdder(ProgramClass targetClass, argument
47 constantAdder = new ConstantAdder(targetClass);
H A DInstructionAdder.java47 public InstructionAdder(ProgramClass targetClass, argument
50 constantAdder = new ConstantAdder(targetClass);
H A DLocalVariableInfoAdder.java42 public LocalVariableInfoAdder(ProgramClass targetClass, argument
45 this.constantAdder = new ConstantAdder(targetClass);
H A DLocalVariableTypeInfoAdder.java42 public LocalVariableTypeInfoAdder(ProgramClass targetClass, argument
45 this.constantAdder = new ConstantAdder(targetClass);
H A DConstantAdder.java45 public ConstantAdder(ProgramClass targetClass) argument
47 constantPoolEditor = new ConstantPoolEditor(targetClass);
/external/proguard/src/proguard/optimize/peephole/
H A DClassMerger.java57 private final ProgramClass targetClass; field in class:ClassMerger
66 * @param targetClass the class into which all visited
74 public ClassMerger(ProgramClass targetClass, argument
78 this(targetClass, allowAccessModification, mergeInterfacesAggressively, null);
85 * @param targetClass the class into which all visited
95 public ClassMerger(ProgramClass targetClass, argument
100 this.targetClass = targetClass;
113 // targetClass.getName().equals(CLASS_NAME);
125 System.err.println(" Target class = ["+targetClass
386 introducesUnwantedFields(ProgramClass programClass, ProgramClass targetClass) argument
403 haveAnyIdenticalInitializers(Clazz clazz, Clazz targetClass) argument
424 introducesUnwantedAbstractMethods(Clazz clazz, ProgramClass targetClass) argument
460 overridesAnyMethods(Clazz clazz, Clazz targetClass) argument
481 shadowsAnyMethods(Clazz clazz, Clazz targetClass) argument
509 setTargetClass(Clazz clazz, Clazz targetClass) argument
[all...]
H A DMethodInliner.java73 private ProgramClass targetClass; field in class:MethodInliner
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)
[all...]
/external/proguard/src/proguard/classfile/visitor/
H A DSimilarMemberVisitor.java35 private final Clazz targetClass; field in class:SimilarMemberVisitor
45 * @param targetClass the class in whose hierarchy to look for
61 public SimilarMemberVisitor(Clazz targetClass, argument
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/
H A DClassOptimizationInfo.java39 private Clazz targetClass; field in class:ClassOptimizationInfo
114 public void setTargetClass(Clazz targetClass) argument
116 this.targetClass = targetClass;
122 return targetClass;
/external/webkit/Source/WebKit/win/
H A DWebKitClassFactory.h34 WebKitClassFactory(CLSID targetClass);
H A DWebKitClassFactory.cpp75 WebKitClassFactory::WebKitClassFactory(CLSID targetClass) argument
76 : m_targetClass(targetClass)
/external/javassist/src/main/javassist/compiler/
H A DMemberCodeGen.java450 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 th
537 atMethodCallCore(CtClass targetClass, String mname, ASTList args, boolean isStatic, boolean isSpecial, int aload0pos, MemberResolver.Method found) argument
579 atMethodCallCore2(CtClass targetClass, String mname, boolean isStatic, boolean isSpecial, int aload0pos, int count, MemberResolver.Method found) argument
[all...]
H A DTypeChecker.java627 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, argument
705 = resolver.lookupMethod(targetClass, thisClas
[all...]

Completed in 265 milliseconds

12