Searched refs:testCodePoint (Results 1 – 3 of 3) sorted by relevance
/libcore/ojluni/src/test/java/lang/StringBuffer/ |
D | Supplementary.java | 97 testCodePoint(At, sb, 0, golden1[0][i]); in test1() 98 testCodePoint(At, sb, 9, golden1[1][i]); in test1() 99 testCodePoint(At, sb, sb.length()-1, golden1[2][i]); in test1() 104 testCodePoint(At, sb, -1); in test1() 105 testCodePoint(At, sb, sb.length()); in test1() 134 testCodePoint(Before, sb, 1, golden2[0][i]); in test2() 135 testCodePoint(Before, sb, 13, golden2[1][i]); in test2() 136 testCodePoint(Before, sb, sb.length(), golden2[2][i]); in test2() 141 testCodePoint(Before, sb, 0); in test2() 142 testCodePoint(Before, sb, sb.length()+1); in test2() [all …]
|
/libcore/ojluni/src/test/java/lang/StringBuilder/ |
D | Supplementary.java | 99 testCodePoint(At, sb, 0, golden1[0][i]); in test1() 100 testCodePoint(At, sb, 9, golden1[1][i]); in test1() 101 testCodePoint(At, sb, sb.length()-1, golden1[2][i]); in test1() 106 testCodePoint(At, sb, -1); in test1() 107 testCodePoint(At, sb, sb.length()); in test1() 136 testCodePoint(Before, sb, 1, golden2[0][i]); in test2() 137 testCodePoint(Before, sb, 13, golden2[1][i]); in test2() 138 testCodePoint(Before, sb, sb.length(), golden2[2][i]); in test2() 143 testCodePoint(Before, sb, 0); in test2() 144 testCodePoint(Before, sb, sb.length()+1); in test2() [all …]
|
/libcore/ojluni/src/test/java/lang/Character/ |
D | Supplementary.java | 501 testCodePoint("\uD800", new int[] { 0xD800 }); in testUnpaired() 502 testCodePoint("\uDC00", new int[] { 0xDC00 }); in testUnpaired() 503 testCodePoint("a\uD800", new int[] { 'a', 0xD800 }); in testUnpaired() 504 testCodePoint("a\uDC00", new int[] { 'a', 0xDC00 }); in testUnpaired() 505 testCodePoint("\uD800a", new int[] { 0xD800, 'a' }); in testUnpaired() 506 testCodePoint("\uDBFFa", new int[] { 0xDBFF, 'a' }); in testUnpaired() 507 testCodePoint("a\uD800\uD801", new int[] { 'a', 0xD800, 0xD801 }); in testUnpaired() 508 testCodePoint("a\uD800x\uDC00", new int[] { 'a', 0xD800, 'x', 0xDC00 }); in testUnpaired() 509 testCodePoint("\uDC00\uD800", new int[] { 0xDC00, 0xD800 }); in testUnpaired() 510 testCodePoint("\uD800\uDC00\uDC00", new int[] { 0x10000, 0xDC00 }); in testUnpaired() [all …]
|