Home
last modified time | relevance | path

Searched refs:highSurrogate (Results 1 – 6 of 6) 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/main/java/java/lang/
DString.java1569 final char hi = Character.highSurrogate(ch); in indexOfSupplementary()
1663 char hi = Character.highSurrogate(ch); in lastIndexOfSupplementary()
DCharacter.java5107 public static char highSurrogate(int codePoint) { in highSurrogate() method in Character
5214 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