Home
last modified time | relevance | path

Searched refs:highSurrogate (Results 1 - 8 of 8) sorted by relevance

/third_party/node/deps/npm/node_modules/iconv-lite/encodings/
H A Dutf32.js29 this.highSurrogate = 0;
43 if (this.highSurrogate) {
48 write32.call(dst, this.highSurrogate, offset);
53 var codepoint = (((this.highSurrogate - 0xD800) << 10) | (code - 0xDC00)) + 0x10000;
57 this.highSurrogate = 0;
64 this.highSurrogate = code;
71 this.highSurrogate = 0;
83 if (!this.highSurrogate)
89 buf.writeUInt32LE(this.highSurrogate, 0);
91 buf.writeUInt32BE(this.highSurrogate,
[all...]
/third_party/node/deps/npm/node_modules/jsonparse/
H A Djsonparse.js62 this.highSurrogate = undefined;
223 if (this.highSurrogate !== undefined && intVal >= 0xDC00 && intVal < (0xDFFF + 1)) { //<56320,57343> - lowSurrogate
224 this.appendStringBuf(new Buffer(String.fromCharCode(this.highSurrogate, intVal)));
225 this.highSurrogate = undefined;
226 } else if (this.highSurrogate === undefined && intVal >= 0xD800 && intVal < (0xDBFF + 1)) { //<55296,56319> - highSurrogate
227 this.highSurrogate = intVal;
229 if (this.highSurrogate !== undefined) {
230 this.appendStringBuf(new Buffer(String.fromCharCode(this.highSurrogate)));
231 this.highSurrogate
[all...]
/third_party/node/lib/internal/webstreams/
H A Dencoding.js68 const highSurrogate = this[kPendingHighSurrogate];
71 finalChunk += highSurrogate + item;
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/
H A DFormattedStringBuilderTest.java143 sb7.insertChar16(0, Character.highSurrogate(cas), null); in testInsertAppendCodePoint()
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/format/
H A DFormattedStringBuilderTest.java146 sb7.insertChar16(0, Character.highSurrogate(cas), null); in testInsertAppendCodePoint()
/third_party/glfw/src/
H A Dwin32_window.c666 window->win32.highSurrogate = (WCHAR) wParam; in windowProc()
673 if (window->win32.highSurrogate) in windowProc()
675 codepoint += (window->win32.highSurrogate - 0xd800) << 10; in windowProc()
683 window->win32.highSurrogate = 0; in windowProc()
H A Dwin32_platform.h435 WCHAR highSurrogate; member
/third_party/protobuf/java/core/src/main/java/com/google/protobuf/
H A DUtf8.java1951 resultArr[resultPos] = DecodeUtil.highSurrogate(codepoint); in handleFourBytes()
1965 private static char highSurrogate(int codePoint) { in highSurrogate() method in Utf8.DecodeUtil

Completed in 10 milliseconds