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

12 3 4 5 6 7 8 91011

  /frameworks/support/transition/src/androidTest/res/transition/
target_classes.xml 19 <target android:targetClass="android.widget.TextView"/>
20 <target android:targetClass="android.widget.ImageView"/>
  /packages/apps/Settings/res/xml/
testing_settings.xml 25 android:targetClass="com.android.settings.RadioInfo" />
32 android:targetClass="com.android.settings.UsageStatsActivity" />
40 android:targetClass="com.android.settings.Settings$WifiInfoActivity" />
48 android:targetClass="com.android.stk.StkSettings" />
testing_wifi_settings.xml 26 android:targetClass="com.android.settings.Settings$WifiAPITestActivity" />
34 android:targetClass="com.android.settings.wifi.WifiConfigInfo" />
42 android:targetClass="com.android.settings.wifi.WifiStatusTest" />
  /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;
  /frameworks/layoutlib/bridge/src/android/animation/
PropertyValuesHolder_Delegate.java 64 private static long registerMethod(Class<?> targetClass, String methodName, Class[] types,
67 String methodIndexName = String.format("%1$s.%2$s#%3$d", targetClass.getSimpleName(),
84 method = targetClass.getDeclaredMethod(methodName, args);
115 /*package*/ static long nGetIntMethod(Class<?> targetClass, String methodName) {
116 return nGetMultipleIntMethod(targetClass, methodName, 1);
120 /*package*/ static long nGetFloatMethod(Class<?> targetClass, String methodName) {
121 return nGetMultipleFloatMethod(targetClass, methodName, 1);
125 /*package*/ static long nGetMultipleIntMethod(Class<?> targetClass, String methodName,
127 return registerMethod(targetClass, methodName, INTEGER_VARIANTS, numParams);
131 /*package*/ static long nGetMultipleFloatMethod(Class<?> targetClass, String methodName
    [all...]
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/compat/
CompatUtils.java 42 public static Method getMethod(final Class<?> targetClass, final String name,
44 if (targetClass == null || TextUtils.isEmpty(name)) {
48 return targetClass.getMethod(name, parameterTypes);
55 public static Field getField(final Class<?> targetClass, final String name) {
56 if (targetClass == null || TextUtils.isEmpty(name)) {
60 return targetClass.getField(name);
67 public static Constructor<?> getConstructor(final Class<?> targetClass,
69 if (targetClass == null || types == null) {
73 return targetClass.getConstructor(types);
137 public ClassWrapper(final Class<?> targetClass) {
    [all...]
  /frameworks/base/core/jni/
android_animation_PropertyValuesHolder.cpp 33 JNIEnv* env, jclass pvhClass, jclass targetClass, jstring methodName)
36 jmethodID mid = env->GetMethodID(targetClass, nativeString, "(I)V");
42 JNIEnv* env, jclass pvhClass, jclass targetClass, jstring methodName)
45 jmethodID mid = env->GetMethodID(targetClass, nativeString, "(F)V");
50 static jlong getMultiparameterMethod(JNIEnv* env, jclass targetClass, jstring methodName,
58 jmethodID mid = env->GetMethodID(targetClass, nativeString, signature);
65 JNIEnv* env, jclass pvhClass, jclass targetClass, jstring methodName, jint parameterCount)
67 return getMultiparameterMethod(env, targetClass, methodName, parameterCount, 'F');
71 JNIEnv* env, jclass pvhClass, jclass targetClass, jstring methodName, jint parameterCount)
73 return getMultiparameterMethod(env, targetClass, methodName, parameterCount, 'I')
    [all...]
  /external/proguard/src/proguard/optimize/peephole/
MethodInliner.java 72 private ProgramClass targetClass;
150 System.err.println(" Target class = ["+targetClass.getName()+"]");
151 System.err.println(" Target method = ["+targetMethod.getName(targetClass)+targetMethod.getDescriptor(targetClass)+"]");
164 targetMethod.accept(targetClass, new ClassPrinter());
184 targetClass = (ProgramClass)clazz;
186 constantAdder = new ConstantAdder(targetClass);
187 exceptionInfoAdder = new ExceptionInfoAdder(targetClass, codeAttributeComposer);
198 targetClass = null;
228 targetClass.getName()+"."+targetMethod.getName(targetClass)+targetMethod.getDescriptor(targetClass)+"]")
    [all...]
  /external/proguard/src/proguard/classfile/editor/
InterfaceAdder.java 46 public InterfaceAdder(ProgramClass targetClass)
48 constantAdder = new ConstantAdder(targetClass);
49 interfacesEditor = new InterfacesEditor(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))
ExceptionAdder.java 47 public ExceptionAdder(ProgramClass targetClass,
50 constantAdder = new ConstantAdder(targetClass);
ExceptionInfoAdder.java 44 public ExceptionInfoAdder(ProgramClass targetClass,
47 constantAdder = new ConstantAdder(targetClass);
InstructionAdder.java 47 public InstructionAdder(ProgramClass targetClass,
50 constantAdder = new ConstantAdder(targetClass);
LocalVariableInfoAdder.java 42 public LocalVariableInfoAdder(ProgramClass targetClass,
45 this.constantAdder = new ConstantAdder(targetClass);
LocalVariableTypeInfoAdder.java 42 public LocalVariableTypeInfoAdder(ProgramClass targetClass,
45 this.constantAdder = new ConstantAdder(targetClass);
ParameterInfoAdder.java 42 public ParameterInfoAdder(ProgramClass targetClass,
45 this.constantAdder = new ConstantAdder(targetClass);
BootstrapMethodInfoAdder.java 44 public BootstrapMethodInfoAdder(ProgramClass targetClass,
47 this.constantAdder = new ConstantAdder(targetClass);
  /external/jacoco/org.jacoco.core.test/src/org/jacoco/core/test/validation/
InterfaceClassInitializerTest.java 28 protected void run(final Class<?> targetClass) throws Exception {
30 targetClass.getField("CONST1").get(null);
  /external/jacoco/org.jacoco.core.test/src-java8/org/jacoco/core/test/validation/
LambdaInInterfaceTest.java 28 protected void run(final Class<?> targetClass) throws Exception {
29 ((Runnable) targetClass.getField("RUN").get(null)).run();
  /art/test/1914-get-local-instance/src/art/
Test1914.java 50 public static class TargetClass {
52 public String toString() { return String.format("TargetClass(\"%s\")", id); }
53 public TargetClass(String id) { this.id = id; }
195 new TestCase(new TargetClass("InstanceMethodObject"),
196 getMethod(TargetClass.class, "InstanceMethod")),
197 new TestCase(new TargetClass("NativeInstanceMethodObject"),
198 getMethod(TargetClass.class, "NativeInstanceMethod")),
  /external/testng/src/main/java/org/testng/internal/
PropertyUtils.java 46 private static PropertyDescriptor getPropertyDescriptor(Class targetClass, String propertyName) {
48 if (targetClass == null) {
52 BeanInfo beanInfo = Introspector.getBeanInfo(targetClass);
  /frameworks/base/tests/HierarchyViewerTest/src/com/android/test/hierarchyviewer/
MainActivityTest.java 41 private Object invokeMethod(Class targetClass, Object target, String methodName, Object... params)
47 Method method = targetClass.getDeclaredMethod(methodName, paramClasses);
  /packages/apps/SettingsIntelligence/src/com/android/settings/intelligence/search/indexing/
DatabaseIndexingUtils.java 61 String targetClass, String key) {
63 if (!TextUtils.isEmpty(targetPackage) && !TextUtils.isEmpty(targetClass)) {
64 final ComponentName component = new ComponentName(targetPackage, targetClass);
  /packages/apps/SpareParts/res/xml/
spare_parts.xml 29 android:targetClass="com.android.settings.fuelgauge.PowerUsageSummary" />
37 android:targetClass="com.android.settings.BatteryInfo" />
45 android:targetClass="com.android.settings.UsageStats" />
  /frameworks/base/core/java/android/animation/
PropertyValuesHolder.java     [all...]

Completed in 762 milliseconds

12 3 4 5 6 7 8 91011