Lines Matching refs:System
38 System.out.println("Method name is " + meth.getName());
39 System.out.println(" Declaring class is "
43 System.out.println(" Arg " + i + ": " + params[i].getName());
46 System.out.println(" Exc " + i + ": " + exceptions[i].getName());
47 System.out.println(" Return type is " + meth.getReturnType().getName());
48 System.out.println(" Access flags are 0x"
50 //System.out.println(" GenericStr is " + meth.toGenericString());
54 System.out.println("Field name is " + field.getName());
55 System.out.println(" Declaring class is "
57 System.out.println(" Field type is " + field.getType().getName());
58 System.out.println(" Access flags are 0x"
78 System.out.println(" ::: " + one + ":" + two + ":" + three);
92 System.err.println("succeeded on package-scope method");
104 System.err.println("inner-method invoke unexpectedly worked");
113 System.err.println("field get unexpectedly worked: " + x);
118 System.out.println("----- unexpected exception -----");
152 System.out.println("Before, float is "
157 System.out.println("Result of invoke: " + boxval.intValue());
159 System.out.println("Calling no-arg void-return method");
167 System.out.println("GLITCH: didn't throw");
169 System.out.println("Invoke got expected exception:");
170 System.out.println(ite.getClass().getName());
171 System.out.println(ite.getCause());
174 System.out.println("GLITCH: invoke got wrong exception:");
177 System.out.println("");
185 System.out.println(" string1 value is '" + strVal + "'");
191 System.out.println(" string1 value is now '" + strVal + "'");
197 System.out.println("WARNING: able to store Object into String");
200 System.out.println(" got expected illegal obj store exc");
208 System.out.println("WARNING: able to access string4: "
212 System.out.println(" got expected access exc");
215 System.out.println(" got the other expected access exc");
221 System.out.println("WARNING: able to get string3 in wrong obj: "
225 System.out.println(" got expected arg exc");
240 System.out.println("ERROR: Expected NoSuchFieldException");
244 System.out.println(" NoSuchFieldException '" + msg +
255 System.out.println("pubLong initial value is " +
259 System.out.println("pubLong new value is " +
268 System.out.println(" superInt value is " + intVal);
270 System.out.println(" superInt boxed is " + boxedIntVal);
274 System.out.println(" superInt value is now " + intVal);
277 System.out.println(" superInt value (from short) is now " +intVal);
280 System.out.println(" superInt value is now " + intVal);
283 System.out.println("FAIL: expected exception not thrown");
286 System.out.println(" got expected long->int failure");
290 System.out.println("FAIL: expected exception not thrown");
293 System.out.println(" got expected long->int failure");
297 System.out.println("FAIL: expected exception not thrown");
300 System.out.println(" got expected string->int failure");
305 System.out.println("FAIL: expected exception not thrown");
308 System.out.println(" got expected int->short failure");
314 System.out.println(" superClassInt value is " + superClassIntVal);
319 System.out.println(" staticDoubleVal value is " + staticDoubleVal);
323 System.out.println("FAIL: expected exception not thrown");
326 System.out.println(" got expected double->long failure");
335 System.out.println("as expected: aPrivateInt not found");
339 System.out.println("BUG: got aPrivateInt");
345 System.out.println(" Constant test value is " + val);
351 System.out.println(" cantTouchThis is " + intVal);
354 System.out.println("ERROR: set-final did not throw exception");
356 System.out.println(" as expected: set-final throws exception");
359 System.out.println(" cantTouchThis is still " + intVal);
361 System.out.println(" " + field + " accessible=" + field.isAccessible());
363 System.out.println(" " + field + " accessible=" + field.isAccessible());
366 System.out.println(" cantTouchThis is now " + intVal);
369 System.out.println(" cantTouchThis is now " + intVal);
377 System.out.println("cons modifiers=" + cons.getModifiers());
383 System.out.println("ERROR: Class.newInstance did not throw exception");
385 System.out.println("got expected exception for Class.newInstance");
387 System.out.println("ERROR: Class.newInstance got unexpected exception: " +
394 System.out.println("ERROR: Constructor.newInstance did not throw exception");
396 System.out.println("got expected exception for Constructor.newInstance");
398 System.out.println("ERROR: Constructor.newInstance got unexpected exception: " +
403 System.out.println("----- unexpected exception -----");
407 System.out.println("ReflectTest done!");
421 System
423 System.out.println(m + " accessible=" + m.isAccessible());
446 System.out.println("checkType invoking null");
449 System.out.println("ERROR: should throw InvocationTargetException");
451 System.out.println("checkType got expected exception");
460 System.out.println("calling const-class FieldNoisyInitUser.class");
462 System.out.println("called const-class FieldNoisyInitUser.class");
466 System.out.println("got fields");
469 System.out.println("got field");
471 System.out.println("read field value");
477 System.out.println("");
482 System.out.println("calling const-class MethodNoisyInitUser.class");
484 System.out.println("called const-class MethodNoisyInitUser.class");
488 System.out.println("got methods");
491 System.out.println("got method");
493 System.out.println("invoked method");
499 System.out.println("");
516 System.out.println("generic field: " + listType);
527 System.out.println("generic method " + method.getName() + " params='"
537 System.out.println("generic ctor " + ctor.getName() + " params='"
572 System.out.println("ERROR: fields shouldn't have reference equality");
574 System.out.println("fields are unique");
577 System.out.println("fields are .equals");
579 System.out.println("ERROR: fields fail equality");
589 System.out.println("ERROR: methods shouldn't have reference equality");
591 System.out.println("methods are unique");
594 System.out.println("methods are .equals");
596 System.out.println("ERROR: methods fail equality");
621 System.out.println("type1 is a ParameterizedType");
624 System.out.println("type2 is a ParameterizedType");
627 System.out.println("type3 is a ParameterizedType");
631 System.out.println("type1("+type1+") equals type2("+type2+")");
633 System.out.println("type1("+type1+") does not equal type2("+type2+")");
637 System.out.println("type1("+type1+") equals type3("+type3+")");
639 System.out.println("type1("+type1+") does not equal type3("+type3+")");
642 System.out.println("type1("+type1+") hashCode equals type2("+type2+") hashCode");
644 System.out.println(
649 System.out.println("type1("+type1+") hashCode equals type3("+type3+") hashCode");
651 System.out.println(
677 System.out.println("type1 is a GenericArrayType");
680 System.out.println("type2 is a GenericArrayType");
683 System.out.println("type3 is a GenericArrayType");
687 System.out.println("type1("+type1+") equals type2("+type2+")");
689 System.out.println("type1("+type1+") does not equal type2("+type2+")");
693 System.out.println("type1("+type1+") equals type3("+type3+")");
695 System.out.println("type1("+type1+") does not equal type3("+type3+")");
698 System.out.println("type1("+type1+") hashCode equals type2("+type2+") hashCode");
700 System.out.println(
705 System.out.println("type1("+type1+") hashCode equals type3("+type3+") hashCode");
707 System.out.println(
715 System.out.println("Didn't get an exception from Method.class.getDeclaredConstructor().setAccessible");
719 System.out.println(e);
723 System.out.println("Didn't get an exception from Field.class.getDeclaredConstructor().setAccessible");
727 System.out.println(e);
731 System.out.println("Didn't get an exception from Class.class.getDeclaredConstructor().setAccessible");
735 System.out.println(e);
763 System.out.println("SuperTarget constructor ()V");
769 System.out.println("myMethod (F)I " + floatArg);
779 System.out.println("Target constructor ()V");
783 System.out.println("Target constructor (IF)V : ii="
789 System.out.println("myMethod (I)I");
790 System.out.println(" arg=" + intarg + " anInt=" + anInt);
795 System.out.println("myMethod: " + strarg[0] + " " + f + " " + c + " !");
800 System.out.println("myNoargMethod ()V");
804 System.out.println("throwingMethod");
809 System.out.println("misc");
829 System.out.println("FieldNoisyInit is initializing");
837 System.out.println("FieldNoisyInitUser is initializing");
845 System.out.println("MethodNoisyInit is initializing");
853 System.out.println("MethodNoisyInitUser is initializing");
881 System.out.println("ERROR: values don't match");
884 System.out.println(e);