Home
last modified time | relevance | path

Searched refs:highSurrogate (Results 1 – 10 of 10) sorted by relevance

/libcore/luni/src/test/java/libcore/java/nio/
DCharBufferTest.java28 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/
DCharacterTest.java60 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/
DSupplementary.java325 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/
DStringUTF16.java252 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);
DString.java1995 final char hi = Character.highSurrogate(ch); in indexOfSupplementary()
2095 char hi = Character.highSurrogate(ch); in lastIndexOfSupplementary()
DCharacter.java9168 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/
DCharacter.annotated.java81 public static char highSurrogate(int codePoint) { throw new RuntimeException("Stub!"); } in highSurrogate() method in Character
/libcore/ojluni/annotations/hiddenapi/java/lang/
DCharacter.java135 public static char highSurrogate(int codePoint) { in highSurrogate() method in Character
/libcore/ojluni/annotations/flagged_api/java/lang/
DCharacter.annotated.java82 public static char highSurrogate(int codePoint) { throw new RuntimeException("Stub!"); } in highSurrogate() method in Character
/libcore/api/
Dcurrent.txt2456 method public static char highSurrogate(int);