Searched refs:invoker (Results 1 - 25 of 44) sorted by relevance

12

/openjdk7/jdk/src/share/sample/vm/jvm-clr/
H A DMakefile32 all: invoker.dll invoker.class invoked.exe
34 invoker.dll: invoker.obj Makefile
35 cl /LD /o invoker.dll invoker.obj mscoree.lib
37 invoker.obj: invoker.cpp invokerExp.h invoker.h Makefile
38 cl /Foinvoker.obj /DINVOKEREXPORT /c invoker
[all...]
H A Dinvoker.java41 public class invoker { class
46 System.loadLibrary("invoker");
66 System.out.println("Usage: java invoker <application>");
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/api/config/management/
H A DEndpointCreationAttributes.java42 private final Invoker invoker; field in class:EndpointCreationAttributes
50 * @param invoker The original Invoker instance.
55 final Invoker invoker,
59 this.invoker = invoker;
79 return this.invoker;
54 EndpointCreationAttributes(final boolean processHandlerAnnotation, final Invoker invoker, final EntityResolver resolver, final boolean isTransportSynchronous) argument
/openjdk7/jdk/src/share/sample/vm/clr-jvm/
H A DMakefile32 all: jinvoker.dll invoked.class invoker.exe
43 invoker.exe: invoker.cs Makefile
44 csc /unsafe invoker.cs
/openjdk7/jdk/src/macosx/native/com/apple/laf/
H A DScreenPopupFactory.m38 (JNIEnv *env, jobject screenPopupFactory, jobject comp, jobject invoker, jint x, jint y) {
41 popup = JNFCallObjectMethod(env, screenPopupFactory, jm_getPopup, comp, invoker, x, y, 2);
/openjdk7/jdk/test/java/nio/channels/AsynchronousFileChannel/
H A DCustomThreadPool.java46 final AtomicReference<Thread> invoker = new AtomicReference<Thread>();
47 ch.write(src, 0, invoker,
49 public void completed(Integer result, AtomicReference<Thread> invoker) {
50 invoker.set(Thread.currentThread());
52 public void failed(Throwable exc, AtomicReference<Thread> invoker) {
56 while ((t = invoker.get()) == null) {
/openjdk7/jdk/src/macosx/classes/com/apple/laf/
H A DScreenPopupFactory.java63 native Popup _getHeavyWeightPopup(Component comp, Component invoker, int x, int y); argument
65 public Popup getPopup(final Component comp, final Component invoker, final int x, final int y) { argument
66 if (invoker == null) throw new IllegalArgumentException("Popup.getPopup must be passed non-null contents");
70 popup = _getHeavyWeightPopup(comp, invoker, x, y);
72 popup = super.getPopup(comp, invoker, x, y);
77 final Window w = getWindow(invoker);
88 popupRootPane.putClientProperty(CPlatformWindow.WINDOW_FADE_DELEGATE, invoker);
H A DAquaPopupMenuUI.java81 final Component invoker = popupMenu.getInvoker();
82 if (!(invoker instanceof JMenu)) return; // only point corners originating from menu items
84 final Rectangle invokerBounds = invoker.getBounds();
87 invokerBounds.setLocation(invoker.getLocationOnScreen());
92 // invoker is "behind" the popup, no corners should be pointed
104 // popup is far right of invoker
116 // popup is far left of invoker
127 // popup is neither "far right" or "far left" of it's invoker
129 // popup is "middle" below it's invoker,
H A DScreenMenu.java60 ScreenMenu(final JMenu invoker) { argument
61 super(invoker.getText());
62 fInvoker = invoker;
128 final JMenu invoker = fInvoker;
129 if (invoker == null) {
130 System.err.println("invoker is null!");
137 invoker.setSelected(true);
138 invoker.validate();
140 fItemBounds = new Rectangle[invoker.getMenuComponentCount()];
153 final JMenu invoker
[all...]
H A DAquaInternalFrameDockIconUI.java282 public void show(final Component invoker) { argument
283 final int desiredLocationX = (invoker.getWidth() - getWidth()) / 2;
286 Container parent = invoker.getParent();
297 final Point p = SwingUtilities.convertPoint(invoker, desiredLocationX, desiredLocationY, parent);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/server/provider/
H A DProviderInvokerTube.java46 /*package*/ ProviderInvokerTube(Invoker invoker, ProviderArgumentsBuilder<T> argsBuilder) { argument
47 super(invoker);
52 create(Class<T> implType, WSBinding binding, Invoker invoker) { argument
61 return model.isAsync ? new AsyncProviderInvokerTube(invoker, argsBuilder)
62 : new SyncProviderInvokerTube(invoker, argsBuilder);
H A DSyncProviderInvokerTube.java49 public SyncProviderInvokerTube(Invoker invoker, ProviderArgumentsBuilder<T> argsBuilder) { argument
50 super(invoker, argsBuilder);
H A DAsyncProviderInvokerTube.java53 public AsyncProviderInvokerTube(Invoker invoker, ProviderArgumentsBuilder<T> argsBuilder) { argument
54 super(invoker, argsBuilder);
/openjdk7/jdk/src/share/classes/java/lang/invoke/
H A DInvokers.java45 // exact invoker for the outgoing call
48 // erased (partially untyped but with primitives) invoker for the outgoing call
54 // general invoker for the outgoing call
57 // general invoker for the outgoing call, uses varargs
60 // general invoker for the outgoing call; accepts a trailing Object[]
63 // invoker for an unbound callsite
75 MethodHandle invoker = exactInvoker;
76 if (invoker != null) return invoker;
83 invoker
137 checkInvoker(MethodHandle invoker) argument
[all...]
H A DInvokeGeneric.java39 // an invoker of type (MT, MH; A...) -> R
67 MethodHandle invoker;
69 invoker = MethodHandles.foldArguments(postDispatch,
72 invoker = MethodHandles.foldArguments(postDispatch, dispatcher("dispatch"));
74 return invoker;
106 MethodHandle invoker = invokers.erasedInvokerWithDrops;
107 if (invoker == null) {
108 invokers.erasedInvokerWithDrops = invoker =
111 return invoker.bindTo(newTarget);
H A DMethodTypeForm.java97 MethodHandle invoker = basicInvoker;
98 if (invoker != null) return invoker;
99 invoker = basicType.invokers().makeBasicInvoker();
100 basicInvoker = invoker;
101 return invoker;
H A DCallSite.java40 * called its {@linkplain #dynamicInvoker dynamic invoker}.
203 * MethodHandle getTarget, invoker, result;
205 * invoker = MethodHandles.exactInvoker(this.type());
206 * result = MethodHandles.foldArguments(invoker, getTarget)
215 MethodHandle invoker = MethodHandles.exactInvoker(this.type());
216 return MethodHandles.foldArguments(invoker, getTarget);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/server/
H A DInvokerTube.java54 private final Invoker invoker; field in class:InvokerTube
57 protected InvokerTube(Invoker invoker) { argument
58 this.invoker = invoker;
69 invoker.start(webServiceContext,endpoint);
82 return invoker.resolve(request);
104 invoker.dispose();
135 return invoker.invoke(p, m, args);
145 return invoker.invokeProvider(p, arg);
155 invoker
[all...]
/openjdk7/jdk/test/java/lang/invoke/
H A DThrowExceptionsTest.java64 MethodHandle invoker = exactInvoker(callee.type());
65 MethodHandle mh = invoker.bindTo(callee);
66 MethodHandle mh1 = invoker.bindTo(callee1);
75 MethodHandle invoker = exactInvoker(callee.type());
76 MethodHandle mh = foldArguments(invoker, constant(MethodHandle.class, callee));
77 MethodHandle mh1 = foldArguments(invoker, constant(MethodHandle.class, callee1));
85 MethodHandle invoker = exactInvoker(callee.type());
86 MethodHandle mh = foldArguments(invoker, constant(MethodHandle.class, callee));
87 MethodHandle mh1 = foldArguments(invoker, constant(MethodHandle.class, callee1));
95 MethodHandle invoker
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/api/server/
H A DWSEndpoint.java437 * @param invoker
439 * invoker is created using {@link InstanceResolver#createDefault}. Appservers
440 * could create its own invoker to do additional functions like transactions,
488 @Nullable Invoker invoker,
500 implType,processHandlerAnnotation, invoker,serviceName,portName,container,binding,primaryWsdl,metadata,resolver,isTransportSynchronous);
507 processHandlerAnnotation, invoker, resolver, isTransportSynchronous);
521 @Nullable Invoker invoker,
529 return create(implType,processHandlerAnnotation,invoker,serviceName,portName,container,binding,primaryWsdl,metadata,resolver,false);
545 @Nullable Invoker invoker,
554 implType,processHandlerAnnotation,invoker,serviceNam
485 create( @otNull Class<T> implType, boolean processHandlerAnnotation, @Nullable Invoker invoker, @Nullable QName serviceName, @Nullable QName portName, @Nullable Container container, @Nullable WSBinding binding, @Nullable SDDocumentSource primaryWsdl, @Nullable Collection<? extends SDDocumentSource> metadata, @Nullable EntityResolver resolver, boolean isTransportSynchronous) argument
518 create( @otNull Class<T> implType, boolean processHandlerAnnotation, @Nullable Invoker invoker, @Nullable QName serviceName, @Nullable QName portName, @Nullable Container container, @Nullable WSBinding binding, @Nullable SDDocumentSource primaryWsdl, @Nullable Collection<? extends SDDocumentSource> metadata, @Nullable EntityResolver resolver) argument
542 create( @otNull Class<T> implType, boolean processHandlerAnnotation, @Nullable Invoker invoker, @Nullable QName serviceName, @Nullable QName portName, @Nullable Container container, @Nullable WSBinding binding, @Nullable SDDocumentSource primaryWsdl, @Nullable Collection<? extends SDDocumentSource> metadata, @Nullable URL catalogUrl) argument
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/
H A DJPopupMenu.java110 transient Component invoker; field in class:JPopupMenu
174 * Constructs a <code>JPopupMenu</code> without an "invoker".
404 // If not found and we have invoker, ask invoker about his gc
881 return ((invoker != null) && !(invoker instanceof JMenu));
885 * Returns the component which is the 'invoker' of this
891 return this.invoker;
895 * Sets the invoker of this popup menu -- the component in which
898 * @param invoker th
904 setInvoker(Component invoker) argument
924 show(Component invoker, int x, int y) argument
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/server/sei/
H A DSEIInvokerTube.java66 public SEIInvokerTube(AbstractSEIModelImpl model,Invoker invoker, WSBinding binding) { argument
67 super(invoker);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/transport/http/server/
H A DEndpointImpl.java105 private final Invoker invoker; field in class:EndpointImpl
116 javax.xml.ws.spi.Invoker invoker,
118 this(bindingId, null, implClass, new InvokerImpl(invoker), features);
122 Invoker invoker, WebServiceFeature ... features) {
125 this.invoker = invoker;
144 invoker = null;
248 invoker,
115 EndpointImpl(@otNull BindingID bindingId, @NotNull Class implClass, javax.xml.ws.spi.Invoker invoker, WebServiceFeature ... features) argument
121 EndpointImpl(@otNull BindingID bindingId, Object impl, @NotNull Class implClass, Invoker invoker, WebServiceFeature ... features) argument
/openjdk7/jdk/src/share/classes/javax/swing/plaf/basic/
H A DBasicPopupMenuUI.java766 Component invoker = newPath[0].getComponent();
767 if (invoker instanceof JPopupMenu) {
768 invoker = ((JPopupMenu)invoker).getInvoker();
770 grabbedWindow = invoker instanceof Window?
771 (Window)invoker :
772 SwingUtilities.getWindowAncestor(invoker);
1134 JComponent invoker;
1140 invoker = (JComponent)p[1];
1141 popup = ((JMenu)invoker)
[all...]
/openjdk7/jdk/make/jpda/back/
H A DMakefile93 invoker.c \

Completed in 342 milliseconds

12