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

1 2 3 4 5 6 7

  /frameworks/base/tools/layoutlib/bridge/src/android/animation/
PropertyValuesHolder_Delegate.java 39 /*package*/ static int nGetIntMethod(Class<?> targetClass, String methodName) {
45 /*package*/ static int nGetFloatMethod(Class<?> targetClass, String methodName) {
  /libcore/luni/src/main/java/java/lang/
StackTraceElement.java 37 String methodName;
65 methodName = method;
107 if ((methodName == null) || (castObj.methodName == null)) {
174 return (methodName == null) ? "<unknown method>" : methodName;
180 * Either both methodName and declaringClass are null, or neither are
183 if (methodName == null) {
187 // declaringClass never null if methodName is non-null
188 return methodName.hashCode() ^ declaringClass.hashCode()
    [all...]
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/X11/extensions/
lbximage.h 39 char *methodName;
74 char *methodName;
  /frameworks/base/core/jni/
android_animation_PropertyValuesHolder.cpp 33 JNIEnv* env, jclass pvhClass, jclass targetClass, jstring methodName)
35 const char *nativeString = env->GetStringUTFChars(methodName, 0);
37 env->ReleaseStringUTFChars(methodName, nativeString);
42 JNIEnv* env, jclass pvhClass, jclass targetClass, jstring methodName)
44 const char *nativeString = env->GetStringUTFChars(methodName, 0);
46 env->ReleaseStringUTFChars(methodName, nativeString);
android_view_PointerIcon.cpp 113 #define GET_STATIC_METHOD_ID(var, clazz, methodName, methodDescriptor) \
114 var = env->GetStaticMethodID(clazz, methodName, methodDescriptor); \
115 LOG_FATAL_IF(! var, "Unable to find method " methodName);
117 #define GET_METHOD_ID(var, clazz, methodName, methodDescriptor) \
118 var = env->GetMethodID(clazz, methodName, methodDescriptor); \
119 LOG_FATAL_IF(! var, "Unable to find method " methodName);
  /external/javassist/src/main/javassist/convert/
TransformAccessArrayField.java 128 String methodName = getMethodName(opcode);
129 if (methodName != null) {
149 int methodref = cp.addMethodrefInfo(mi, methodName, signature);
166 String methodName = null;
169 methodName = names.objectRead();
172 methodName = names.byteOrBooleanRead();
175 methodName = names.charRead();
178 methodName = names.doubleRead();
181 methodName = names.floatRead();
184 methodName = names.intRead()
    [all...]
TransformReadField.java 29 protected String methodClassname, methodName;
32 String methodClassname, String methodName)
38 this.methodName = methodName;
86 int methodref = cp.addMethodrefInfo(mi, methodName, type);
  /libcore/support/src/test/java/tests/io/
MockOs.java 86 * {@code methodName}. If empty, calls will be handled by the delegate.
88 public Deque<InvocationHandler> getHandlers(String methodName) {
90 Deque<InvocationHandler> result = threadFaults.get(methodName);
93 threadFaults.put(methodName, result);
102 public void enqueueNormal(String methodName, int count) {
103 Deque<InvocationHandler> handlers = getHandlers(methodName);
109 public void enqueueFault(String methodName) {
110 enqueueFault(methodName, OsConstants.EIO);
113 public void enqueueFault(String methodName, final int errno) {
114 getHandlers(methodName).add(new InvocationHandler()
    [all...]
  /external/proguard/src/proguard/obfuscate/
MappingProcessor.java 68 * @param methodName the original external method name.
76 String methodName,
MultiMappingProcessor.java 81 String methodName,
91 methodName,
  /external/webkit/Tools/DumpRenderTree/TestNetscapePlugIn/Tests/
NPRuntimeRemoveProperty.cpp 41 bool hasMethod(NPIdentifier methodName)
43 return methodName == pluginTest()->NPN_GetStringIdentifier("testRemoveProperty");
46 bool invoke(NPIdentifier methodName, const NPVariant* arguments, uint32_t argumentCount, NPVariant* result)
48 assert(methodName == pluginTest()->NPN_GetStringIdentifier("testRemoveProperty"));
  /libcore/dalvik/src/main/java/dalvik/annotation/
TestTarget.java 39 String methodName() default "";
43 * {@code methodName} is not accurate enough. E.g. for
44 * {@link java.util.regex.Pattern#compile(String)} {@code methodName} is not
  /dalvik/vm/oo/
Object.cpp 208 static inline int compareMethodHelper(Method* method, const char* methodName,
214 if (strcmp(methodName, method->name) != 0) {
469 const char* methodName, const char* descriptor)
472 methodName, descriptor);
490 const char* methodName)
497 if (strcmp(methods[i].name, methodName) == 0)
511 Method* dvmFindVirtualMethod(const ClassObject* clazz, const char* methodName,
514 return findMethodInListByProto(clazz, METHOD_VIRTUAL, false, methodName,
525 const char* methodName, const char* descriptor)
528 methodName, descriptor)
    [all...]
  /dalvik/tools/dexdeps/src/com/android/dexdeps/
MethodRef.java 27 String methodName) {
31 mMethodName = methodName;
  /external/javassist/src/main/javassist/
CtPrimitiveType.java 32 String methodName, String mDesc, int opcode, int atype,
37 getMethodName = methodName;
  /frameworks/base/test-runner/tests/src/android/test/suitebuilder/annotation/
HasMethodAnnotationTest.java 39 String methodName,
42 Method method = aClass.getMethod(methodName);
  /external/javassist/src/main/javassist/bytecode/
EnclosingMethodAttribute.java 42 * @param methodName the name of the enclosing method.
46 String methodName, String methodDesc) {
49 int ni = cp.addNameAndTypeInfo(methodName, methodDesc);
101 public String methodName() {
131 methodName(), methodDescriptor());
  /external/javassist/src/test/test/javassist/bytecode/analysis/
ErrorFinder.java 51 String methodName = clazz.getName() + "." + method.getName() + method.getSignature();
52 System.out.println("START: " + methodName);
58 System.out.println("SUCCESS: " + methodName + " - " + (System.currentTimeMillis() - time));
60 System.out.println("FAIL: " + methodName + " - " + (e.getMessage() == null ? e.getClass().getName() : e.getMessage()));
  /external/webkit/Source/WebKit2/Shared/Plugins/
NPObjectProxy.h 64 bool hasMethod(NPIdentifier methodName);
65 bool invoke(NPIdentifier methodName, const NPVariant* arguments, uint32_t argumentCount, NPVariant* result);
77 static bool NP_HasMethod(NPObject*, NPIdentifier methodName);
78 static bool NP_Invoke(NPObject*, NPIdentifier methodName, const NPVariant* arguments, uint32_t argumentCount, NPVariant* result);
  /frameworks/base/tools/layoutlib/create/tests/com/android/tools/layoutlib/create/
ClassHasNativeVisitorTest.java 70 protected void setHasNativeMethods(boolean hasNativeMethods, String methodName) {
72 mMethodsFound.add(methodName);
74 super.setHasNativeMethods(hasNativeMethods, methodName);
  /sdk/swtmenubar/src-darwin/com/android/menubar/internal/
MenuBarEnhancerCocoa.java 279 private static Object invoke(Class<?> clazz, String methodName, Object[] args) {
280 return invoke(clazz, null, methodName, args);
283 private static Object invoke(Class<?> clazz, Object target, String methodName, Object[] args) {
299 Method method = clazz.getMethod(methodName, signature);
315 private Object invoke(Class<?> cls, String methodName) {
316 return invoke(cls, methodName, (Class<?>[]) null, (Object[]) null);
319 private Object invoke(Class<?> cls, String methodName, Class<?>[] paramTypes,
322 Method m = cls.getDeclaredMethod(methodName, paramTypes);
329 private Object invoke(Object obj, String methodName) {
330 return invoke(obj, methodName, (Class<?>[]) null, (Object[]) null)
    [all...]
  /frameworks/base/core/tests/bluetoothtests/src/android/bluetooth/
BluetoothTestUtils.java 777 String methodName;
779 methodName = String.format("pair(device=%s)", device);
781 methodName = String.format("acceptPair(device=%s)", device);
785 fail(String.format("%s bluetooth not enabled", methodName));
807 fail(String.format("%s invalid state: state=%d", methodName, state));
817 writeOutput(String.format("%s completed in %d ms", methodName,
820 writeOutput(String.format("%s completed", methodName));
    [all...]
  /frameworks/base/services/jni/
com_android_server_PowerManagerService.cpp 57 static bool checkAndClearExceptionFromCallback(JNIEnv* env, const char* methodName) {
59 LOGE("An exception was thrown by callback '%s'.", methodName);
147 #define GET_METHOD_ID(var, clazz, methodName, methodDescriptor) \
148 var = env->GetMethodID(clazz, methodName, methodDescriptor); \
149 LOG_FATAL_IF(! var, "Unable to find method " methodName);
  /frameworks/base/core/java/android/widget/
RemoteViews.java 575 String methodName;
579 ReflectionActionWithoutParams(int viewId, String methodName) {
581 this.methodName = methodName;
586 this.methodName = in.readString();
592 out.writeString(this.methodName);
603 method = klass.getMethod(this.methodName);
606 + this.methodName + "()");
612 + this.methodName + "()");
619 + this.methodName + "()")
    [all...]
  /dalvik/tools/dmtracedump/
TraceDump.c 164 const char* methodName;
301 const char *className, const char *methodName,
307 method->methodName = methodName;
347 if (methodA->methodName == NULL || methodB->methodName == NULL) {
356 result = strcmp(methodA->methodName, methodB->methodName);
386 if (methodA->methodName == NULL || methodB->methodName == NULL)
    [all...]

Completed in 1127 milliseconds

1 2 3 4 5 6 7