HomeSort by relevance Sort by last modified time
    Searched full:targetclass (Results 1 - 25 of 253) sorted by null

1 2 3 4 5 6 7 8 91011

  /external/proguard/src/proguard/classfile/editor/
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...]
SubclassToAdder.java 35 private final Clazz targetClass;
42 public SubclassToAdder(Clazz targetClass)
44 this.targetClass = targetClass;
52 targetClass.addSubClass(programClass);
58 targetClass.addSubClass(libraryClass);
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...]
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;
96 findAttribute(targetClass.u2attributesCount,
97 targetClass.attributes
    [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...]
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...]
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,
AttributeAdder.java 50 private final ProgramClass targetClass;
63 public AttributeAdder(ProgramClass targetClass,
66 this(targetClass, null, null, replaceAttributes);
74 public AttributeAdder(ProgramClass targetClass,
78 this(targetClass, targetMember, null, replaceAttributes);
86 public AttributeAdder(ProgramClass targetClass,
91 this.targetClass = targetClass;
96 constantAdder = new ConstantAdder(targetClass);
97 attributesEditor = new AttributesEditor(targetClass,
    [all...]
  /art/test/1914-get-local-instance/
expected.txt 7 Running public void art.Test1914$TargetClass.InstanceMethod(java.lang.Runnable) with "GetThis" on remote thread.
8 "GetThis" on public void art.Test1914$TargetClass.InstanceMethod(java.lang.Runnable) got value: TargetClass("InstanceMethodObject")
9 Value is 'TargetClass("InstanceMethodObject")' (class: class art.Test1914$TargetClass)
10 Running public native void art.Test1914$TargetClass.NativeInstanceMethod(java.lang.Runnable) with "GetThis" on remote thread.
11 "GetThis" on public native void art.Test1914$TargetClass.NativeInstanceMethod(java.lang.Runnable) got value: TargetClass("NativeInstanceMethodObject")
12 Value is 'TargetClass("NativeInstanceMethodObject")' (class: class art.Test1914$TargetClass)
    [all...]
  /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/robolectric-shadows/sandbox/src/main/java/org/robolectric/internal/bytecode/
ProxyMaker.java 43 public <T> T createProxy(Class<T> targetClass, T target) {
44 return factories.get(targetClass).createProxy(targetClass, target);
47 <T> Factory createProxyFactory(Class<T> targetClass) {
48 Type targetType = Type.getType(targetClass);
57 for (java.lang.reflect.Method method : targetClass.getMethods()) {
65 String targetMethod = methodMapper.getName(targetClass.getName(), method.getName());
77 final Class<?> proxyClass = UNSAFE.defineAnonymousClass(targetClass, writer.toByteArray(), null);
82 @Override public <E> E createProxy(Class<E> targetClass, E target) {
88 return targetClass.cast(proxy)
    [all...]
  /developers/build/prebuilts/gradle/XYZTouristAttractions/Application/src/main/res/transition-v21/
fade.xml 21 <target android:targetClass="android.widget.TextView" />
22 <target android:targetClass="android.widget.FrameLayout" />
23 <target android:targetClass="android.widget.LinearLayout" />
24 <target android:targetClass="android.widget.ImageView" />
window_enter.xml 22 <target android:targetClass="android.widget.TextView" />
23 <target android:targetClass="android.widget.FrameLayout" />
24 <target android:targetClass="android.widget.LinearLayout" />
25 <target android:targetClass="android.widget.ImageView" />
window_return.xml 30 <target android:targetClass="android.widget.TextView" />
31 <target android:targetClass="android.widget.FrameLayout" />
32 <target android:targetClass="android.widget.LinearLayout" />
33 <target android:targetClass="android.widget.ImageView" />
  /developers/samples/android/wearable/wear/XYZTouristAttractions/Application/src/main/res/transition-v21/
fade.xml 21 <target android:targetClass="android.widget.TextView" />
22 <target android:targetClass="android.widget.FrameLayout" />
23 <target android:targetClass="android.widget.LinearLayout" />
24 <target android:targetClass="android.widget.ImageView" />
window_enter.xml 22 <target android:targetClass="android.widget.TextView" />
23 <target android:targetClass="android.widget.FrameLayout" />
24 <target android:targetClass="android.widget.LinearLayout" />
25 <target android:targetClass="android.widget.ImageView" />
window_return.xml 30 <target android:targetClass="android.widget.TextView" />
31 <target android:targetClass="android.widget.FrameLayout" />
32 <target android:targetClass="android.widget.LinearLayout" />
33 <target android:targetClass="android.widget.ImageView" />
  /development/samples/browseable/XYZTouristAttractions/Application/res/transition-v21/
fade.xml 21 <target android:targetClass="android.widget.TextView" />
22 <target android:targetClass="android.widget.FrameLayout" />
23 <target android:targetClass="android.widget.LinearLayout" />
24 <target android:targetClass="android.widget.ImageView" />
window_enter.xml 22 <target android:targetClass="android.widget.TextView" />
23 <target android:targetClass="android.widget.FrameLayout" />
24 <target android:targetClass="android.widget.LinearLayout" />
25 <target android:targetClass="android.widget.ImageView" />
window_return.xml 30 <target android:targetClass="android.widget.TextView" />
31 <target android:targetClass="android.widget.FrameLayout" />
32 <target android:targetClass="android.widget.LinearLayout" />
33 <target android:targetClass="android.widget.ImageView" />
  /external/jacoco/org.jacoco.core.test/src/org/jacoco/core/test/validation/
AnnotationInitializerTest.java 30 protected void run(Class<?> targetClass) throws Exception {
34 assertEquals(1, targetClass.getDeclaredFields().length);
35 assertEquals(1, targetClass.getDeclaredMethods().length);
38 targetClass.getField("CONST").get(null);
  /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,
  /cts/tests/tests/transition/res/transition/
target_classes.xml 18 <target android:targetClass="android.widget.TextView"/>
19 <target android:targetClass="android.widget.ImageView"/>

Completed in 360 milliseconds

1 2 3 4 5 6 7 8 91011