Searched refs:highSurrogate (Results 1 – 10 of 10) sorted by relevance
/libcore/luni/src/test/java/libcore/java/nio/ |
D | CharBufferTest.java | 28 char highSurrogate = '\uD83D', lowSurrogate = '\uDE02'; in testChars() local 29 String s = "Hello\n\tworld" + highSurrogate + lowSurrogate; in testChars()
|
/libcore/luni/src/test/java/libcore/java/lang/ |
D | CharacterTest.java | 60 assertEquals(0xd7c0, Character.highSurrogate(0x0000)); in test_highSurrogate() 61 assertEquals(0xd7c1, Character.highSurrogate(0x0666)); in test_highSurrogate() 63 assertEquals(0xd800, Character.highSurrogate(0x010000)); in test_highSurrogate() 64 assertEquals(0xdbff, Character.highSurrogate(0x10ffff)); in test_highSurrogate()
|
/libcore/ojluni/src/test/java/lang/StringBuilder/ |
D | Supplementary.java | 325 check(sb.codePointAt(0) != Character.highSurrogate(suppl), in testDontReadOutOfBoundsTrailingSurrogate() 327 sb.codePointAt(0), Character.highSurrogate(suppl)); in testDontReadOutOfBoundsTrailingSurrogate()
|
/libcore/ojluni/src/main/java/java/lang/ |
D | StringUTF16.java | 252 putChar(buf, j++, Character.highSurrogate(cp)); 267 putChar(result, 0, Character.highSurrogate(cp)); 531 final char hi = Character.highSurrogate(ch); 606 char hi = Character.highSurrogate(ch);
|
D | String.java | 1995 final char hi = Character.highSurrogate(ch); in indexOfSupplementary() 2095 char hi = Character.highSurrogate(ch); in lastIndexOfSupplementary()
|
D | Character.java | 9168 public static char highSurrogate(int codePoint) { in highSurrogate() method in Character 9277 dst[index] = highSurrogate(codePoint); in toSurrogates()
|
/libcore/ojluni/annotations/sdk/nullability/java/lang/ |
D | Character.annotated.java | 81 public static char highSurrogate(int codePoint) { throw new RuntimeException("Stub!"); } in highSurrogate() method in Character
|
/libcore/ojluni/annotations/hiddenapi/java/lang/ |
D | Character.java | 135 public static char highSurrogate(int codePoint) { in highSurrogate() method in Character
|
/libcore/ojluni/annotations/flagged_api/java/lang/ |
D | Character.annotated.java | 82 public static char highSurrogate(int codePoint) { throw new RuntimeException("Stub!"); } in highSurrogate() method in Character
|
/libcore/api/ |
D | current.txt | 2456 method public static char highSurrogate(int);
|