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

1 2 3 4 5 6 7 8 91011

  /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...]
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,
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 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...]
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...]
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 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...]
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 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...]
  /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,
  /libcore/ojluni/src/main/java/sun/reflect/
Reflection.java 123 Class<?> targetClass = (target == null ? memberClass : target.getClass());
124 if (targetClass != currentClass) {
130 if (!isSubclassOf(targetClass, currentClass)) {
  /packages/apps/EmergencyInfo/src/com/android/emergency/util/
PreferenceUtils.java 91 String targetClass = packageName + SETTINGS_SUGGESTION_ACTIVITY_ALIAS;
92 ComponentName name = new ComponentName(packageName, 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...]
TargetClassChanger.java 102 Clazz targetClass = ClassMerger.getTargetClass(programClass);
103 if (targetClass != null)
  /external/guice/extensions/persist/src/com/google/inject/persist/jpa/
JpaLocalTxnInterceptor.java 108 Class<?> targetClass = methodInvocation.getThis().getClass();
113 transactional = targetClass.getAnnotation(Transactional.class);
  /external/jacoco/org.jacoco.core.test/src/org/jacoco/core/runtime/
ModifiedSystemClassRuntimeTest.java 119 final Class<?> targetClass = new TargetLoader().add(name, source);
122 final Field f = targetClass.getField("$jacocoAccess");
  /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.examples/src/org/jacoco/examples/
CoreTutorial.java 129 final Class<?> targetClass = memoryClassLoader.loadClass(targetName);
132 final Runnable targetInstance = (Runnable) targetClass.newInstance();
  /external/universal-tween-engine/java/api/src/aurelienribon/tweenengine/
Tween.java 341 private Class<?> targetClass;
375 targetClass = null;
397 this.targetClass = target != null ? findTargetClass() : null;
452 * @param targetClass A class registered with an accessor.
455 public Tween cast(Class<?> targetClass) {
457 this.targetClass = targetClass;
773 return targetClass;
784 accessor = (TweenAccessor<Object>) registeredAccessors.get(targetClass);
  /frameworks/data-binding/compiler/src/main/java/android/databinding/tool/expr/
FieldAccessExpr.java 222 final ModelClass targetClass = expr.getResolvedType();
223 BindingGetterCall getter = setterStore.getGetterCall(mName, targetClass, null, null);
225 getter = setterStore.getGetterCall("android:" + mName, targetClass, null, null);
228 mName, targetClass);
  /packages/apps/Settings/src/com/android/settings/search/indexing/
PreIndexDataCollector.java 157 final String targetClass = cursor.getString(
167 sir.intentTargetClass = targetClass;
254 final String targetClass = cursor.getString(
272 data.intentTargetClass = targetClass;
  /packages/apps/Settings/tests/robotests/src/com/android/settings/search/indexing/
IndexDataConverterTest.java 67 private static final String targetClass = "target class";
122 assertThat(row.intentTargetClass).isEqualTo(targetClass);
322 data.intentTargetClass = targetClass;
337 sir.intentTargetClass = targetClass;
  /packages/apps/SettingsIntelligence/src/com/android/settings/intelligence/search/indexing/
PreIndexDataCollector.java 242 final String targetClass = cursor.getString(
260 data.intentTargetClass = targetClass;

Completed in 993 milliseconds

1 2 3 4 5 6 7 8 91011