Lines Matching refs:specialCaller

644     void testFindSpecial(Class<?> specialCaller,
646 if (specialCaller == RemoteExample.class) {
647 testFindSpecial(false, EXAMPLE, specialCaller, defc, ret, name, params);
648 testFindSpecial(false, PRIVATE, specialCaller, defc, ret, name, params);
649 testFindSpecial(false, PACKAGE, specialCaller, defc, ret, name, params);
650 testFindSpecial(true, SUBCLASS, specialCaller, defc, ret, name, params);
651 testFindSpecial(false, PUBLIC, specialCaller, defc, ret, name, params);
654 testFindSpecial(true, EXAMPLE, specialCaller, defc, ret, name, params);
655 testFindSpecial(true, PRIVATE, specialCaller, defc, ret, name, params);
656 testFindSpecial(false, PACKAGE, specialCaller, defc, ret, name, params);
657 testFindSpecial(false, SUBCLASS, specialCaller, defc, ret, name, params);
658 testFindSpecial(false, PUBLIC, specialCaller, defc, ret, name, params);
660 void testFindSpecial(boolean positive, Lookup lookup, Class<?> specialCaller,
669 if (verbosity >= 5) System.out.println(" lookup => "+maybeMoveIn(lookup, specialCaller));
670 target = maybeMoveIn(lookup, specialCaller).findSpecial(defc, methodName, type, specialCaller);
680 System.out.println("findSpecial from "+specialCaller.getName()+" to "+defc.getName()+"."+name+"/"+type+" => "+target
686 assertEquals(specialCaller, target.type().parameterType(0));
688 Class<?>[] paramsWithSelf = cat(array(Class[].class, (Class)specialCaller), params);
837 void testUnreflectMaybeSpecial(Class<?> specialCaller,
847 boolean isSpecial = (specialCaller != null);
851 target = maybeMoveIn(lookup, specialCaller).unreflectSpecial(rmethod, specialCaller);
864 +(!isSpecial ? "" : " specialCaller="+specialCaller)
881 assertEquals(specialCaller, target.type().parameterType(0));
896 Class<?> specialCaller = rcvc;
897 testUnreflectMaybeSpecial(specialCaller, (Boolean)ac[0], (Lookup)ac[1], defc, rcvc, ret, name, params);