Home
last modified time | relevance | path

Searched refs:lowSurrogate (Results 1 – 4 of 4) 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.java70 assertEquals(0xdc00, Character.lowSurrogate(0x0000)); in test_lowSurrogate()
71 assertEquals(0xde66, Character.lowSurrogate(0x0666)); in test_lowSurrogate()
73 assertEquals(0xdc00, Character.lowSurrogate(0x010000)); in test_lowSurrogate()
74 assertEquals(0xdfff, Character.lowSurrogate(0x10ffff)); in test_lowSurrogate()
/libcore/ojluni/src/main/java/java/lang/
DString.java1476 final char lo = Character.lowSurrogate(ch); in indexOfSupplementary()
1570 char lo = Character.lowSurrogate(ch); in lastIndexOfSupplementary()
DCharacter.java4952 public static char lowSurrogate(int codePoint) { in lowSurrogate() method in Character
5029 dst[index+1] = lowSurrogate(codePoint); in toSurrogates()