Lines Matching refs:x
19 public static void test01(Object x) { in test01() argument
20 x.hashCode(); in test01()
28 public static String test03(int x) { in test03() argument
33 public static String test04(int x) { in test04() argument
35 if (x < 0) { in test04()
41 public static int test05(Object x) { in test05() argument
42 int[] arr = (int[]) x; in test05()
47 public static int test06(int x) { in test06() argument
48 if (x < 10) { in test06()
58 public static void test07(boolean x) { in test07() argument
59 boolean y = x; in test07()
63 public static void test08(byte x) { in test08() argument
64 byte y = x; in test08()
68 public static void test09(char x) { in test09() argument
69 char y = x; in test09()
73 public static void test10(double x) { in test10() argument
74 double y = x; in test10()
78 public static void test11(float x) { in test11() argument
79 float y = x; in test11()
83 public static void test12(int x) { in test12() argument
84 int y = x; in test12()
88 public static void test13(long x) { in test13() argument
89 long y = x; in test13()
93 public static void test14(short x) { in test14() argument
94 short y = x; in test14()
98 public static void test15(Object x) { in test15() argument
99 Object y = x; in test15()
104 public static void test16(String x) { in test16() argument
105 String y = x; in test16()
109 public static void test17(int[] x) { in test17() argument
110 int[] y = x; in test17()