Home
last modified time | relevance | path

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

/external/flatbuffers/java/com/google/flatbuffers/
DUtf8.java155 resultArr[resultPos] = DecodeUtil.highSurrogate(codepoint); in handleFourBytes()
173 private static char highSurrogate(int codePoint) { in highSurrogate() method in Utf8.DecodeUtil
/external/apache-xml/src/main/java/org/apache/xml/serializer/
DEncodings.java442 static int toCodePoint(char highSurrogate, char lowSurrogate) { in toCodePoint() argument
444 ((highSurrogate - 0xd800) << 10) in toCodePoint()
DToHTMLStream.java1230 int highSurrogate = ((int) ch) & 0x03FF; in writeAttrURI() local
1236 int wwww = ((highSurrogate & 0x03C0) >> 6); in writeAttrURI()
1240 int zzzz = (highSurrogate & 0x003C) >> 2; in writeAttrURI()
1243 int yyyyyy = ((highSurrogate & 0x0003) << 4) & 0x30; in writeAttrURI()
/external/apache-xml/src/main/java/org/apache/xml/utils/
DXMLChar.java369 public static char highSurrogate(int c) { in highSurrogate() method in XMLChar
/external/apache-xml/src/main/java/org/apache/xml/serializer/utils/
DXMLChar.java749 public static char highSurrogate(int c) { in highSurrogate() method in XMLChar