Home
last modified time | relevance | path

Searched refs:newMethod (Results 1 – 25 of 33) sorted by relevance

12

/external/jdiff/src/jdiff/
DAPIComparator.java468 MethodAPI newMethod = methodArr[methodIdx]; in compareAllMethods() local
469 if (oldMethod.compareTo(newMethod) == 0) { in compareAllMethods()
494 MethodAPI newMethod = (MethodAPI)(newClass.methods_.get(startNew)); in compareAllMethods() local
499 newMethod.inheritedFrom_ == null) { in compareAllMethods()
502 compareMethods(oldMethod, newMethod, classDiff); in compareAllMethods()
520 MethodAPI newMethod = (MethodAPI)(iter.next()); in compareAllMethods() local
522 if (newMethod.inheritedFrom_ != null) in compareAllMethods()
529 if (newMethod.compareTo(oldMethod) == 0) { in compareAllMethods()
538 int startOld = oldClass.methods_.indexOf(newMethod); in compareAllMethods()
539 int endOld = oldClass.methods_.lastIndexOf(newMethod); in compareAllMethods()
[all …]
DMergeChanges.java264 MethodAPI newMethod) { in diffMethods() argument
266 if (oldMethod.isAbstract_ != newMethod.isAbstract_) { in diffMethods()
276 oldMethod.isNative_ != newMethod.isNative_) { in diffMethods()
286 oldMethod.isSynchronized_ != newMethod.isSynchronized_) { in diffMethods()
/external/android-mock/src/com/google/android/testing/mocking/
DAndroidMockGenerator.java306 CtMethod newMethod = CtMethod.make(getGetDelegateMethodSource(), clazz); in addGetDelegateMethod() local
308 CtMethod existingMethod = clazz.getMethod(newMethod.getName(), newMethod.getSignature()); in addGetDelegateMethod()
313 clazz.addMethod(newMethod); in addGetDelegateMethod()
333 CtMethod newMethod = CtMethod.make(getInterfaceMethodSource(method), newInterface); in addInterfaceMethods() local
334 newInterface.addMethod(newMethod); in addInterfaceMethods()
355 CtMethod newMethod = CtMethod.make(getDelegateMethodSource(method), newClass); in addMethods() local
356 if (!existingMethods.contains(newMethod)) { in addMethods()
357 newClass.addMethod(newMethod); in addMethods()
/external/robolectric/src/main/java/com/xtremelabs/robolectric/bytecode/
DAndroidTranslator.java312 …CtMethod newMethod = makeNewMethod(ctClass, ctMethod, returnCtClass, methodName, paramTypes, "{\n"… in fixMethod() local
313 newMethod.setModifiers(newModifiers); in fixMethod()
317 ctClass.addMethod(newMethod); in fixMethod()
320 …CtMethod newMethod = makeNewMethod(ctClass, ctMethod, returnCtClass, methodName, paramTypes, "{\n"… in fixMethod() local
321 ctMethod.setBody(newMethod, null); in fixMethod()
/external/mockftpserver/tags/2.2/src/test/groovy/org/mockftpserver/fake/command/
DAbstractFakeCommandHandlerTestCase.groovy250 * @param newMethod - the Closure representing the new method for this single instance
252 protected void overrideMethod(object, String methodName, Closure newMethod) {
255 emc."$methodName" = newMethod
265 …def newMethod = {String path -> throw new FileSystemException("Error thrown by method [$methodName…
266 overrideMethod(fileSystem, methodName, newMethod)
/external/mockftpserver/tags/2.0-rc1/src/test/groovy/org/mockftpserver/fake/command/
DAbstractFakeCommandHandlerTest.groovy231 * @param newMethod - the Closure representing the new method for this single instance
233 protected void overrideMethod(object, String methodName, Closure newMethod) {
236 emc."$methodName" = newMethod
246 …def newMethod = {String path -> throw new FileSystemException("Error thrown by method [$methodName…
247 overrideMethod(fileSystem, methodName, newMethod)
/external/mockftpserver/tags/2.0-rc3/MockFtpServer/src/test/groovy/org/mockftpserver/fake/command/
DAbstractFakeCommandHandlerTest.groovy235 * @param newMethod - the Closure representing the new method for this single instance
237 protected void overrideMethod(object, String methodName, Closure newMethod) {
240 emc."$methodName" = newMethod
250 …def newMethod = {String path -> throw new FileSystemException("Error thrown by method [$methodName…
251 overrideMethod(fileSystem, methodName, newMethod)
/external/mockftpserver/tags/2.5/src/test/groovy/org/mockftpserver/fake/command/
DAbstractFakeCommandHandlerTestCase.groovy249 * @param newMethod - the Closure representing the new method for this single instance
251 protected void overrideMethod(object, String methodName, Closure newMethod) {
254 emc."$methodName" = newMethod
264 …def newMethod = {String path -> throw new FileSystemException("Error thrown by method [$methodName…
265 overrideMethod(fileSystem, methodName, newMethod)
/external/mockftpserver/tags/2.0.2/src/test/groovy/org/mockftpserver/fake/command/
DAbstractFakeCommandHandlerTest.groovy250 * @param newMethod - the Closure representing the new method for this single instance
252 protected void overrideMethod(object, String methodName, Closure newMethod) {
255 emc."$methodName" = newMethod
265 …def newMethod = {String path -> throw new FileSystemException("Error thrown by method [$methodName…
266 overrideMethod(fileSystem, methodName, newMethod)
/external/mockftpserver/tags/2.4/src/test/groovy/org/mockftpserver/fake/command/
DAbstractFakeCommandHandlerTestCase.groovy250 * @param newMethod - the Closure representing the new method for this single instance
252 protected void overrideMethod(object, String methodName, Closure newMethod) {
255 emc."$methodName" = newMethod
265 …def newMethod = {String path -> throw new FileSystemException("Error thrown by method [$methodName…
266 overrideMethod(fileSystem, methodName, newMethod)
/external/mockftpserver/tags/2.0.1/src/test/groovy/org/mockftpserver/fake/command/
DAbstractFakeCommandHandlerTest.groovy250 * @param newMethod - the Closure representing the new method for this single instance
252 protected void overrideMethod(object, String methodName, Closure newMethod) {
255 emc."$methodName" = newMethod
265 …def newMethod = {String path -> throw new FileSystemException("Error thrown by method [$methodName…
266 overrideMethod(fileSystem, methodName, newMethod)
/external/mockftpserver/tags/2.3/src/test/groovy/org/mockftpserver/fake/command/
DAbstractFakeCommandHandlerTestCase.groovy250 * @param newMethod - the Closure representing the new method for this single instance
252 protected void overrideMethod(object, String methodName, Closure newMethod) {
255 emc."$methodName" = newMethod
265 …def newMethod = {String path -> throw new FileSystemException("Error thrown by method [$methodName…
266 overrideMethod(fileSystem, methodName, newMethod)
/external/mockftpserver/tags/2.0-rc1/MockFtpServer/src/test/groovy/org/mockftpserver/fake/command/
DAbstractFakeCommandHandlerTest.groovy235 * @param newMethod - the Closure representing the new method for this single instance
237 protected void overrideMethod(object, String methodName, Closure newMethod) {
240 emc."$methodName" = newMethod
250 …def newMethod = {String path -> throw new FileSystemException("Error thrown by method [$methodName…
251 overrideMethod(fileSystem, methodName, newMethod)
/external/mockftpserver/tags/2.0/src/test/groovy/org/mockftpserver/fake/command/
DAbstractFakeCommandHandlerTest.groovy235 * @param newMethod - the Closure representing the new method for this single instance
237 protected void overrideMethod(object, String methodName, Closure newMethod) {
240 emc."$methodName" = newMethod
250 …def newMethod = {String path -> throw new FileSystemException("Error thrown by method [$methodName…
251 overrideMethod(fileSystem, methodName, newMethod)
/external/mockftpserver/MockFtpServer/src/test/groovy/org/mockftpserver/fake/command/
DAbstractFakeCommandHandlerTestCase.groovy249 * @param newMethod - the Closure representing the new method for this single instance
251 protected void overrideMethod(object, String methodName, Closure newMethod) {
254 emc."$methodName" = newMethod
264 …def newMethod = {String path -> throw new FileSystemException("Error thrown by method [$methodName…
265 overrideMethod(fileSystem, methodName, newMethod)
/external/mockftpserver/tags/2.1/src/test/groovy/org/mockftpserver/fake/command/
DAbstractFakeCommandHandlerTest.groovy250 * @param newMethod - the Closure representing the new method for this single instance
252 protected void overrideMethod(object, String methodName, Closure newMethod) {
255 emc."$methodName" = newMethod
265 …def newMethod = {String path -> throw new FileSystemException("Error thrown by method [$methodName…
266 overrideMethod(fileSystem, methodName, newMethod)
/external/javassist/src/main/javassist/
DCodeConverter.java388 CtMethod newMethod) in redirectMethodCall() argument
392 = new TransformCall(transformers, oldMethodName, newMethod); in redirectMethodCall()
DCtClassType.java849 CtMethod newMethod = new CtMethod(minfo, this); in makeBehaviorCache() local
850 cache.addMethod(newMethod); in makeBehaviorCache()
/external/oauth/core/src/main/java/net/oauth/signature/
DOAuthSignatureMethod.java209 OAuthSignatureMethod signer = newMethod(message.getSignatureMethod(), in newSigner()
216 public static OAuthSignatureMethod newMethod(String name, in newMethod() method in OAuthSignatureMethod
/external/guava/guava/lib/
Djdiff.jarMETA-INF/ META-INF/MANIFEST.MF jdiff/ jdiff/API.class API ...
/external/javassist/src/main/javassist/bytecode/
DClassFile.java668 private static boolean isDuplicated(MethodInfo newMethod, String newName, in isDuplicated() argument
688 return notBridgeMethod(minfo) && notBridgeMethod(newMethod); in isDuplicated()
/external/owasp/sanitizer/tools/findbugs/lib/
Dasm-3.3.jarMETA-INF/MANIFEST.MF org/objectweb/asm/AnnotationVisitor.class <Unknown> ...
/external/jarjar/lib/
Dasm-4.0.jarMETA-INF/MANIFEST.MF org/objectweb/asm/AnnotationVisitor.class <Unknown> ...
/external/mockito/cglib-and-asm/src/org/mockito/asm/
DClassWriter.java1042 public int newMethod( in newMethod() method in ClassWriter
/external/dexmaker/lib/
Djarjar.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/tonicsystems/ com/ ...

12