Home
last modified time | relevance | path

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

/libcore/ojluni/src/test/java/lang/invoke/
DMethodHandlesGeneralTest.java171 testFindVirtual(SubExample.class, IntExample.class, void.class, "Sub/v0"); in testFindVirtual()
174 testFindVirtual(Example.class, IntExample.class, void.class, "v0"); in testFindVirtual()
175 testFindVirtual(IntExample.Impl.class, IntExample.class, void.class, "Int/v0"); in testFindVirtual()
255 if (Example.class.isAssignableFrom(defc) || IntExample.class.isAssignableFrom(defc)) { in testFindVirtual()
282 testFindSpecial(Example.class, IntExample.class, void.class, true, "vd"); in testFindSpecial()
290 testFindSpecial(false, lookup, Example.class, IntExample.class, void.class, "v0"); in testFindSpecial()
417 testBind(IntExample.Impl.class, void.class, "Int/v0"); in testBind()
882 testArrayElementGetterSetter(new IntExample[10], true, TEST_ARRAY_ASE); in testArrayElementErrors()
889 testArrayElementGetterSetter(new IntExample[10], testSetter, negTest); in testArrayElementGetterSetter()
922 else if (elemType == IntExample.class) in testArrayElementGetterSetter()
DMethodHandlesTest.java411 static class Example implements IntExample {
471 public static interface IntExample { interface in MethodHandlesTest
474 public static class Impl implements IntExample {
482 static interface SubIntExample extends IntExample { }