Searched refs:methodName (Results 1 - 25 of 140) 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/chromium_org/third_party/WebKit/Source/testing/plugin/Tests/
H A DNPRuntimeObjectFromDestroyedPlugin.cpp44 bool hasMethod(NPIdentifier methodName) argument
46 return identifierIs(methodName, "evaluate");
49 bool invoke(NPIdentifier methodName, const NPVariant* args, uint32_t argCount, NPVariant* result) argument
51 if (!identifierIs(methodName, "evaluate"))
/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/chromium_org/third_party/WebKit/Source/devtools/front_end/
H A DHeapSnapshotWorkerDispatcher.js58 var constructorFunction = this._findFunction(data.methodName);
68 var result = object[data.methodName];
74 var result = object[data.methodName].apply(object, data.methodArguments);
82 response.result = object[data.methodName].apply(object, data.methodArguments);
89 if (data.methodName)
90 response.errorMethodName = data.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 + "(" +
289 private String methodName; field in class:ShadowWrangler.InvocationPlan
296 public InvocationPlan(Class clazz, String methodName, Object instance, String... paramTypes) { argument
299 this.methodName = methodName;
372 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/chromium_org/remoting/webapp/
H A Dxhr.js124 * @param {string} methodName The HTTP method name, e.g. "GET", "POST" etc.
137 remoting.xhr.doMethod = function(methodName, url, onDone,
160 var useBody = (methodName == 'POST') || (methodName == 'PUT');
166 xhr.open(methodName, url, true);
167 if (methodName == 'POST' &&
/external/chromium_org/chrome/browser/resources/chromeos/login/
H A Dscreen.js53 var methodName = api[i];
54 if (typeof proto[methodName] !== 'function')
55 throw Error('External method "' + methodName + '" for screen "' +
/external/chromium_org/chrome/test/functional/chromoting/
H A Dchromoting_base.py33 def __init__(self, methodName):
34 pyauto.PyUITest.__init__(self, methodName)
/external/chromium_org/chrome/test/functional/tracing/
H A Dtimeline_model_shim.js12 invokeMethod: function(methodName, args) {
25 result = this[methodName].apply(this, JSON.parse(args));
/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
/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/chromium_org/chrome/renderer/resources/extensions/
H A Dplatform_app.js30 $Array.forEach(methodNames, function(methodName) {
31 object[methodName] =
32 generateDisabledMethodStub(objectName + '.' + methodName + '()');
/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...]

Completed in 1953 milliseconds

123456