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.java755 MethodHandle h0 = lookup.findStaticGetter(ValueHolder.class, "s_fi", int.class); in testStaticGetter() local
756 h0.invoke(); in testStaticGetter()
757 Number t = (Number) h0.invoke(); in testStaticGetter()
758 int u = (int) h0.invoke(); in testStaticGetter()
759 Integer v = (Integer) h0.invoke(); in testStaticGetter()
760 long w = (long) h0.invoke(); in testStaticGetter()
762 byte x = (byte) h0.invoke(); in testStaticGetter()
766 String y = (String) h0.invoke(); in testStaticGetter()
770 Long z = (Long) h0.invoke(); in testStaticGetter()
778 MethodHandle h0 = lookup.findGetter(ValueHolder.class, "m_fi", int.class); in testMemberGetter() local
[all …]