Searched defs:targetClass (Results 1 - 5 of 5) sorted by relevance

/frameworks/base/core/java/android/hardware/camera2/dispatch/
H A DDuckTypingDispatcher.java42 * @param targetClass destination dispatch class, methods will be converted to this class's
44 public DuckTypingDispatcher(Dispatchable<T> target, Class<T> targetClass) { argument
45 checkNotNull(targetClass, "targetClass must not be null");
48 mDuck = new MethodNameInvoker<T>(target, targetClass);
H A DMethodNameInvoker.java41 * @param targetClass destination dispatch class, the invoked methods will be from this class
43 public MethodNameInvoker(Dispatchable<T> target, Class<T> targetClass) { argument
44 mTargetClass = targetClass;
51 * <p>If more than one method exists in {@code targetClass}, the first method with the right
/frameworks/base/tools/layoutlib/bridge/src/android/animation/
H A DPropertyValuesHolder_Delegate.java39 /*package*/ static long nGetIntMethod(Class<?> targetClass, String methodName) { argument
45 /*package*/ static long nGetFloatMethod(Class<?> targetClass, String methodName) { argument
51 /*package*/ static long nGetMultipleIntMethod(Class<?> targetClass, String methodName, argument
58 /*package*/ static long nGetMultipleFloatMethod(Class<?> targetClass, String methodName, argument
/frameworks/base/core/jni/
H A Dandroid_animation_PropertyValuesHolder.cpp33 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, argument
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, methodNam
32 android_animation_PropertyValuesHolder_getIntMethod( JNIEnv* env, jclass pvhClass, jclass targetClass, jstring methodName) argument
41 android_animation_PropertyValuesHolder_getFloatMethod( JNIEnv* env, jclass pvhClass, jclass targetClass, jstring methodName) argument
64 android_animation_PropertyValuesHolder_getMultipleFloatMethod( JNIEnv* env, jclass pvhClass, jclass targetClass, jstring methodName, jint parameterCount) argument
70 android_animation_PropertyValuesHolder_getMultipleIntMethod( JNIEnv* env, jclass pvhClass, jclass targetClass, jstring methodName, jint parameterCount) argument
[all...]
/frameworks/base/core/java/android/animation/
H A DPropertyValuesHolder.java663 * @param targetClass The class to search for the method
672 private Method getPropertyFunction(Class targetClass, String prefix, Class valueType) { argument
679 returnVal = targetClass.getMethod(methodName, args);
699 returnVal = targetClass.getMethod(methodName, args);
715 " not found on target class " + targetClass);
725 * utility function to request the Method from the targetClass directly.
726 * @param targetClass The Class on which the requested method should exist.
732 private Method setupSetterOrGetter(Class targetClass, argument
740 HashMap<String, Method> propertyMap = propertyMapMap.get(targetClass);
749 setterOrGetter = getPropertyFunction(targetClass, prefi
764 setupSetter(Class targetClass) argument
772 setupGetter(Class targetClass) argument
1176 setupSetter(Class targetClass) argument
1314 setupSetter(Class targetClass) argument
1420 setupSetter(Class targetClass) argument
1527 setupSetter(Class targetClass) argument
1605 nGetIntMethod(Class targetClass, String methodName) argument
1606 nGetFloatMethod(Class targetClass, String methodName) argument
1607 nGetMultipleIntMethod(Class targetClass, String methodName, int numParams) argument
1609 nGetMultipleFloatMethod(Class targetClass, String methodName, int numParams) argument
[all...]

Completed in 1747 milliseconds