HomeSort by relevance Sort by last modified time
    Searched refs:methodName (Results 26 - 50 of 315) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/proguard/src/proguard/obfuscate/
MultiMappingProcessor.java 81 String methodName,
91 methodName,
  /external/smali/deodexerant/
deodexerant.c 38 const char* methodName;
77 printf("%s->%s%s\n", item->classDescriptor, item->methodName, item->methodSignature);
  /frameworks/base/test-runner/tests/src/android/test/suitebuilder/annotation/
HasMethodAnnotationTest.java 39 String methodName,
42 Method method = aClass.getMethod(methodName);
HasAnnotationTest.java 44 private boolean hasExampleAnnotation(Class<? extends TestCase> aClass, String methodName)
46 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()));
  /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);
  /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...]
  /external/javassist/src/main/javassist/convert/
TransformReadField.java 29 protected String methodClassname, methodName;
32 String methodClassname, String methodName)
38 this.methodName = methodName;
86 int methodref = cp.addMethodrefInfo(mi, methodName, type);
TransformWriteField.java 24 String methodClassname, String methodName)
26 super(next, field, methodClassname, methodName);
63 int methodref = cp.addMethodrefInfo(mi, methodName, type);
  /external/smali/dexlib/src/main/java/org/jf/dexlib/Code/Analysis/
DeodexUtil.java 92 String methodName = m.group(1);
105 return parseAndResolveMethod(accessingClass, instanceClass, methodName, methodParams, methodRet);
109 String methodName, String methodParams, String methodRet) {
110 StringIdItem methodNameItem = StringIdItem.lookupStringIdItem(dexFile, methodName);
284 public final String methodName;
290 InlineMethod(int methodType, String classType, String methodName, String parameters,
294 this.methodName = methodName;
309 this.methodIdItem = deodexUtil.parseAndResolveMethod(classDef, classDef, methodName, parameters,
314 return String.format("%s->%s(%s)%s", classType, methodName, parameters, returnType)
    [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...]
  /frameworks/base/core/jni/
android_view_PointerIcon.cpp 114 #define GET_STATIC_METHOD_ID(var, clazz, methodName, methodDescriptor) \
115 var = env->GetStaticMethodID(clazz, methodName, methodDescriptor); \
116 LOG_FATAL_IF(! var, "Unable to find method " methodName);
118 #define GET_METHOD_ID(var, clazz, methodName, methodDescriptor) \
119 var = env->GetMethodID(clazz, methodName, methodDescriptor); \
120 LOG_FATAL_IF(! var, "Unable to find method " methodName);
  /dalvik/vm/oo/
Object.h 590 const char* methodName, const char* signature);
592 const char* methodName, const char* signature);
594 const char* methodName);
595 Method* dvmFindDirectMethod(const ClassObject* clazz, const char* methodName,
597 Method* dvmFindVirtualMethod(const ClassObject* clazz, const char* methodName,
605 const char* methodName, const char* descriptor);
607 const char* methodName, const char* signature);
609 const char* methodName, const DexProto* proto);
611 const char* methodName, const DexProto* proto);
612 Method* dvmFindMethodHier(const ClassObject* clazz, const char* methodName,
    [all...]
  /external/easymock/src/org/easymock/internal/
MethodSerializationWrapper.java 43 private String methodName;
49 methodName = m.getName();
77 Method m = clazz.getMethod(methodName, parameterTypes);
  /external/emma/core/java12/com/vladium/jcd/lib/
Types.java 363 public static String fullMethodDescriptorToUserName (final String classJavaName, String methodName, final String methoddescriptor)
365 if ("<init>".equals (methodName))
366 methodName = simpleClassName (classJavaName);
367 if ("<clinit>".equals (methodName))
368 methodName = "<static class initializer>";
370 return methodName + ' ' + methodDescriptorToUserName (methoddescriptor);
374 public static String fullMethodDescriptorToFullUserName (final String classJavaName, String methodName, final String methoddescriptor)
376 if ("<init>".equals (methodName))
377 methodName = simpleClassName (classJavaName);
378 if ("<clinit>".equals (methodName))
    [all...]
  /cts/tools/tradefed-host/src/com/android/cts/tradefed/testtype/
ITestPackageDef.java 44 * @param methodName the optional test method to restrict this run to, or <code>null</code> to
98 * @param methodName the optional test method to restrict this run to, or <code>null</code> to
101 public void setClassName(String className, String methodName);
  /external/chromium_org/third_party/WebKit/Source/testing/plugin/
PluginTest.h 46 DEFINE_HAS_MEMBER_CHECK(hasMethod, bool, (NPIdentifier methodName));
47 DEFINE_HAS_MEMBER_CHECK(invoke, bool, (NPIdentifier methodName, const NPVariant*, uint32_t, NPVariant* result));
78 bool NPN_Invoke(NPObject *, NPIdentifier methodName, const NPVariant *args, uint32_t argCount, NPVariant *result);
146 bool hasMethod(NPIdentifier methodName)
152 bool invoke(NPIdentifier methodName, const NPVariant*, uint32_t, NPVariant* result)
211 static bool NP_HasMethod(NPObject* npObject, NPIdentifier methodName)
213 return static_cast<T*>(npObject)->hasMethod(methodName);
216 static bool NP_Invoke(NPObject* npObject, NPIdentifier methodName, const NPVariant* arguments, uint32_t argumentCount, NPVariant* result)
218 return static_cast<T*>(npObject)->invoke(methodName, arguments, argumentCount, result);
  /external/chromium_org/third_party/WebKit/Source/testing/plugin/Tests/
NPRuntimeRemoveProperty.cpp 97 bool hasMethod(NPIdentifier methodName)
99 if (identifierIs(methodName, "testRemoveProperty"))
105 bool invoke(NPIdentifier methodName, const NPVariant* arguments, uint32_t argumentCount, NPVariant* result)
107 assert(identifierIs(methodName, "testRemoveProperty"));
NPPSetWindowCalledDuringDestruction.cpp 115 bool NPPSetWindowCalledDuringDestruction::ScriptObject::hasMethod(NPIdentifier methodName)
117 return methodName == pluginTest()->NPN_GetStringIdentifier("setWillBeDestroyed");
  /frameworks/base/core/java/android/widget/
RemoteViews.java 749 private Method getMethod(View view, String methodName, Class<?> paramType) {
760 mPair.first = methodName;
767 method = klass.getMethod(methodName);
769 method = klass.getMethod(methodName, paramType);
773 + methodName + getParameters(paramType));
779 + methodName + getParameters(paramType));
782 methods.put(new MutablePair<String, Class<?>>(methodName, paramType), method);
    [all...]
  /external/chromium_org/third_party/WebKit/Source/bindings/v8/
