Searched refs:invokeMethod (Results 1 - 25 of 46) sorted by relevance

12

/openjdk10/jdk/src/jdk.jdi/share/classes/com/sun/jdi/
H A DInterfaceType.java139 * if invokeMethod is called from the client's event handler thread. In this
140 * case, this thread will be waiting for the invokeMethod to complete and
144 * be disabled before doing the invokeMethod, or the invokeMethod should
190 default Value invokeMethod(ThreadReference thread, Method method, method in interface:InterfaceType
H A DObjectReference.java220 * if invokeMethod is called from the client's event handler thread. In this
221 * case, this thread will be waiting for the invokeMethod to complete and
225 * be disabled before doing the invokeMethod, or the invokeMethod should
271 Value invokeMethod(ThreadReference thread, Method method, method in interface:ObjectReference
H A DClassType.java188 * if invokeMethod is called from the client's event handler thread. In this
189 * case, this thread will be waiting for the invokeMethod to complete and
193 * be disabled before doing the invokeMethod, or the invokeMethod should
237 Value invokeMethod(ThreadReference thread, Method method, method in interface:ClassType
/openjdk10/nashorn/test/script/basic/
H A DJDK-8023551.js25 * JDK-8023551: Mirror functions can not be invoked using invokeMethod, invokeFunction
42 e.invokeMethod(obj, "foo", "world");
H A DJDK-8008197.js53 var res = e.invokeMethod(e.get("foo"), "callMe", function() {
/openjdk10/nashorn/samples/engine/
H A Dcallmethod.js64 engine.invokeMethod(scriptObj, "func");
/openjdk10/jdk/src/java.scripting/share/classes/javax/script/
H A DInvocable.java60 public Object invokeMethod(Object thiz, String name, Object... args) method in interface:Invocable
98 * interface may be implemented using the <code>invokeMethod</code> method.
/openjdk10/nashorn/docs/source/
H A DInvokeScriptMethod.java57 inv.invokeMethod(obj, "hello", "Script Method !!" );
/openjdk10/jaxws/src/java.xml.ws/share/classes/com/sun/xml/internal/ws/api/server/
H A DInvoker.java91 return (T)invoke(p,invokeMethod,arg);
102 private static final Method invokeMethod; field in class:Invoker
106 invokeMethod = Provider.class.getMethod("invoke",Object.class);
H A DAbstractInstanceResolver.java61 protected static void invokeMethod(final @Nullable Method method, final Object instance, final Object... args) { method in class:AbstractInstanceResolver
/openjdk10/jdk/test/javax/swing/JSlider/6794836/
H A Dbug6794836.java61 if (invokeMethod("getHighestValueLabel", ui) != maxLabel) {
65 if (invokeMethod("getLowestValueLabel", ui) != minLabel) {
72 private static Object invokeMethod(String name, BasicSliderUI ui) throws Exception { method in class:bug6794836
/openjdk10/hotspot/src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/utilities/soql/
H A DInvocableCallable.java52 return invocable.invokeMethod(target, name, args);
/openjdk10/jdk/test/javax/script/
H A DTest8.java52 inv.invokeMethod(scriptObj, "main", "Mustang");
/openjdk10/jaxws/src/java.xml.ws/share/classes/com/sun/xml/internal/ws/server/
H A DAbstractMultiInstanceResolver.java69 invokeMethod(postConstructMethod,t);
89 invokeMethod(preDestroyMethod,instance);
H A DSingletonResolver.java57 invokeMethod(findAnnotatedMethod(singleton.getClass(),PostConstruct.class),singleton);
61 invokeMethod(findAnnotatedMethod(singleton.getClass(),PreDestroy.class),singleton);
/openjdk10/jdk/test/com/sun/jdi/
H A DInvokeVarArgs.java85 IntegerValue size = (IntegerValue) targetObj.invokeMethod(bpe.thread(), sizeMethod, Arrays.asList(new Value[]{arrayVal}), 0);
90 size = (IntegerValue) targetObj.invokeMethod(bpe.thread(), sizeMethod, Arrays.asList(new Value[]{array2Val}), 0);
H A DPopAndInvokeTest.java27 * @summary JDWP: Cannot do an invokeMethod after a popFrames operation
65 * and then do an invokeMethod on invokeee.
126 * Verify that an invokeMethod works ok after a popFrames
136 targetClass.invokeMethod(mainThread, invokeeeMethod,
145 * Verify that an invokeMethod gets an IncompatibleThreadStateException
170 targetClass.invokeMethod(mainThread, invokeeeMethod,
/openjdk10/jdk/test/java/util/jar/JarFile/mrjar/
H A DMultiReleaseJarProperties.java113 invokeMethod(vcls, rtVersion);
116 protected void invokeMethod(Class<?> vcls, int expected) throws Throwable { method in class:MultiReleaseJarProperties
137 invokeMethod(vcls, force ? rtVersion : BASE_VERSION);
H A DMultiReleaseJarHttpProperties.java93 invokeMethod(vcls, rtVersion);
/openjdk10/jdk/test/sanity/client/lib/jemmy/src/org/netbeans/jemmy/
H A DClassReference.java97 invokeMethod("main", methodParams, classes);
124 public Object invokeMethod(String method_name, Object[] params, Class<?>[] params_classes) method in class:ClassReference
H A DEventDispatcher.java314 robotReference.invokeMethod("setAutoDelay", params, paramClasses);
357 robotReference.invokeMethod("setAutoWaitForIdle", params, paramClasses);
663 public Object invokeMethod(String method_name, Object[] params, Class<?>[] params_classes) method in class:EventDispatcher
795 * @see #invokeMethod(String, Object[], Class[])
801 return invokeMethod(method_name, params, params_classes);
988 robotReference.invokeMethod(method, params, paramClasses);
1075 return reference.invokeMethod(methodName, params, paramClasses);
/openjdk10/nashorn/test/src/jdk/nashorn/api/scripting/test/
H A DInvocableTest.java63 final Object res = ((Invocable) e).invokeMethod(obj, "hello");
73 * Check that we can call invokeMethod on an object that we got by
89 final Object res = ((Invocable) e).invokeMethod(obj, "hello");
99 * Check that invokeMethod throws NPE on null method name.
107 ((Invocable) e).invokeMethod(obj, null);
119 * Check that invokeMethod throws NoSuchMethodException on missing method.
127 ((Invocable) e).invokeMethod(obj, "nonExistentMethod");
147 ((Invocable) e).invokeMethod(new Object(), "toString");
167 ((Invocable) e).invokeMethod(null, "toString");
189 // pass object from engine1 to engine2 as 'thiz' for invokeMethod
[all...]
/openjdk10/corba/src/java.corba/share/classes/com/sun/corba/se/impl/activation/
H A DServerMain.java343 private void invokeMethod( Method method ) method in class:ServerCallback
359 invokeMethod( shutdownMethod ) ;
370 invokeMethod( installMethod ) ;
379 invokeMethod( uninstallMethod ) ;
/openjdk10/jdk/test/java/lang/StringBuffer/
H A DTestSynchronization.java132 private static void invokeMethod(Class<?> aClass, final Method m, method in class:TestSynchronization
193 invokeMethod(aClass, m, args);
205 invokeMethod(aClass, m, args);
/openjdk10/jdk/test/sanity/client/lib/jemmy/src/org/netbeans/jemmy/drivers/input/
H A DRobotDriver.java210 robotReference.invokeMethod(method, params, paramClasses);
230 robotReference.invokeMethod("waitForIdle", null, null);
325 robotReference.invokeMethod("setAutoDelay",

Completed in 122 milliseconds

12