Lines Matching defs:Operation

43     public enum Operation {
51 Operation op();
80 Operation op = m.getAnnotation(Test.class).op();
92 private boolean isStringConcatTest(Operation op) {
93 return op == Operation.CONCAT ||
94 op == Operation.CONCAT_C ||
95 op == Operation.CONCAT_I ||
96 op == Operation.CONCAT_M;
105 private void checkIntrinsics(Operation op, Method m, String latin1, String utf16, Test antn) throws Exception {
207 private void checkStringConcat(Operation op, Method m, Test antn) throws Exception {
274 @Test(op = Operation.ARR_EQUALS_B)
279 @Test(op = Operation.ARR_EQUALS_C)
287 @Test(op = Operation.EQUALS)
295 @Test(op = Operation.COMPARE_TO)
303 @Test(op = Operation.INDEX_OF)
308 @Test(op = Operation.INDEX_OF_CON_U, constString = stringSmallU)
314 @Test(op = Operation.INDEX_OF_CON_U, constString = stringU)
320 @Test(op = Operation.INDEX_OF_CON_U, constString = emptyString)
326 @Test(op = Operation.INDEX_OF_CON_L, constString = stringSmallL)
332 @Test(op = Operation.INDEX_OF_CON_L, constString = stringL)
338 @Test(op = Operation.INDEX_OF_CON_L, constString = emptyString)
344 @Test(op = Operation.INDEX_OF_CON_UL, constString = stringSmallL)
350 @Test(op = Operation.INDEX_OF_CON_UL, constString = stringL)
356 @Test(op = Operation.INDEX_OF_CHAR)
364 @Test(op = Operation.CONCAT, inStrings = {"ABC", "\uff21\uff22\uff23"}, outStrings = {"ABC", "\uff21\uff22\uff23"})
369 @Test(op = Operation.CONCAT, inStrings = {""}, outStrings = {""})
374 @Test(op = Operation.CONCAT, inStrings = {""}, outStrings = {"null"})
379 @Test(op = Operation.CONCAT, inStrings = {"ABC", "\uff21\uff22\uff23"}, outStrings = {"abcdefghijklmnopABCabc", "abcdefghijklmnop\uff21\uff22\uff23abc"})
384 @Test(op = Operation.CONCAT, inStrings = {"ABC", "\uff21\uff22\uff23"}, outStrings = {"\u0f21\u0f22\u0f23ABC\u0f21\u0f22\u0f23\u0f24\u0f25\u0f26\u0f27\u0f28", "\u0f21\u0f22\u0f23\uff21\uff22\uff23\u0f21\u0f22\u0f23\u0f24\u0f25\u0f26\u0f27\u0f28"})
389 @Test(op = Operation.CONCAT_C, inChars = {'A', '\uff21'}, outStrings = {"A", "\uff21"})
394 @Test(op = Operation.CONCAT_C, inChars = {'A', '\uff21'}, outStrings = {"abcdefghijklmnopAabcA\uff21", "abcdefghijklmnop\uff21abcA\uff21"})
399 @Test(op = Operation.CONCAT_C, inChars = {'A', '\uff21'}, outStrings = {"\u0f21\u0f22\u0f23A\u0f21\u0f22\u0f23\u0f24\u0f25\u0f26\u0f27\u0f28\uff21A", "\u0f21\u0f22\u0f23\uff21\u0f21\u0f22\u0f23\u0f24\u0f25\u0f26\u0f27\u0f28\uff21A"})
404 @Test(op = Operation.CONCAT_I, inInts = {Integer.MIN_VALUE, -42, 42, Integer.MAX_VALUE}, outStrings = {"-2147483648", "-42", "42", "2147483647"})
409 @Test(op = Operation.CONCAT_I, inInts = {Integer.MIN_VALUE, -42, 42, Integer.MAX_VALUE}, outStrings = {"abcdefghijklmnop-2147483648abc123-123", "abcdefghijklmnop-42abc123-123", "abcdefghijklmnop42abc123-123", "abcdefghijklmnop2147483647abc123-123"})
414 @Test(op = Operation.CONCAT_I, inInts = {Integer.MIN_VALUE, -42, 42, Integer.MAX_VALUE}, outStrings = {"\u0f21\u0f22\u0f23-2147483648\u0f21\u0f22\u0f23\u0f24\u0f25\u0f26\u0f27\u0f28123-123", "\u0f21\u0f22\u0f23-42\u0f21\u0f22\u0f23\u0f24\u0f25\u0f26\u0f27\u0f28123-123", "\u0f21\u0f22\u0f2342\u0f21\u0f22\u0f23\u0f24\u0f25\u0f26\u0f27\u0f28123-123", "\u0f21\u0f22\u0f232147483647\u0f21\u0f22\u0f23\u0f24\u0f25\u0f26\u0f27\u0f28123-123"})
419 @Test(op = Operation.CONCAT, inStrings = {""}, outStrings = {"nullabcabcdefghijklmnopA123-123"})
424 @Test(op = Operation.CONCAT, inStrings = {""}, outStrings = {"nullabcabcdefghijklmnop\u0f21\u0f22\u0f23\u0f21\u0f22\u0f23\u0f24\u0f25\u0f26\u0f27\u0f28A\uff21123-123"})
429 @Test(op = Operation.CONCAT_M,