Lines Matching refs:x
24 public int test1(int x) { in test1() argument
26 switch (x) { in test1()
28 x = 10; in test1()
32 x = 20; in test1()
40 return x; in test1()
44 public int test2(int x) { in test2() argument
46 switch (x) { in test2()
48 x = 10; in test2()
53 x = 20; in test2()
61 return x; in test2()
67 public int test3(int x) { in test3() argument
68 switch (x) { in test3()
71 x = 10; in test3()
79 x = 20; in test3()
84 return x; in test3()
91 public int test4(int x) { in test4() argument
93 switch (x) { in test4()
96 x = 10; in test4()
104 x = 20; in test4()
112 return x; in test4()