Searched refs:methodName (Results 1 - 25 of 127) sorted by relevance

123456

/external/smali/dexlib/src/main/java/org/jf/dexlib/
H A DMethodIdItem.java39 private StringIdItem methodName; field in class:MethodIdItem
54 * @param methodName the name of the method
56 private MethodIdItem(DexFile dexFile, TypeIdItem classType, ProtoIdItem methodPrototype, StringIdItem methodName) { argument
60 this.methodName = methodName;
69 * @param methodName the name of the method
74 ProtoIdItem methodPrototype, StringIdItem methodName) {
75 MethodIdItem methodIdItem = new MethodIdItem(dexFile, classType, methodPrototype, methodName);
85 * @param methodName the name of the method
90 ProtoIdItem methodPrototype, StringIdItem methodName) {
73 internMethodIdItem(DexFile dexFile, TypeIdItem classType, ProtoIdItem methodPrototype, StringIdItem methodName) argument
89 lookupMethodIdItem(DexFile dexFile, TypeIdItem classType, ProtoIdItem methodPrototype, StringIdItem methodName) argument
[all...]
/external/mockito/src/org/mockito/internal/invocation/
H A DSerializableMethod.java18 private String methodName; field in class:SerializableMethod
26 methodName = method.getName();
34 return methodName;
55 return declaringClass.getDeclaredMethod(methodName, parameterTypes);
59 "Please report this as a defect with an example of how to reproduce it.", declaringClass, methodName);
64 "Please report this as a defect with an example of how to reproduce it.", declaringClass, methodName);
88 if (methodName == null) {
89 if (other.methodName != null)
91 } else if (!methodName.equals(other.methodName))
[all...]
/external/antlr/antlr-3.4/gunit/src/main/resources/org/antlr/gunit/
H A Djunit.stg47 testTreeRuleMethod(methodName,testTreeRuleName,testRuleName,test,tokenType,expecting) ::= <<
48 public void <methodName>() throws Exception {
58 testTreeRuleMethod2(methodName,testTreeRuleName,testRuleName,test,returnType,expecting) ::= <<
59 public void <methodName>() throws Exception {
67 testRuleMethod(isLexicalRule,methodName,testRuleName,test,tokenType,expecting) ::= <<
68 public void <methodName>() throws Exception {
78 testRuleMethod2(methodName,testRuleName,test,returnType,expecting) ::= <<
79 public void <methodName>() throws Exception {
/external/guava/guava-testlib/src/com/google/common/collect/testing/testers/
H A DPlatform.java32 static Method getMethod(Class<?> clazz, String methodName) { argument
34 return clazz.getMethod(methodName);
/external/javassist/src/main/javassist/convert/
H A DTransformAccessArrayField.java128 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
[all...]
H A DTransformReadField.java29 protected String methodClassname, methodName; field in class:TransformReadField
32 String methodClassname, String methodName)
38 this.methodName = methodName;
86 int methodref = cp.addMethodrefInfo(mi, methodName, type);
31 TransformReadField(Transformer next, CtField field, String methodClassname, String methodName) argument
H A DTransformWriteField.java24 String methodClassname, String methodName)
26 super(next, field, methodClassname, methodName);
63 int methodref = cp.addMethodrefInfo(mi, methodName, type);
23 TransformWriteField(Transformer next, CtField field, String methodClassname, String methodName) argument
/external/proguard/src/proguard/obfuscate/
H A DMappingProcessor.java68 * @param methodName the original external method name.
76 String methodName,
72 processMethodMapping(String className, int firstLineNumber, int lastLineNumber, String methodReturnType, String methodName, String methodArguments, String newMethodName) argument
H A DMultiMappingProcessor.java81 String methodName,
91 methodName,
77 processMethodMapping(String className, int firstLineNumber, int lastLineNumber, String methodReturnType, String methodName, String methodArguments, String newMethodName) argument
/external/robolectric/src/main/java/com/xtremelabs/robolectric/bytecode/
H A DClassHandler.java16 Object methodInvoked(Class clazz, String methodName, Object instance, String[] paramTypes, Object[] params) throws Throwable; argument
H A DShadowWrangler.java87 public Object methodInvoked(Class clazz, String methodName, Object instance, String[] paramTypes, Object[] params) throws Throwable { argument
88 InvocationPlan invocationPlan = new InvocationPlan(clazz, methodName, instance, paramTypes);
90 reportNoShadowMethodFound(clazz, methodName, paramTypes);
95 throw new I18nException("Method " + methodName + " on class " + clazz.getName() + " is not i18n-safe.");
124 private void reportNoShadowMethodFound(Class clazz, String methodName, String[] paramTypes) { argument
126 System.out.println("No Shadow method found for " + clazz.getSimpleName() + "." + methodName + "(" +
281 private String methodName; field in class:ShadowWrangler.InvocationPlan
288 public InvocationPlan(Class clazz, String methodName, Object instance, String... paramTypes) { argument
291 this.methodName = methodName;
364 findDeclaredShadowClassForMethod(Class<?> originalClass, String methodName, Class<?>[] paramClasses) argument
377 findDeclaringClassForMethod(String methodName, Class<?>[] paramClasses, Class<?> originalClass) argument
402 getMethod(Class<?> clazz, String methodName, Class<?>[] paramClasses) argument
[all...]
/external/webkit/Tools/DumpRenderTree/TestNetscapePlugIn/Tests/
H A DNPRuntimeRemoveProperty.cpp41 bool hasMethod(NPIdentifier methodName) argument
43 return methodName == pluginTest()->NPN_GetStringIdentifier("testRemoveProperty");
46 bool invoke(NPIdentifier methodName, const NPVariant* arguments, uint32_t argumentCount, NPVariant* result) argument
48 assert(methodName == pluginTest()->NPN_GetStringIdentifier("testRemoveProperty"));
/external/javassist/src/main/javassist/
H A DCtPrimitiveType.java32 String methodName, String mDesc, int opcode, int atype,
37 getMethodName = methodName;
31 CtPrimitiveType(String name, char desc, String wrapper, String methodName, String mDesc, int opcode, int atype, int size) argument
H A DCtNewMethod.java218 * @param methodName the name of the getter
221 public static CtMethod getter(String methodName, CtField field) argument
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) argument
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, des
[all...]
/external/smali/deodexerant/
H A Ddeodexerant.c38 const char* methodName; member in struct:InlineOperation
77 printf("%s->%s%s\n", item->classDescriptor, item->methodName, item->methodSignature);
/external/javassist/src/main/javassist/bytecode/
H A DEnclosingMethodAttribute.java42 * @param methodName the name of the enclosing method.
46 String methodName, String methodDesc) {
49 int ni = cp.addNameAndTypeInfo(methodName, methodDesc);
101 public String methodName() { method in class:EnclosingMethodAttribute
131 methodName(), methodDescriptor());
45 EnclosingMethodAttribute(ConstPool cp, String className, String methodName, String methodDesc) argument
/external/javassist/src/test/test/javassist/bytecode/analysis/
H A DErrorFinder.java51 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/smali/dexlib/src/main/java/org/jf/dexlib/Code/Analysis/
H A DDeodexUtil.java92 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; field in class:DeodexUtil.InlineMethod
290 InlineMethod(int methodType, String classType, String methodName, String parameters, argument
294 this.methodName = methodName;
309 this.methodIdItem = deodexUtil.parseAndResolveMethod(classDef, classDef, methodName, parameters,
314 return String.format("%s->%s(%s)%s", classType, methodName, parameter
108 parseAndResolveMethod(ClassPath.ClassDef accessingClass, ClassPath.ClassDef definingClass, String methodName, String methodParams, String methodRet) argument
[all...]
/external/easymock/src/org/easymock/internal/
H A DMethodSerializationWrapper.java43 private String methodName; field in class:MethodSerializationWrapper
49 methodName = m.getName();
77 Method m = clazz.getMethod(methodName, parameterTypes);
/external/emma/core/java12/com/vladium/jcd/lib/
H A DTypes.java363 public static String fullMethodDescriptorToUserName (final String classJavaName, String methodName, final String methoddescriptor) argument
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) argument
376 if ("<init>".equals (methodName))
377 methodName = simpleClassName (classJavaName);
378 if ("<clinit>".equals (methodName))
[all...]
/external/webkit/Source/WebCore/bridge/jni/v8/
H A DJavaNPObjectV8.h50 bool JavaNPObjectInvoke(NPObject*, NPIdentifier methodName, const NPVariant* args, uint32_t argCount, NPVariant* result);
/external/webkit/Source/WebKit2/Shared/Plugins/
H A DNPObjectProxy.h64 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);
/external/webkit/Source/WebKit2/WebProcess/Plugins/Netscape/
H A DNPJSObject.h67 bool hasMethod(NPIdentifier methodName);
68 bool invoke(NPIdentifier methodName, const NPVariant* arguments, uint32_t argumentCount, NPVariant* result);
82 static bool NP_HasMethod(NPObject*, NPIdentifier methodName);
83 static bool NP_Invoke(NPObject*, NPIdentifier methodName, const NPVariant* arguments, uint32_t argumentCount, NPVariant* result);
/external/junit/src/org/junit/experimental/theories/internal/
H A DParameterizedAssertionError.java15 String methodName, Object... params) {
16 super(String.format("%s(%s)", methodName, join(", ", params)),
14 ParameterizedAssertionError(Throwable targetException, String methodName, Object... params) argument
/external/webkit/Source/WebCore/bindings/v8/
H A Dnpruntime_impl.h57 bool _NPN_Invoke(NPP, NPObject*, NPIdentifier methodName, const NPVariant* arguments, uint32_t argumentCount, NPVariant* result);
65 bool _NPN_HasMethod(NPP, NPObject*, NPIdentifier methodName);

Completed in 707 milliseconds

123456