Lines Matching refs:b
24 static public Object test1(boolean b) { in test1() argument
25 return (b ? new String[1] : new Integer[1])[0]; in test1()
28 static public int test2(boolean b) { in test2() argument
29 Object o = b ? (Object) new int[1] : new float[1]; in test2()
33 static public int test3(boolean b) { in test3() argument
34 Object o = b ? (Object) new char[1] : new double[1]; in test3()
38 static public int test4(boolean b) { in test4() argument
39 Object o = b ? (Object) new long[1] : new boolean[1]; in test4()
43 static public int test5(boolean b) { in test5() argument
44 Object o = b ? (Object) new short[1] : new Object[1]; in test5()
48 static public int test6(boolean b) { in test6() argument
49 Object o = b ? (Object) new byte[1] : new boolean[1]; in test6()
53 static public Object test7(boolean b) { in test7() argument
54 return (b ? new String[1] : new int[1][])[0]; in test7()
57 static public Object[] test8(boolean b) { in test8() argument
58 return (b ? new String[1][] : new int[1][][])[0]; in test8()