Home
last modified time | relevance | path

Searched refs:invoker (Results 1 – 9 of 9) sorted by relevance

/libcore/ojluni/src/main/java/java/lang/invoke/
DMethodHandle.java701 MethodHandle invoker = cachedSpreadInvoker; in invokeWithArguments() local
702 if (invoker == null || !invoker.type().equals(invocationType)) { in invokeWithArguments()
703 invoker = MethodHandles.spreadInvoker(invocationType, 0); in invokeWithArguments()
704 cachedSpreadInvoker = invoker; in invokeWithArguments()
706 return invoker.invoke(asType(invocationType), arguments); in invokeWithArguments()
DCallSite.java237 MethodHandle invoker = MethodHandles.exactInvoker(this.type()); in makeDynamicInvoker() local
238 return MethodHandles.foldArguments(invoker, getTarget); in makeDynamicInvoker()
DMethodHandles.java855 return invoker(type); in findVirtualForMH()
2655 MethodHandle invoker = MethodHandles.invoker(type); in spreadInvoker() local
2657 invoker = invoker.asSpreader(Object[].class, spreadArgCount); in spreadInvoker()
2658 return invoker; in spreadInvoker()
2736 MethodHandle invoker(MethodType type) { in invoker() method in MethodHandles
/libcore/ojluni/src/test/java/lang/invoke/
DJavaDocExamplesTest.java672 MethodHandle invoker = invoker(mtype.insertParameterTypes(0, Object.class)); in testFoldArguments2() local
675 invoker = foldArguments(invoker, printArgs_INV.asType(invoker.type().changeReturnType(void.class))); in testFoldArguments2()
676 invoker = dropArguments(invoker, 2, String.class); // ignore selector in testFoldArguments2()
678 MethodHandle invokeDispatched = foldArguments(invoker, dispatch); in testFoldArguments2()
/libcore/ojluni/src/lambda/java/java/lang/invoke/
DMethodHandles.java106 MethodHandle invoker(MethodType type) { return null; } in invoker() method in MethodHandles
/libcore/ojluni/src/main/java/java/nio/charset/
DCharset-X-Coder.java.template77 * object is returned to describe the reason for termination. An invoker can
94 * CodingErrorAction#REPORT report} the error to the invoker via
524 * input then the invoker can proceed to the next step of the
563 * the invoker can provide further input beyond that contained in the given
565 * then the invoker should pass {@code false} for this parameter; if there
566 * is no possibility of providing further input then the invoker should
586 * {@code true} if, and only if, the invoker can provide no
/libcore/luni/src/test/java/libcore/java/lang/invoke/
DMethodHandleCombinersTest.java876 MethodHandle invoker = MethodHandles.invoker(target.type()); in testInvokers() local
877 assertEquals("barbar", (String) invoker.invoke(target, "bar", "bar")); in testInvokers()
878 assertEquals("barbar", (String) invoker.invoke(target, (Object) returnBar(), "bar")); in testInvokers()
880 String foo = (String) invoker.invoke(target, "bar", "bar", 24); in testInvokers()
/libcore/ojluni/annotations/hiddenapi/java/lang/invoke/
DMethodHandles.java163 public static java.lang.invoke.MethodHandle invoker(java.lang.invoke.MethodType type) { in invoker() method in MethodHandles
/libcore/api/
Dcurrent.txt4704 method public static java.lang.invoke.MethodHandle invoker(java.lang.invoke.MethodType);