HomeSort by relevance Sort by last modified time
    Searched refs:targetClass (Results 1 - 25 of 176) sorted by null

1 2 3 4 5 6 7 8

  /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);
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...]
InterfacesEditor.java 34 private final ProgramClass targetClass;
41 public InterfacesEditor(ProgramClass targetClass)
43 this.targetClass = targetClass;
56 targetClass.u2interfaces =
57 ArrayUtil.add(targetClass.u2interfaces,
58 targetClass.u2interfacesCount++,
73 int interfacesCount = --targetClass.u2interfacesCount;
74 int[] interfaces = targetClass.u2interfaces;
96 int interfacesCount = targetClass.u2interfacesCount
    [all...]
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...]
BootstrapMethodsAttributeAdder.java 34 private final ProgramClass targetClass;
43 public BootstrapMethodsAttributeAdder(ProgramClass targetClass)
45 this.targetClass = targetClass;
46 this.constantPoolEditor = new ConstantPoolEditor(targetClass);
68 new AttributesEditor(targetClass, false);
84 bootstrapMethodInfoAdder = new BootstrapMethodInfoAdder(targetClass,
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;
96 findAttribute(targetClass.u2attributesCount,
97 targetClass.attributes
    [all...]
MemberAdder.java 49 private final ProgramClass targetClass;
61 * @param targetClass the class to which all visited class members will be
64 public MemberAdder(ProgramClass targetClass)
66 this(targetClass, null);
73 * @param targetClass the class to which all visited class members
81 public MemberAdder(ProgramClass targetClass,
85 this.targetClass = targetClass;
89 constantAdder = new ConstantAdder(targetClass);
90 classEditor = new ClassEditor(targetClass);
    [all...]
InterfaceAdder.java 46 public InterfaceAdder(ProgramClass targetClass)
48 constantAdder = new ConstantAdder(targetClass);
49 interfacesEditor = new InterfacesEditor(targetClass);
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...]
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...]
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))
ExceptionAdder.java 47 public ExceptionAdder(ProgramClass targetClass,
50 constantAdder = new ConstantAdder(targetClass);
  /external/proguard/src/proguard/optimize/peephole/
ClassMerger.java 60 private final ProgramClass targetClass;
71 * @param targetClass the class into which all visited
79 public ClassMerger(ProgramClass targetClass,
83 this(targetClass, allowAccessModification, mergeInterfacesAggressively, null);
90 * @param targetClass the class into which all visited
100 public ClassMerger(ProgramClass targetClass,
105 this.targetClass = targetClass;
118 // targetClass.getName().equals(CLASS_NAME);
130 System.err.println(" Target class = ["+targetClass.getName()+"]")
    [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/mockito/cglib-and-asm/src/org/mockito/cglib/reflect/
ConstructorDelegate.java 39 public static ConstructorDelegate create(Class targetClass, Class iface) {
41 gen.setTargetClass(targetClass);
52 private Class targetClass;
62 public void setTargetClass(Class targetClass) {
63 this.targetClass = targetClass;
67 setNamePrefix(targetClass.getName());
68 Object key = KEY_FACTORY.newInstance(iface.getName(), targetClass.getName());
73 return targetClass.getClassLoader();
77 setNamePrefix(targetClass.getName())
    [all...]
  /frameworks/base/core/java/android/hardware/camera2/dispatch/
DuckTypingDispatcher.java 42 * @param targetClass destination dispatch class, methods will be converted to this class's
44 public DuckTypingDispatcher(Dispatchable<T> target, Class<T> targetClass) {
45 checkNotNull(targetClass, "targetClass must not be null");
48 mDuck = new MethodNameInvoker<T>(target, targetClass);
  /external/jacoco/org.jacoco.core.test/src/org/jacoco/core/test/validation/
ExplicitInitialFrameTest.java 28 protected void run(final Class<?> targetClass) throws Exception {
29 final Object instance = targetClass.newInstance();
ImplicitDefaultConstructorTest.java 28 protected void run(final Class<?> targetClass) throws Exception {
29 targetClass.newInstance();
PrivateEmptyDefaultConstructorTest.java 28 protected void run(final Class<?> targetClass) throws Exception {
30 targetClass.getField("CONST").get(null);
ProbesBeforeSuperConstructorTest.java 28 protected void run(final Class<?> targetClass) throws Exception {
29 targetClass.newInstance();
FieldInitializationInTwoConstructorsTest.java 29 protected void run(final Class<?> targetClass) throws Exception {
30 targetClass.newInstance();
ImplicitFieldInitializationTest.java 28 protected void run(final Class<?> targetClass) throws Exception {
29 targetClass.newInstance();
InterfaceClassInitializerTest.java 28 protected void run(final Class<?> targetClass) throws Exception {
30 targetClass.getField("CONST1").get(null);
  /external/proguard/src/proguard/optimize/info/
ClassOptimizationInfo.java 41 private Clazz targetClass;
140 public void setTargetClass(Clazz targetClass)
142 this.targetClass = targetClass;
148 return targetClass;
  /external/jacoco/org.jacoco.core.test/src/org/jacoco/core/test/validation/java8/
LambdaExpressionsTest.java 28 protected void run(final Class<?> targetClass) throws Exception {
29 final Object instance = targetClass.newInstance();

Completed in 186 milliseconds

1 2 3 4 5 6 7 8