Lines Matching refs:codePoint
4419 var codePoint = null;
4429 codePoint = firstByte;
4437 codePoint = tempCodePoint;
4447 codePoint = tempCodePoint;
4458 codePoint = tempCodePoint;
4463 if (codePoint === null) {
4466 codePoint = 0xFFFD;
4468 } else if (codePoint > 0xFFFF) {
4470 codePoint -= 0x10000;
4471 res.push(codePoint >>> 10 & 0x3FF | 0xD800);
4472 codePoint = 0xDC00 | codePoint & 0x3FF;
4474 res.push(codePoint);
5239 var codePoint;
5244 codePoint = string.charCodeAt(i);
5247 if (codePoint > 0xD7FF && codePoint < 0xE000) {
5251 if (codePoint > 0xDBFF) {
5262 leadSurrogate = codePoint;
5267 if (codePoint < 0xDC00) {
5269 leadSurrogate = codePoint;
5274 codePoint = (leadSurrogate - 0xD800 << 10 | codePoint - 0xDC00) + 0x10000;
5282 if (codePoint < 0x80) {
5284 bytes.push(codePoint);
5285 } else if (codePoint < 0x800) {
5287 bytes.push(codePoint >> 0x6 | 0xC0, codePoint & 0x3F | 0x80);
5288 } else if (codePoint < 0x10000) {
5290 bytes.push(codePoint >> 0xC | 0xE0, codePoint >> 0x6 & 0x3F | 0x80, codePoint & 0x3F | 0x80);
5291 } else if (codePoint < 0x110000) {
5293 …bytes.push(codePoint >> 0x12 | 0xF0, codePoint >> 0xC & 0x3F | 0x80, codePoint >> 0x6 & 0x3F | 0x8…
8003 var codePoint = words[i >>> 2] >>> 16 - i % 4 * 8 & 0xffff;
8004 utf16Chars.push(String.fromCharCode(codePoint));
8059 var codePoint = swapEndian(words[i >>> 2] >>> 16 - i % 4 * 8 & 0xffff);
8060 utf16Chars.push(String.fromCharCode(codePoint));
19367 _proto.get = function get(codePoint) {
19369 if (codePoint < 0 || codePoint > 0x10ffff) {
19372 if (codePoint < 0xd800 || codePoint > 0xdbff && codePoint <= 0xffff) {
19376 index = (this.data[codePoint >> SHIFT_2] << INDEX_SHIFT) + (codePoint & DATA_MASK);
19379 if (codePoint <= 0xffff) {
19384 …index = (this.data[LSCP_INDEX_2_OFFSET + (codePoint - 0xd800 >> SHIFT_2)] << INDEX_SHIFT) + (codeP…
19387 if (codePoint < this.highStart) {
19389 index = this.data[INDEX_1_OFFSET - OMITTED_BMP_INDEX_1_LENGTH + (codePoint >> SHIFT_1)];
19390 index = this.data[index + (codePoint >> SHIFT_2 & INDEX_2_MASK)];
19391 index = (index << INDEX_SHIFT) + (codePoint & DATA_MASK);
48551 var codePoint = Number(arguments[index])
48553 !isFinite(codePoint) || // `NaN`, `+Infinity`, or `-Infinity`
48554 codePoint < 0 || // not a valid Unicode code point
48555 codePoint > 0x10FFFF || // not a valid Unicode code point
48556 floor(codePoint) !== codePoint // not an integer
48558 throw RangeError('Invalid code point: ' + codePoint)
48560 if (codePoint <= 0xFFFF) { // BMP code point
48561 codeUnits.push(codePoint)
48564 codePoint -= 0x10000
48565 highSurrogate = (codePoint >> 10) + 0xD800
48566 lowSurrogate = (codePoint % 0x400) + 0xDC00
56619 _proto17.getCombiningClass = function getCombiningClass(codePoint) {
56620 …var combiningClass = unicode.getCombiningClass(codePoint); // Thai / Lao need some per-character w…
56622 if ((codePoint & ~0xff) === 0x0e00) {
56624 switch (codePoint) {
56647 } else if (codePoint === 0x0e3a) {
57001 var codePoint = codePoints[i];
57002 var _script2 = unicode.getScript(codePoint);
58375 var codePoint = _step32.value;
58376 var s = string + String.fromCodePoint(codePoint);
58655 function getShapingClass(codePoint) {
58656 var res = trie.get(codePoint);
58660 var category = unicode.getCategory(codePoint);
61531 var codePoint = _step65.value;
61532 result.add(String.fromCodePoint(codePoint));
63965 _proto43.hasGlyphForCodePoint = function hasGlyphForCodePoint(codePoint) {
63966 return !!this._cmapProcessor.lookup(codePoint);
63975 _proto43.glyphForCodePoint = function glyphForCodePoint(codePoint) {
63976 return this.getGlyph(this._cmapProcessor.lookup(codePoint), [codePoint]);
73637 function $43d7963e56408b24$export$410364bbb673ddbc(codePoint) {
73638 const val = $43d7963e56408b24$var$trie.get(codePoint);
73641 function $43d7963e56408b24$export$c03b919c6651ed55(codePoint) {
73642 const val = $43d7963e56408b24$var$trie.get(codePoint);
73645 function $43d7963e56408b24$export$941569448d136665(codePoint) {
73646 const val = $43d7963e56408b24$var$trie.get(codePoint);
73649 function $43d7963e56408b24$export$92f6187db8ca6d26(codePoint) {
73650 const val = $43d7963e56408b24$var$trie.get(codePoint);
73653 function $43d7963e56408b24$export$7d1258ebb7625a0d(codePoint) {
73654 let val = $43d7963e56408b24$var$trie.get(codePoint);
73680 function $43d7963e56408b24$export$52c8ea63abd07594(codePoint) {
73681 const category = $43d7963e56408b24$export$410364bbb673ddbc(codePoint);
73684 function $43d7963e56408b24$export$727d9dbc4fbb948f(codePoint) {
73685 return $43d7963e56408b24$export$410364bbb673ddbc(codePoint) === "Nd";
73687 function $43d7963e56408b24$export$a5b49f4dc6a07d2c(codePoint) {
73688 const category = $43d7963e56408b24$export$410364bbb673ddbc(codePoint);
73691 function $43d7963e56408b24$export$7b6804e8df61fcf5(codePoint) {
73692 return $43d7963e56408b24$export$410364bbb673ddbc(codePoint) === "Ll";
73694 function $43d7963e56408b24$export$aebd617640818cda(codePoint) {
73695 return $43d7963e56408b24$export$410364bbb673ddbc(codePoint) === "Lu";
73697 function $43d7963e56408b24$export$de8b4ee23b2cf823(codePoint) {
73698 return $43d7963e56408b24$export$410364bbb673ddbc(codePoint) === "Lt";
73700 function $43d7963e56408b24$export$3c52dd84024ae72c(codePoint) {
73701 const category = $43d7963e56408b24$export$410364bbb673ddbc(codePoint);
73704 function $43d7963e56408b24$export$a11bdcffe109e74b(codePoint) {
73705 const category = $43d7963e56408b24$export$410364bbb673ddbc(codePoint);
73708 function $43d7963e56408b24$export$e33ad6871e762338(codePoint) {
73709 const category = $43d7963e56408b24$export$410364bbb673ddbc(codePoint);