Lines Matching refs:MethodHandle
17 import java.lang.invoke.MethodHandle;
114 MethodHandle mh; in $opt$BasicTest()
174 MethodHandle mh0 = null; in $opt$BasicTest()
228 MethodHandle mh = in $opt$ReturnBooleanTest()
256 MethodHandle mh = lookup.findStatic(Main.class, "Next", in $opt$ReturnCharTest()
265 MethodHandle mh = lookup.findStatic(Main.class, "Multiply", in $opt$ReturnByteTest()
274 MethodHandle mh = lookup.findStatic(Main.class, "Multiply", in $opt$ReturnShortTest()
283 MethodHandle mh = lookup.findStatic(Main.class, "Multiply", in $opt$ReturnIntTest()
292 MethodHandle mh = lookup.findStatic(Main.class, "Multiply", in $opt$ReturnLongTest()
301 MethodHandle mh = lookup.findStatic(Main.class, "Multiply", in $opt$ReturnFloatTest()
310 MethodHandle mh = lookup.findStatic(Main.class, "Multiply", in $opt$ReturnDoubleTest()
319 MethodHandle mh = lookup.findStatic(Main.class, "Multiply", in $opt$ReturnStringTest()
348 MethodHandle setMember = lookup.findSetter(ValueHolder.class, "m_z", boolean.class); in $opt$AccessorsTest()
349 MethodHandle getMember = lookup.findGetter(ValueHolder.class, "m_z", boolean.class); in $opt$AccessorsTest()
350 MethodHandle setStatic = lookup.findStaticSetter(ValueHolder.class, "s_z", boolean.class); in $opt$AccessorsTest()
351 MethodHandle getStatic = lookup.findStaticGetter(ValueHolder.class, "s_z", boolean.class); in $opt$AccessorsTest()