Searched refs:lowSurrogate (Results 1 – 4 of 4) sorted by relevance
28 char highSurrogate = '\uD83D', lowSurrogate = '\uDE02'; in testChars() local29 String s = "Hello\n\tworld" + highSurrogate + lowSurrogate; in testChars()
70 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()
1476 final char lo = Character.lowSurrogate(ch); in indexOfSupplementary()1570 char lo = Character.lowSurrogate(ch); in lastIndexOfSupplementary()
4952 public static char lowSurrogate(int codePoint) { in lowSurrogate() method in Character5029 dst[index+1] = lowSurrogate(codePoint); in toSurrogates()