Lines Matching refs:i
102 for (int i = 0; i < returns.length; i++) { in testByteMethod()
103 byte result = byteMethod((byte)i, (byte)2, (byte)(-3), (byte)4, (byte)(-5), (byte)6, in testByteMethod()
105 if (returns[i] != result) { in testByteMethod()
106 System.out.println("Run " + i + " with " + returns[i] + " vs " + result); in testByteMethod()
117 for (int i = 0; i < returns.length; i++) { in testShortMethod()
118 short result = shortMethod((short)i, (short)2, (short)(-3), (short)4, (short)(-5), (short)6, in testShortMethod()
120 if (returns[i] != result) { in testShortMethod()
121 System.out.println("Run " + i + " with " + returns[i] + " vs " + result); in testShortMethod()
148 for (int i = 0; i < returns.length; i++) { in testCharMethod()
149 char result = charMethod((char)i, 'a', 'b', 'c', '0', '1', '2', (char)1234, (char)2345, in testCharMethod()
151 if (returns[i] != result) { in testCharMethod()
152 System.out.println("Run " + i + " with " + (int)returns[i] + " vs " + (int)result); in testCharMethod()