Searched refs:getMethod (Results 151 - 175 of 595) sorted by relevance

1234567891011>>

/openjdk9/jdk/test/java/util/logging/bundlesearch/
H A DLoadItUp2Invoker.java50 this.testMethod = loadItUp2Clazz.getMethod("test", String.class);
/openjdk9/hotspot/src/jdk.aot/share/classes/jdk.tools.jaotc/src/jdk/tools/jaotc/
H A DMiscUtils.java82 ResolvedJavaMethod method = bcpos.getMethod();
97 ResolvedJavaMethod m = call.debugInfo.getBytecodePosition().getMethod();
/openjdk9/hotspot/test/compiler/jvmci/compilerToVM/
H A DMethodIsIgnoredBySecurityStackWalkTest.java78 testCases.put(aClass.getMethod("invoke", Object.class,
82 testCases.put(aClass.getMethod("invoke", Object.class,
/openjdk9/hotspot/test/compiler/escapeAnalysis/
H A DTestArrayCopy.java88 Method test1 = TestArrayCopy.class.getMethod("do_test1", Object.class, int.class, int.class, int.class);
89 Method test2 = TestArrayCopy.class.getMethod("do_test2", Object.class, int.class, int.class, int.class);
/openjdk9/jaxp/test/javax/xml/jaxp/module/ServiceProviderTest/src/unnamed/
H A DMain.java77 return Class.forName(serviceName).getMethod("newInstance", String.class)
80 return Class.forName(serviceName).getMethod("newInstance").invoke(null);
/openjdk9/jaxp/src/java.xml/share/classes/com/sun/org/apache/xml/internal/dtm/ref/
H A DIncrementalSAXSource_Xerces.java127 fConfigSetInput=xniStdConfigClass.getMethod("setInputSource",args3);
132 fConfigSetByteStream=fXniInputSourceClass.getMethod("setByteStream",args5);
134 fConfigSetCharStream=fXniInputSourceClass.getMethod("setCharacterStream",args6);
136 fConfigSetEncoding=fXniInputSourceClass.getMethod("setEncoding",args7);
139 fConfigParse=xniStdConfigClass.getMethod("parse",argsb);
141 fReset=fIncrementalParser.getClass().getMethod("reset",noargs);
178 fParseSomeSetup=me.getMethod("parseSomeSetup",parms);
180 fParseSome=me.getMethod("parseSome",parms);
/openjdk9/jdk/test/java/rmi/transport/checkFQDN/
H A DCheckFQDN_Stub.java44 java.rmi.server.RemoteRef.class.getMethod("invoke",
52 $method_tellServerName_0 = TellServerName.class.getMethod("tellServerName", new java.lang.Class[] {java.lang.String.class});
/openjdk9/jdk/test/java/rmi/activation/Activatable/restartService/
H A DRestartService_Stub.java44 java.rmi.server.RemoteRef.class.getMethod("invoke",
52 $method_ping_0 = ActivateMe.class.getMethod("ping", new java.lang.Class[] {java.lang.String.class});
/openjdk9/jdk/test/java/rmi/server/RMIClassLoader/downloadArrayClass/
H A DDownloadArrayClass_Stub.java44 java.rmi.server.RemoteRef.class.getMethod("invoke",
52 $method_receive_0 = Receiver.class.getMethod("receive", new java.lang.Class[] {java.lang.Object.class});
/openjdk9/jdk/test/java/rmi/server/RMIClassLoader/useCodebaseOnly/
H A DUseCodebaseOnly_Stub.java44 java.rmi.server.RemoteRef.class.getMethod("invoke",
52 $method_receive_0 = Receiver.class.getMethod("receive", new java.lang.Class[] {java.lang.Object.class});
/openjdk9/jdk/test/java/rmi/server/RMISocketFactory/useSocketFactory/registry/
H A DHelloImpl_Stub.java44 java.rmi.server.RemoteRef.class.getMethod("invoke",
52 $method_sayHello_0 = Hello.class.getMethod("sayHello", new java.lang.Class[] {});
/openjdk9/nashorn/test/script/currently-failing/
H A Dclone_ir.js43 var toArrayMethod = ASTWriter.class.getMethod("toArray");
44 var parseMethod = Parser.class.getMethod("parse");
/openjdk9/jdk/test/sun/rmi/server/MarshalOutputStream/marshalForeignStub/
H A DMarshalForeignStub_Stub.java44 java.rmi.server.RemoteRef.class.getMethod("invoke",
52 $method_receive_0 = Receiver.class.getMethod("receive", new java.lang.Class[] {java.lang.Object.class});
/openjdk9/jdk/test/java/lang/invoke/
H A DPrivateInvokeTest.java104 private static Method getMethod(Class<?> defc, String name, Class<?>... ptypes) { method in class:PrivateInvokeTest
110 return defc.getMethod(name, ptypes);
315 testInvokeDirect(getMethod(THIS_CLASS, "hello"));
316 testInvokeDirect(getMethod(Object.class, "toString"));
317 testInvokeDirect(getMethod(Comparable.class, "compareTo", Object.class));
318 testInvokeDirect(getMethod(THIS_CLASS, "makeString", Object.class));
319 testInvokeDirect(getMethod(THIS_CLASS, "dupString", String.class));
320 testInvokeDirect(getMethod(THIS_CLASS, "intString", int.class));
321 testInvokeDirect(getMethod(THIS_CLASS, "byteString", byte.class));
322 testInvokeDirect(getMethod(THIS_CLAS
[all...]
/openjdk9/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/
H A DCompilationTask.java113 public HotSpotResolvedJavaMethod getMethod() { method in class:CompilationTask
114 return getRequest().getMethod();
179 HotSpotResolvedJavaMethod method = getMethod();
363 HotSpotResolvedJavaMethod method = getMethod();
372 Object[] context = {new DebugDumpScope(getIdString(), true), codeCache, getMethod(), compResult};
374 HotSpotCompiledCode compiledCode = HotSpotCompiledCodeBuilder.createCompiledCode(getRequest().getMethod(), getRequest(), compResult);
375 installedCode = (HotSpotInstalledCode) codeCache.installCode(getRequest().getMethod(), compiledCode, null, getRequest().getMethod().getSpeculationLog(), installAsDefault);
383 return "Compilation[id=" + getId() + ", " + getMethod().format("%H.%n(%p)") + (getEntryBCI() == JVMCICompiler.INVOCATION_ENTRY_BCI ? "" : "@" + getEntryBCI()) + "]";
/openjdk9/hotspot/test/compiler/oracle/
H A DMethodMatcherTest.java62 // instantiate before calling getMethod on innerHelper
65 helper = getMethod(MethodMatcherTest.class, "helper");
66 getDate = getMethod(java.util.Date.class, "getDate");
67 inner = getMethod(TestCases.class, "innerHelper");
68 toString = getMethod(String.class, "toString");
182 private static Method getMethod(Class klass, String name, Class<?>... parameterTypes) { method in class:MethodMatcherTest
/openjdk9/hotspot/test/compiler/whitebox/
H A DSimpleTestCase.java149 METHOD = getMethod("method");
150 STATIC = getMethod("staticMethod");
151 OSR_METHOD = getMethod("osrMethod", long.class);
152 OSR_STATIC = getMethod("osrStaticMethod", long.class);
155 private static Method getMethod(String name, Class<?>... parameterTypes) { method in class:SimpleTestCaseHelper
/openjdk9/jdk/src/java.desktop/share/classes/java/beans/
H A DEventHandler.java387 getter = Statement.getMethod(target.getClass(),
391 getter = Statement.getMethod(target.getClass(),
396 getter = Statement.getMethod(target.getClass(), first, new Class<?>[]{});
468 Method targetMethod = Statement.getMethod(
471 targetMethod = Statement.getMethod(target.getClass(),
/openjdk9/jdk/test/java/rmi/activation/ActivationSystem/modifyDescriptor/
H A DModifyDescriptor_Stub.java50 java.rmi.server.RemoteRef.class.getMethod("invoke",
58 $method_getID_0 = ActivateMe.class.getMethod("getID", new java.lang.Class[] {});
59 $method_getMessage_1 = ActivateMe.class.getMethod("getMessage", new java.lang.Class[] {});
60 $method_getProperty_2 = ActivateMe.class.getMethod("getProperty", new java.lang.Class[] {java.lang.String.class});
61 $method_shutdown_3 = ActivateMe.class.getMethod("shutdown", new java.lang.Class[] {});
/openjdk9/jdk/test/java/rmi/activation/ActivationSystem/stubClassesPermitted/
H A DStubClassesPermitted_Stub.java50 java.rmi.server.RemoteRef.class.getMethod("invoke",
58 $method_getForbiddenClass_0 = CanCreateStubs.class.getMethod("getForbiddenClass", new java.lang.Class[] {});
59 $method_getRegistry_1 = CanCreateStubs.class.getMethod("getRegistry", new java.lang.Class[] {});
60 $method_returnGroupID_2 = CanCreateStubs.class.getMethod("returnGroupID", new java.lang.Class[] {});
61 $method_shutdown_3 = CanCreateStubs.class.getMethod("shutdown", new java.lang.Class[] {});
/openjdk9/jdk/test/tools/launcher/modules/illegalaccess/
H A DTryAccess.java81 Method m = clazz.getMethod("getUnsafe");
118 Method m = clazz.getMethod("getUnsafe");
177 Method m = helper.getMethod("export", String.class, Module.class);
184 Method m = helper.getMethod("open", String.class, Module.class);
190 Method m = helper.getMethod("open", String.class, Module.class);
/openjdk9/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.microbenchmarks/src/org/graalvm/compiler/microbenchmarks/graal/util/
H A DGraalUtil.java45 public static Method getMethod(Class<?> declaringClass, String name, Class<?>... parameterTypes) { method in class:GraalUtil
100 return getMethod(declaringClass, name, parameters);
122 return getGraph(getMethod(declaringClass, name, parameterTypes));
/openjdk9/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.test/src/org/graalvm/compiler/core/test/
H A DMarkUnsafeAccessTest.java120 ResolvedJavaMethod getMethod = asResolvedJavaMethod(getMethod(ByteBuffer.class, "get", new Class<?>[]{}));
122 ResolvedJavaMethod getMethodImpl = mbbClass.findUniqueConcreteMethod(getMethod).getResult();
/openjdk9/hotspot/test/compiler/tiered/
H A DLevelTransitionTest.java179 public static Method getMethod(Class<?> aClass, String name) { method in class:LevelTransitionTest.Helper
196 Method method = getMethod(object.getClass(), name);
231 this.executable = LevelTransitionTest.Helper.getMethod(CompileMethodHolder.class, methodName);
/openjdk9/jaxws/src/jdk.xml.ws/share/classes/com/sun/tools/internal/ws/
H A DInvoker.java137 Method runMethod = compileTool.getMethod("run",String[].class);
154 Service.class.getMethod("getPort",Class.class, WebServiceFeature[].class);
169 Service.class.getMethod("create",java.net.URL.class, QName.class, WebServiceFeature[].class);

Completed in 399 milliseconds

1234567891011>>