Searched refs:lowSurrogate (Results 1 - 4 of 4) sorted by relevance

/libcore/luni/src/test/java/libcore/java/nio/
H A DCharBufferTest.java28 char highSurrogate = '\uD83D', lowSurrogate = '\uDE02';
29 String s = "Hello\n\tworld" + highSurrogate + lowSurrogate;
/libcore/luni/src/test/java/libcore/java/lang/
H A DCharacterTest.java70 assertEquals(0xdc00, Character.lowSurrogate(0x0000));
71 assertEquals(0xde66, Character.lowSurrogate(0x0666));
73 assertEquals(0xdc00, Character.lowSurrogate(0x010000));
74 assertEquals(0xdfff, Character.lowSurrogate(0x10ffff));
/libcore/ojluni/src/main/java/java/lang/
H A DString.java1476 final char lo = Character.lowSurrogate(ch);
1570 char lo = Character.lowSurrogate(ch);
H A DCharacter.java4915 * {@link #toCodePoint toCodePoint}{@code (highSurrogate(x), }{@link #lowSurrogate lowSurrogate}{@code (x)) == x}
4943 * {@link #isLowSurrogate isLowSurrogate}{@code (lowSurrogate(x))} and
4944 * {@link #toCodePoint toCodePoint}{@code (}{@link #highSurrogate highSurrogate}{@code (x), lowSurrogate(x)) == x}
4952 public static char lowSurrogate(int codePoint) { method in class:Character
5029 dst[index+1] = lowSurrogate(codePoint);

Completed in 308 milliseconds