Home
last modified time | relevance | path

Searched refs:removeMethod (Results 1 – 8 of 8) 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.java264 Method removeMethod = negoClass.getMethod("remove", SSLSocket.class); in findPlatform() local
266 putMethod, getMethod, removeMethod, clientProviderClass, serverProviderClass, in findPlatform()
487 private final Method removeMethod; field in Platform.JdkWithJettyBootPlatform
491 public JdkWithJettyBootPlatform(Method putMethod, Method getMethod, Method removeMethod, in JdkWithJettyBootPlatform() argument
496 this.removeMethod = removeMethod; in JdkWithJettyBootPlatform()
527 removeMethod.invoke(null, sslSocket); in afterHandshake()
/external/proguard/src/proguard/optimize/evaluation/
DSimpleEnumClassSimplifier.java138 new ClassEditor(programClass).removeMethod(valueOfMethod); in visitProgramClass()
/external/proguard/src/proguard/classfile/editor/
DClassEditor.java219 public void removeMethod(Method method) in removeMethod() method in ClassEditor
/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/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()