OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:MethodHandle
(Results
1 - 6
of
6
) sorted by null
/libcore/ojluni/src/lambda/java/java/lang/invoke/
CallSite.java
33
public abstract
MethodHandle
getTarget();
35
public abstract void setTarget(
MethodHandle
newTarget);
37
public abstract
MethodHandle
dynamicInvoker();
MethodHandles.java
41
reflectAs(Class<T> expected,
MethodHandle
target) { return null; }
60
MethodHandle
findStatic(Class<?> refc, String name, MethodType type) throws NoSuchMethodException, IllegalAccessException { return null; }
62
public
MethodHandle
findVirtual(Class<?> refc, String name, MethodType type) throws NoSuchMethodException, IllegalAccessException { return null; }
64
public
MethodHandle
findConstructor(Class<?> refc, MethodType type) throws NoSuchMethodException, IllegalAccessException { return null; }
66
public
MethodHandle
findSpecial(Class<?> refc, String name, MethodType type,
69
public
MethodHandle
findGetter(Class<?> refc, String name, Class<?> type) throws NoSuchFieldException, IllegalAccessException { return null; }
71
public
MethodHandle
findSetter(Class<?> refc, String name, Class<?> type) throws NoSuchFieldException, IllegalAccessException { return null; }
73
public
MethodHandle
findStaticGetter(Class<?> refc, String name, Class<?> type) throws NoSuchFieldException, IllegalAccessException { return null; }
75
public
MethodHandle
findStaticSetter(Class<?> refc, String name, Class<?> type) throws NoSuchFieldException, IllegalAccessException { return null; }
77
public
MethodHandle
bind(Object receiver, String name, MethodType type) throws NoSuchMethodException, IllegalAccessExc (…)
[
all
...]
MethodHandle.java
28
public abstract class
MethodHandle
{
40
public
MethodHandle
asType(MethodType newType) { return null; }
42
public
MethodHandle
asCollector(Class<?> arrayType, int arrayLength) { return null; }
44
public
MethodHandle
asVarargsCollector(Class<?> arrayType) { return null; }
48
public
MethodHandle
asFixedArity() { return null; }
50
public
MethodHandle
bindTo(Object x) { return null; }
LambdaMetafactory.java
40
MethodHandle
implMethod,
/libcore/ojluni/src/test/java/util/stream/test/org/openjdk/tests/java/lang/invoke/
SerializedLambdaTest.java
34
import java.lang.invoke.
MethodHandle
;
309
MethodHandle
fooMH = MethodHandles.lookup().findStatic(SerializedLambdaTest.class, "foo", predicateMT);
321
MethodHandle
fooMH = MethodHandles.lookup().findStatic(SerializedLambdaTest.class, "foo", predicateMT);
332
MethodHandle
fooMH = MethodHandles.lookup().findStatic(SerializedLambdaTest.class, "foo", predicateMT);
343
MethodHandle
fooMH = MethodHandles.lookup().findStatic(SerializedLambdaTest.class, "foo", predicateMT);
/libcore/
openjdk_java_files.mk
[
all
...]
Completed in 303 milliseconds