Lines Matching refs:i
97 for (int i = 0; i < returns.length; i++) { in testByteMethod()
98 byte result = byteMethod((byte)i, (byte)2, (byte)(-3), (byte)4, (byte)(-5), (byte)6, in testByteMethod()
100 if (returns[i] != result) { in testByteMethod()
101 System.out.println("Run " + i + " with " + returns[i] + " vs " + result); in testByteMethod()
112 for (int i = 0; i < returns.length; i++) { in testShortMethod()
113 short result = shortMethod((short)i, (short)2, (short)(-3), (short)4, (short)(-5), (short)6, in testShortMethod()
115 if (returns[i] != result) { in testShortMethod()
116 System.out.println("Run " + i + " with " + returns[i] + " vs " + result); in testShortMethod()
143 for (int i = 0; i < returns.length; i++) { in testCharMethod()
144 char result = charMethod((char)i, 'a', 'b', 'c', '0', '1', '2', (char)1234, (char)2345, in testCharMethod()
146 if (returns[i] != result) { in testCharMethod()
147 System.out.println("Run " + i + " with " + (int)returns[i] + " vs " + (int)result); in testCharMethod()