• Home
  • Raw
  • Download

Lines Matching refs:MethodHandle

16 import java.lang.invoke.MethodHandle;
103 static void setByte(MethodHandle m, ValueHolder v, byte value, boolean expectFailure) in setByte()
120 static void setByte(MethodHandle m, byte value, boolean expectFailure) throws Throwable { in setByte()
124 static void getByte(MethodHandle m, ValueHolder v, byte value, boolean expectFailure) in getByte()
142 static void getByte(MethodHandle m, byte value, boolean expectFailure) throws Throwable { in getByte()
146 static void setChar(MethodHandle m, ValueHolder v, char value, boolean expectFailure) in setChar()
163 static void setChar(MethodHandle m, char value, boolean expectFailure) throws Throwable { in setChar()
167 static void getChar(MethodHandle m, ValueHolder v, char value, boolean expectFailure) in getChar()
185 static void getChar(MethodHandle m, char value, boolean expectFailure) throws Throwable { in getChar()
189 static void setShort(MethodHandle m, ValueHolder v, short value, boolean expectFailure) in setShort()
206 static void setShort(MethodHandle m, short value, boolean expectFailure) throws Throwable { in setShort()
210 static void getShort(MethodHandle m, ValueHolder v, short value, boolean expectFailure) in getShort()
223 static void getShort(MethodHandle m, short value, boolean expectFailure) throws Throwable { in getShort()
227 static void setInt(MethodHandle m, ValueHolder v, int value, boolean expectFailure) in setInt()
244 static void setInt(MethodHandle m, int value, boolean expectFailure) throws Throwable { in setInt()
248 static void getInt(MethodHandle m, ValueHolder v, int value, boolean expectFailure) in getInt()
261 static void getInt(MethodHandle m, int value, boolean expectFailure) throws Throwable { in getInt()
265 static void setLong(MethodHandle m, ValueHolder v, long value, boolean expectFailure) in setLong()
282 static void setLong(MethodHandle m, long value, boolean expectFailure) throws Throwable { in setLong()
286 static void getLong(MethodHandle m, ValueHolder v, long value, boolean expectFailure) in getLong()
299 static void getLong(MethodHandle m, long value, boolean expectFailure) throws Throwable { in getLong()
303 static void setFloat(MethodHandle m, ValueHolder v, float value, boolean expectFailure) in setFloat()
320 static void setFloat(MethodHandle m, float value, boolean expectFailure) throws Throwable { in setFloat()
324 static void getFloat(MethodHandle m, ValueHolder v, float value, boolean expectFailure) in getFloat()
337 static void getFloat(MethodHandle m, float value, boolean expectFailure) throws Throwable { in getFloat()
341 static void setDouble(MethodHandle m, ValueHolder v, double value, boolean expectFailure) in setDouble()
358 static void setDouble(MethodHandle m, double value, boolean expectFailure) in setDouble()
363 static void getDouble(MethodHandle m, ValueHolder v, double value, boolean expectFailure) in getDouble()
376 static void getDouble(MethodHandle m, double value, boolean expectFailure) in getDouble()
381 static void setString(MethodHandle m, ValueHolder v, String value, boolean expectFailure) in setString()
398 static void setString(MethodHandle m, String value, boolean expectFailure) in setString()
403 static void getString(MethodHandle m, ValueHolder v, String value, boolean expectFailure) in getString()
416 static void getString(MethodHandle m, String value, boolean expectFailure) in getString()
421 static void setBoolean(MethodHandle m, ValueHolder v, boolean value, boolean expectFailure) in setBoolean()
438 static void setBoolean(MethodHandle m, boolean value, boolean expectFailure) in setBoolean()
443 static void getBoolean(MethodHandle m, ValueHolder v, boolean value, boolean expectFailure) in getBoolean()
457 static void getBoolean(MethodHandle m, boolean value, boolean expectFailure) in getBoolean()
468 static void tryAccessor(MethodHandle methodHandle, in tryAccessor()
715 MethodHandle mh = lookup.findStaticGetter(ValueHolder.class, "s_fi", int.class); in main()
720 MethodHandle mh = lookup.findStaticSetter(ValueHolder.class, "s_i", int.class); in main()
757 MethodHandle h0 = lookup.findStaticGetter(ValueHolder.class, "s_fi", int.class); in testStaticGetter()
780 MethodHandle h0 = lookup.findGetter(ValueHolder.class, "m_fi", int.class); in testMemberGetter()
817 MethodHandle h0 = lookup.findSetter(ValueHolder.class, "m_f", float.class); in testMemberSetter()
818 MethodHandle s0 = lookup.findSetter(ValueHolder.class, "m_s", short.class); in testMemberSetter()
882 MethodHandle s0 = lookup.findStaticSetter(ValueHolder.class, "s_s", short.class); in testStaticSetter()
883 MethodHandle h0 = lookup.findStaticSetter(ValueHolder.class, "s_f", float.class); in testStaticSetter()
994 MethodHandle mh = MethodHandles.lookup().unreflectSetter(f); in main()
998 MethodHandle mh = MethodHandles.lookup().unreflectGetter(f); in main()
1010 MethodHandle mh = MethodHandles.lookup().unreflectGetter(f); in main()
1014 MethodHandle mh = MethodHandles.lookup().unreflectSetter(f); in main()