Lines Matching refs:show
128 show(f.get(null)); in testFieldReflection()
130 show(f.get(null)); in testFieldReflection()
132 show(f.get(null)); in testFieldReflection()
134 show(f.get(null)); in testFieldReflection()
136 show(f.get(null)); in testFieldReflection()
138 show(f.get(null)); in testFieldReflection()
140 show(f.get(null)); in testFieldReflection()
142 show(f.get(null)); in testFieldReflection()
156 private static void show(Object o) { in show() method in Main
199 show(m.invoke(null, 4444)); in testMethodReflection()
204 show(m.invoke(null, 1111, 2222)); in testMethodReflection()
208 show(m.invoke(null, 1111, 2222)); in testMethodReflection()
212 show(m.invoke(null, new int[] { 1, 2, 3, 4 })); in testMethodReflection()
216 show(m.invoke(null, (Object) new String[] { "h", "e", "l", "l", "o" })); in testMethodReflection()
220 show(m.invoke(null, true, (byte) 0, '1', 2, 3, 4, 5, (short) 6)); in testMethodReflection()
224 show(m.invoke(null, true, (byte) 0, '1', 2, "hello world", 3, 4, 5, (short) 6)); in testMethodReflection()
229 show(m.invoke(null)); in testMethodReflection()
279 show(ctor.newInstance()); in testConstructorReflection()
282 show(ctor.newInstance(new char[] { '\u2714', 'y', 'z', '!' }, 1, 2)); in testConstructorReflection()