Home | History | Annotate | Download | only in invoke

Lines Matching defs:invoker

57  * A method handle contains a pair of special invoker methods
59 * Both invoker methods provide direct access to the method handle's
63 * The plain, inexact invoker also accepts a range of other call types.
85 * Formally this is accomplished by giving the invoker methods
366 * In order to obtain an invoker method for a particular type descriptor,
368 * or {@link java.lang.invoke.MethodHandles#invoker MethodHandles.invoker}.
459 * The spread invoker associated with this type with zero trailing arguments.
622 * MethodHandle invoker = MethodHandles.spreadInvoker(this.type(), 0);
623 * Object result = invoker.invokeExact(this, arguments);
638 MethodHandle invoker = null;
644 invoker = cachedSpreadInvoker;
647 return invoker.invoke(this, arguments);