Searched defs:methodName (Results 1 - 25 of 98) sorted by relevance

1234

/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/framework/
H A DBreakpoint.java33 public String methodName; field in class:Breakpoint
41 methodName = new String();
54 methodName = method;
/external/chromium_org/content/shell/tools/plugin/Tests/
H A DNPRuntimeObjectFromDestroyedPlugin.cpp48 bool hasMethod(NPIdentifier methodName) argument
50 return identifierIs(methodName, "evaluate");
53 bool invoke(NPIdentifier methodName, const NPVariant* args, uint32_t argCount, NPVariant* result) argument
55 if (!identifierIs(methodName, "evaluate"))
H A DNPPSetWindowCalledDuringDestruction.cpp119 bool NPPSetWindowCalledDuringDestruction::ScriptObject::hasMethod(NPIdentifier methodName) argument
121 return methodName == pluginTest()->NPN_GetStringIdentifier("setWillBeDestroyed");
H A DNPRuntimeRemoveProperty.cpp101 bool hasMethod(NPIdentifier methodName) argument
103 if (identifierIs(methodName, "testRemoveProperty"))
109 bool invoke(NPIdentifier methodName, const NPVariant* arguments, uint32_t argumentCount, NPVariant* result) argument
111 assert(identifierIs(methodName, "testRemoveProperty"));
/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/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/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/main/javassist/convert/
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
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
/external/proguard/src/proguard/classfile/util/
H A DExternalTypeEnumeration.java102 public String methodName() method in class:ExternalTypeEnumeration
/external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/
H A DCursorWrapperTest.java40 public void verifyForward(String methodName, Object... params) throws Exception { argument
41 assertThat(cursorMethod.keySet(), hasItem(methodName));
43 Method method = cursorMethod.get(methodName);
/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/okhttp/android/main/java/com/squareup/okhttp/internal/
H A DOptionalMethod.java34 private final String methodName; field in class:OptionalMethod
42 * @param methodName the name of the method
45 public OptionalMethod(Class<?> returnType, String methodName, Class... methodParams) { argument
47 this.methodName = methodName;
107 throw new AssertionError("Method " + methodName + " not supported for object " + target);
144 if (methodName != null) {
145 method = getPublicMethod(clazz, methodName, methodParams);
157 private static Method getPublicMethod(Class<?> clazz, String methodName, Class[] parameterTypes) { argument
160 method = clazz.getMethod(methodName, parameterType
[all...]
/external/proguard/src/proguard/obfuscate/
H A DMappingKeeper.java142 String methodName,
152 Method method = clazz.findMethod(methodName, descriptor);
166 ": method '" + methodReturnType + " " + methodName + ClassConstants.EXTERNAL_METHOD_ARGUMENTS_OPEN + methodArguments + ClassConstants.EXTERNAL_METHOD_ARGUMENTS_CLOSE +
138 processMethodMapping(String className, int firstLineNumber, int lastLineNumber, String methodReturnType, String methodName, String methodArguments, String newMethodName) argument
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 DRobolectricInternals.java109 public static Object methodInvoked(Class clazz, String methodName, Object instance, String[] paramTypes, Object[] params) throws Throwable { argument
111 return classHandler.methodInvoked(clazz, methodName, instance, paramTypes, params);
/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/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/Events/
H A DBreakpoint002Test.java159 private void testBreakpointIn(String testName, String methodName) { argument
165 long breakpointReqID = debuggeeWrapper.vmMirror.setBreakpointAtMethodBegin(classID, methodName);
166 assertTrue("Failed to install breakpoint in method " + methodName, breakpointReqID != -1);
H A DCombinedEventsTestCase.java53 void printMethodLineTable(long classID, String className /* may be null */, String methodName) { argument
54 long methodID = debuggeeWrapper.vmMirror.getMethodID(classID, methodName);
58 + classID + "; Method name = " + methodName);
72 logWriter.println("=== Line Table for method: " + methodName + " ===");
74 logWriter.println("=== Line Table for method: " + methodName + " of class: "
89 logWriter.println("=== End of Line Table " + methodName + " ===");
92 long getMethodStartCodeIndex(long classID, String methodName) { argument
93 long methodID = debuggeeWrapper.vmMirror.getMethodID(classID, methodName);
97 + classID + "; Method name = " + methodName);
116 long getMethodEndCodeIndex(long classID, String methodName) { argument
140 getMethodEntryLocation(long classID, String methodName) argument
169 getMethodEndLocation(long classID, String methodName) argument
[all...]
/external/javassist/src/main/javassist/
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...]
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/junit/src/org/junit/runner/
H A DRequest.java31 * @param methodName the name of the test
34 public static Request method(Class<?> clazz, String methodName) { argument
35 Description method= Description.createTestDescription(clazz, methodName);
/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...]

Completed in 2689 milliseconds

1234