/external/jdiff/src/jdiff/ |
D | APIComparator.java | 468 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 …]
|
D | MergeChanges.java | 264 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/ |
D | AndroidMockGenerator.java | 306 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/ |
D | AndroidTranslator.java | 312 …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/ |
D | AbstractFakeCommandHandlerTestCase.groovy | 250 * @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/ |
D | AbstractFakeCommandHandlerTest.groovy | 231 * @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/ |
D | AbstractFakeCommandHandlerTest.groovy | 235 * @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/ |
D | AbstractFakeCommandHandlerTestCase.groovy | 249 * @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/ |
D | AbstractFakeCommandHandlerTest.groovy | 250 * @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/ |
D | AbstractFakeCommandHandlerTestCase.groovy | 250 * @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/ |
D | AbstractFakeCommandHandlerTest.groovy | 250 * @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/ |
D | AbstractFakeCommandHandlerTestCase.groovy | 250 * @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/ |
D | AbstractFakeCommandHandlerTest.groovy | 235 * @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/ |
D | AbstractFakeCommandHandlerTest.groovy | 235 * @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/ |
D | AbstractFakeCommandHandlerTestCase.groovy | 249 * @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/ |
D | AbstractFakeCommandHandlerTest.groovy | 250 * @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/ |
D | CodeConverter.java | 388 CtMethod newMethod) in redirectMethodCall() argument 392 = new TransformCall(transformers, oldMethodName, newMethod); in redirectMethodCall()
|
D | CtClassType.java | 849 CtMethod newMethod = new CtMethod(minfo, this); in makeBehaviorCache() local 850 cache.addMethod(newMethod); in makeBehaviorCache()
|
/external/oauth/core/src/main/java/net/oauth/signature/ |
D | OAuthSignatureMethod.java | 209 OAuthSignatureMethod signer = newMethod(message.getSignatureMethod(), in newSigner() 216 public static OAuthSignatureMethod newMethod(String name, in newMethod() method in OAuthSignatureMethod
|
/external/guava/guava/lib/ |
D | jdiff.jar | META-INF/
META-INF/MANIFEST.MF
jdiff/
jdiff/API.class
API ... |
/external/javassist/src/main/javassist/bytecode/ |
D | ClassFile.java | 668 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/ |
D | asm-3.3.jar | META-INF/MANIFEST.MF
org/objectweb/asm/AnnotationVisitor.class
<Unknown>
... |
/external/jarjar/lib/ |
D | asm-4.0.jar | META-INF/MANIFEST.MF
org/objectweb/asm/AnnotationVisitor.class
<Unknown>
... |
/external/mockito/cglib-and-asm/src/org/mockito/asm/ |
D | ClassWriter.java | 1042 public int newMethod( in newMethod() method in ClassWriter
|
/external/dexmaker/lib/ |
D | jarjar.jar | META-INF/
META-INF/MANIFEST.MF
com/
com/tonicsystems/
com/ ... |