Searched refs:invoker (Results 1 – 9 of 9) sorted by relevance
/libcore/ojluni/src/main/java/java/lang/invoke/ |
D | MethodHandle.java | 701 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()
|
D | CallSite.java | 237 MethodHandle invoker = MethodHandles.exactInvoker(this.type()); in makeDynamicInvoker() local 238 return MethodHandles.foldArguments(invoker, getTarget); in makeDynamicInvoker()
|
D | MethodHandles.java | 855 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/ |
D | JavaDocExamplesTest.java | 672 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/ |
D | MethodHandles.java | 106 MethodHandle invoker(MethodType type) { return null; } in invoker() method in MethodHandles
|
/libcore/ojluni/src/main/java/java/nio/charset/ |
D | Charset-X-Coder.java.template | 77 * 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/ |
D | MethodHandleCombinersTest.java | 876 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/ |
D | MethodHandles.java | 163 public static java.lang.invoke.MethodHandle invoker(java.lang.invoke.MethodType type) { in invoker() method in MethodHandles
|
/libcore/api/ |
D | current.txt | 4704 method public static java.lang.invoke.MethodHandle invoker(java.lang.invoke.MethodType);
|