npruntime_impl.h 53 bool _NPN_Invoke(NPP, NPObject*, NPIdentifier methodName, const NPVariant* arguments, uint32_t argumentCount, NPVariant* result);
61 bool _NPN_HasMethod(NPP, NPObject*, NPIdentifier methodName);
  /external/javassist/src/main/javassist/
CtNewMethod.java 218 * @param methodName the name of the getter
221 public static CtMethod getter(String methodName, CtField field)
228 MethodInfo minfo = new MethodInfo(cp, methodName, desc);
259 * @param methodName the name of the setter
262 public static CtMethod setter(String methodName, CtField field)
269 MethodInfo minfo = new MethodInfo(cp, methodName, desc);
331 String methodName = deleInfo.getName();
334 MethodInfo minfo = new MethodInfo(cp, methodName, desc);
349 code.addInvokestatic(deleClass, methodName, desc);
354 code.addInvokespecial(deleClass, methodName, desc)
    [all...]
  /external/junit/src/org/junit/experimental/theories/internal/
ParameterizedAssertionError.java 15 String methodName, Object... params) {
16 super(String.format("%s(%s)", methodName, join(", ", params)),
  /cts/tools/dex-tools/test/dex/reader/
DexTestsCommon.java 129 protected DexMethod getMethod(DexClass clazz, String methodName, String... typeNames) {
131 assertNotNull(methodName);
135 if(methodName.equals(method.getName()) && paramTypeNames.equals(methodsParamTypeNames)){
139 fail("Method: " + methodName +" not present in class: " + clazz.getName());
140 throw new IllegalArgumentException("Method: " + methodName +" not present in class: " + clazz.getName());

Completed in 1226 milliseconds

12 3 4 5 6 7 8 91011>>