Home
last modified time | relevance | path

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

/art/test/959-invoke-polymorphic-accessors/src/
DMain.java740 MethodHandle h0 = lookup.findStaticGetter(ValueHolder.class, "s_fi", int.class); in testStaticGetter() local
741 h0.invoke(); in testStaticGetter()
742 Number t = (Number)h0.invoke(); in testStaticGetter()
743 int u = (int)h0.invoke(); in testStaticGetter()
744 Integer v = (Integer)h0.invoke(); in testStaticGetter()
745 long w = (long)h0.invoke(); in testStaticGetter()
747 byte x = (byte)h0.invoke(); in testStaticGetter()
751 String y = (String)h0.invoke(); in testStaticGetter()
755 Long z = (Long)h0.invoke(); in testStaticGetter()
763 MethodHandle h0 = lookup.findGetter(ValueHolder.class, "m_fi", int.class); in testMemberGetter() local
[all …]