Home
last modified time | relevance | path

Searched defs:methodName (Results 1 – 25 of 89) sorted by relevance

1234

/external/mockito/cglib-and-asm/src/org/mockito/cglib/reflect/
DMethodDelegate.java116 Object newInstance(Class delegateClass, String methodName, Class iface); in newInstance()
119 public static MethodDelegate createStatic(Class targetClass, String methodName, Class iface) { in createStatic()
127 public static MethodDelegate create(Object target, String methodName, Class iface) { in create()
159 private String methodName; field in MethodDelegate.Generator
175 public void setMethodName(String methodName) { in setMethodName()
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/Events/
DCombinedEventsTestCase.java53 void printMethodLineTable(long classID, String className /* may be null */, String methodName) { in printMethodLineTable()
92 long getMethodStartCodeIndex(long classID, String methodName) { in getMethodStartCodeIndex()
116 long getMethodEndCodeIndex(long classID, String methodName) { in getMethodEndCodeIndex()
140 protected Location getMethodEntryLocation(long classID, String methodName) { in getMethodEntryLocation()
169 protected Location getMethodEndLocation(long classID, String methodName) { in getMethodEndLocation()
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/ThreadReference/
DFramesTest.java85 String methodName, classSignature; in testFrames005() local
139 String methodName, classSignature; in testFrames004() local
194 String methodName, classSignature; in testFrames003() local
254 String methodName, classSignature; in testFrames002() local
349 String methodName, classSignature; in testFrames001() local
/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/
DOptionalMethod.java34 private final String methodName; field in OptionalMethod
45 public OptionalMethod(Class<?> returnType, String methodName, Class... methodParams) { in OptionalMethod()
163 private static Method getPublicMethod(Class<?> clazz, String methodName, Class[] parameterTypes) { in getPublicMethod()
/external/robolectric/src/main/java/com/xtremelabs/robolectric/bytecode/
DShadowWrangler.java87 …public Object methodInvoked(Class clazz, String methodName, Object instance, String[] paramTypes, … in methodInvoked()
124 private void reportNoShadowMethodFound(Class clazz, String methodName, String[] paramTypes) { in reportNoShadowMethodFound()
289 private String methodName; field in ShadowWrangler.InvocationPlan
296 … public InvocationPlan(Class clazz, String methodName, Object instance, String... paramTypes) { in InvocationPlan()
372 …private Class<?> findDeclaredShadowClassForMethod(Class<?> originalClass, String methodName, Class… in findDeclaredShadowClassForMethod()
377 …private Class<?> findDeclaringClassForMethod(String methodName, Class<?>[] paramClasses, Class<?> … in findDeclaringClassForMethod()
402 private Method getMethod(Class<?> clazz, String methodName, Class<?>[] paramClasses) { in getMethod()
DAndroidTranslator.java291 String methodName = ctMethod.getName(); in fixMethod() local
330 …ewMethod(CtClass ctClass, CtMethod ctMethod, CtClass returnCtClass, String methodName, CtClass[] p… in makeNewMethod()
341 public String generateCallToSuper(String methodName, CtClass[] paramTypes) { in generateCallToSuper()
491 private CtMethod getMethod(CtClass ctClass, String methodName, String desc) { in getMethod()
DClassHandler.java16 …Object methodInvoked(Class clazz, String methodName, Object instance, String[] paramTypes, Object[… in methodInvoked()
/external/icu/icu4j/main/tests/localespi/src/com/ibm/icu/dev/test/localespi/
DNumberFormatTest.java78 private NumberFormat getJDKInstance(int type, Locale loc, String[] methodName) { in getJDKInstance()
110 … private com.ibm.icu.text.NumberFormat getICUInstance(int type, Locale loc, String[] methodName) { in getICUInstance()
175 String[] methodName = new String[1]; in TestICUEquivalent() local
DDateFormatTest.java69 private DateFormat getJDKInstance(int dstyle, int tstyle, Locale loc, String[] methodName) { in getJDKInstance()
88 …m.ibm.icu.text.DateFormat getICUInstance(int dstyle, int tstyle, Locale loc, String[] methodName) { in getICUInstance()
/external/icu/icu4j/main/tests/framework/src/com/ibm/icu/dev/test/
DModuleTest.java101 protected boolean validateMethod(String methodName) { in validateMethod()
121 protected String getMethodDescription(String methodName) { in getMethodDescription()
/external/javassist/src/main/javassist/bytecode/
DEnclosingMethodAttribute.java46 String methodName, String methodDesc) { in EnclosingMethodAttribute()
101 public String methodName() { in methodName() method in EnclosingMethodAttribute
/external/javassist/src/main/javassist/convert/
DTransformReadField.java29 protected String methodClassname, methodName; field in TransformReadField
32 String methodClassname, String methodName) in TransformReadField()
DTransformAccessArrayField.java128 String methodName = getMethodName(opcode); in replace() local
166 String methodName = null; in getMethodName() local
/external/javassist/src/main/javassist/
DCtNewMethod.java221 public static CtMethod getter(String methodName, CtField field) in getter()
262 public static CtMethod setter(String methodName, CtField field) in setter()
331 String methodName = deleInfo.getName(); in delegator0() local
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/framework/
DBreakpoint.java33 public String methodName; field in Breakpoint
/external/proguard/src/proguard/
DGetEnclosingMethodChecker.java61 String methodName = methodrefConstant.getName(clazz); in visitMethodrefConstant() local
DGetAnnotationChecker.java63 String methodName = methodrefConstant.getName(clazz); in visitMethodrefConstant() local
DGetSignatureChecker.java63 String methodName = methodrefConstant.getName(clazz); in visitMethodrefConstant() local
DGetEnclosingClassChecker.java61 String methodName = methodrefConstant.getName(clazz); in visitMethodrefConstant() local
/external/proguard/src/proguard/classfile/util/
DExternalTypeEnumeration.java102 public String methodName() in methodName() method in ExternalTypeEnumeration
/external/jetty/src/java/org/eclipse/jetty/util/
DIntrospectionUtil.java53 …public static Method findMethod (Class<?> clazz, String methodName, Class<?>[] args, boolean check… in findMethod()
254 …protected static Method findInheritedMethod (Package pack, Class<?> clazz, String methodName, Clas… in findInheritedMethod()
/external/lzma/CPP/7zip/Archive/Common/
DHandlerOut.cpp82 static bool AreEqual(const UString &methodName, const wchar_t *s) in AreEqual()
92 static inline bool IsBZip2Method(const UString &methodName) in IsBZip2Method()
95 static inline bool IsPpmdMethod(const UString &methodName) in IsPpmdMethod()
98 static inline bool IsDeflateMethod(const UString &methodName) in IsDeflateMethod()
/external/guava/guava-testlib/src/com/google/common/collect/testing/google/
DBiMapInverseTester.java80 private static Method getMethod(String methodName) { in getMethod()
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/StackFrame/
DThisObjectTest.java111 …String methodName = debuggeeWrapper.vmMirror.getMethodName(frameIDs[i].location.classID, frameIDs[… in testThisObjectTest001() local
/external/proguard/src/proguard/obfuscate/
DMappingProcessor.java76 String methodName, in processMethodMapping()

1234