Home
last modified time | relevance | path

Searched refs:hashCodeMethod (Results 1 – 2 of 2) sorted by relevance

/external/easymock/src/org/easymock/internal/
DObjectMethodsFilter.java30 private transient Method hashCodeMethod; field in ObjectMethodsFilter
50 hashCodeMethod = toMock.getMethod("hashCode", (Class[]) null); in ObjectMethodsFilter()
66 if (hashCodeMethod.equals(method)) { in invoke()
95 hashCodeMethod = ((MethodSerializationWrapper) stream.readObject()).getMethod(); in readObject()
107 stream.writeObject(new MethodSerializationWrapper(hashCodeMethod)); in writeObject()
/external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/bytecode/
DAndroidTranslator.java250 CtMethod hashCodeMethod = ctClass.getMethod("hashCode", "()I"); in fixMethods() local
254 fixMethod(ctClass, hashCodeMethod, false); in fixMethods()