Home
last modified time | relevance | path

Searched refs:removeMethod (Results 1 – 11 of 11) sorted by relevance

/external/javaparser/javaparser-core-generators/src/main/java/com/github/javaparser/generator/core/node/
DRemoveMethodGenerator.java79 …final MethodDeclaration removeMethod = (MethodDeclaration) parseBodyDeclaration(f("public %s %s() … in generateRemoveMethodForAttribute() local
81 final BlockStmt block = removeMethod.getBody().get(); in generateRemoveMethodForAttribute()
84 addOrReplaceWhenSameSignature(nodeCoid, removeMethod); in generateRemoveMethodForAttribute()
/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/
DPlatform.java185 Method removeMethod = negoClass.getMethod("remove", SSLSocket.class); in findPlatform() local
187 putMethod, getMethod, removeMethod, clientProviderClass, serverProviderClass); in findPlatform()
353 private final Method removeMethod; field in Platform.JdkWithJettyBootPlatform
358 Method removeMethod, Class<?> clientProviderClass, Class<?> serverProviderClass) { in JdkWithJettyBootPlatform() argument
362 this.removeMethod = removeMethod; in JdkWithJettyBootPlatform()
386 removeMethod.invoke(null, sslSocket); in afterHandshake()
/external/grpc-grpc-java/okhttp/third_party/okhttp/main/java/io/grpc/okhttp/internal/
DPlatform.java269 Method removeMethod = negoClass.getMethod("remove", SSLSocket.class); in findPlatform() local
271 putMethod, getMethod, removeMethod, clientProviderClass, serverProviderClass, in findPlatform()
481 private final Method removeMethod; field in Platform.JdkWithJettyBootPlatform
485 public JdkWithJettyBootPlatform(Method putMethod, Method getMethod, Method removeMethod, in JdkWithJettyBootPlatform() argument
490 this.removeMethod = removeMethod; in JdkWithJettyBootPlatform()
521 removeMethod.invoke(null, sslSocket); in afterHandshake()
/external/javassist/src/test/javassist/
DHotswapTest.java31 clazz.removeMethod(m); in testHotswap()
DJvstTest2.java1295 cc.removeMethod(m); in testRemove3()
/external/robolectric/sandbox/src/main/java/org/robolectric/internal/bytecode/
DMutableClass.java65 public void removeMethod(String name, String desc) { in removeMethod() method in MutableClass
/external/apache-commons-bcel/src/main/java/org/apache/bcel/generic/
DClassGen.java361 public void removeMethod( final Method m ) { in removeMethod() method in ClassGen
/external/javassist/src/main/javassist/
DCtClass.java1089 public void removeMethod(CtMethod m) throws NotFoundException { in removeMethod() method in CtClass
DCtClassType.java1491 public void removeMethod(CtMethod m) throws NotFoundException in removeMethod() method in CtClassType
/external/nist-sip/java/gov/nist/javax/sip/address/
DSipUri.java518 public void removeMethod() { in removeMethod() method in SipUri
/external/apache-commons-bcel/src/test/java/org/apache/bcel/generic/
DGeneratingAnnotatedClassesTestCase.java180 cg2.removeMethod(mainMethod1); in testGenerateMethodLevelAnnotations2()