Searched refs:codePoint (Results 1 – 25 of 25) sorted by relevance
11 * @param int $codePoint15 public static function inRange($codePoint) argument17 if ($codePoint >= 128 && $codePoint <= 159) {21 if ($codePoint >= 2155 && $codePoint <= 2207) {25 if ($codePoint >= 3676 && $codePoint <= 3712) {29 if ($codePoint >= 3808 && $codePoint <= 3839) {33 if ($codePoint >= 4059 && $codePoint <= 4095) {37 if ($codePoint >= 4256 && $codePoint <= 4293) {41 if ($codePoint >= 6849 && $codePoint <= 6911) {45 if ($codePoint >= 11859 && $codePoint <= 11903) {[all …]
4 const isFullwidthCodePoint = codePoint => { argument5 if (Number.isNaN(codePoint)) {12 codePoint >= 0x1100 && (13 codePoint <= 0x115F || // Hangul Jamo14 codePoint === 0x2329 || // LEFT-POINTING ANGLE BRACKET15 codePoint === 0x232A || // RIGHT-POINTING ANGLE BRACKET17 (0x2E80 <= codePoint && codePoint <= 0x3247 && codePoint !== 0x303F) ||19 (0x3250 <= codePoint && codePoint <= 0x4DBF) ||21 (0x4E00 <= codePoint && codePoint <= 0xA4C6) ||23 (0xA960 <= codePoint && codePoint <= 0xA97C) ||[all …]
28 ### isFullwidthCodePoint(codePoint)30 #### codePoint subsubsection
17 export default function isFullwidthCodePoint(codePoint: number): boolean;
237 foreach ($codePoints as $i => $codePoint) {238 if (0x200C !== $codePoint && 0x200D !== $codePoint) {254 …if (0x200C === $codePoint && 1 === preg_match(Regex::ZWNJ, $label, $matches, \PREG_OFFSET_CAPTURE,…280 foreach (self::utf8Decode($input) as $codePoint) {281 $data = self::lookupCodePointStatus($codePoint, $useSTD3ASCIIRules);290 $str .= mb_chr($codePoint, 'utf-8');305 $str .= ($transitional ? $data['mapping'] : mb_chr($codePoint, 'utf-8'));538 foreach ($codePoints as $codePoint) {539 $data = self::lookupCodePointStatus($codePoint, $useSTD3ASCIIRules);670 foreach ($iter as $codePoint) {[all …]
35 public static function codePoint(string $code) : int function in Antlr\\Antlr4\\Runtime\\Utils\\StringUtils
95 return StringUtils::codePoint($this->characters[$pos]);
181 $this->data = [StringUtils::codePoint($characters[0])];183 $code = StringUtils::codePoint($characters[$i]);
831 var codePoint = null843 codePoint = firstByte851 codePoint = tempCodePoint861 codePoint = tempCodePoint872 codePoint = tempCodePoint878 if (codePoint === null) {881 codePoint = 0xFFFD883 } else if (codePoint > 0xFFFF) {885 codePoint -= 0x10000886 res.push(codePoint >>> 10 & 0x3FF | 0xD800)[all …]
1 …codePoint","bytesPerSequence","secondByte","thirdByte","fourthByte","tempCodePoint","decodeCodePoi…
6552 var codePoint = Number(arguments[index]);6553 if (!isFinite(codePoint) || // `NaN`, `+Infinity`, or `-Infinity`6554 codePoint < 0 || // not a valid Unicode code point6555 codePoint > 0x10FFFF || // not a valid Unicode code point6556 floor(codePoint) != codePoint // not an integer6558 throw RangeError("Invalid code point: " + codePoint);6560 if (codePoint <= 0xFFFF) {6562 codeUnits.push(codePoint);6566 codePoint -= 0x10000;6567 highSurrogate = (codePoint >> 10) + 0xD800;[all …]
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);[all …]
1 …codePoint = charCode;\n if (strings.isHighSurrogate(charCode)) {\n if (o…
1 …codePoint = null\n var bytesPerSequence = (firstByte > 0xEF) ? 4\n : (firstByte > 0xDF) ? …
20325 var codePoint;20330 codePoint = string.charCodeAt(i);20333 if (codePoint > 0xD7FF && codePoint < 0xE000) {20337 if (codePoint > 0xDBFF) {20356 leadSurrogate = codePoint;20362 if (codePoint < 0xDC00) {20368 leadSurrogate = codePoint;20373 codePoint = (leadSurrogate - 0xD800 << 10 | codePoint - 0xDC00) + 0x10000;20386 if (codePoint < 0x80) {20388 Opal.yield1(block, codePoint);[all …]
19145 var codePoint;19150 codePoint = string.charCodeAt(i);19153 if (codePoint > 0xD7FF && codePoint < 0xE000) {19157 if (codePoint > 0xDBFF) {19176 leadSurrogate = codePoint;19182 if (codePoint < 0xDC00) {19188 leadSurrogate = codePoint;19193 codePoint = (leadSurrogate - 0xD800 << 10 | codePoint - 0xDC00) + 0x10000;19206 if (codePoint < 0x80) {19208 Opal.yield1(block, codePoint);[all …]
19154 var codePoint;19159 codePoint = string.charCodeAt(i);19162 if (codePoint > 0xD7FF && codePoint < 0xE000) {19166 if (codePoint > 0xDBFF) {19185 leadSurrogate = codePoint;19191 if (codePoint < 0xDC00) {19197 leadSurrogate = codePoint;19202 codePoint = (leadSurrogate - 0xD800 << 10 | codePoint - 0xDC00) + 0x10000;19215 if (codePoint < 0x80) {19217 Opal.yield1(block, codePoint);[all …]
20328 var codePoint;20333 codePoint = string.charCodeAt(i);20336 if (codePoint > 0xD7FF && codePoint < 0xE000) {20340 if (codePoint > 0xDBFF) {20359 leadSurrogate = codePoint;20365 if (codePoint < 0xDC00) {20371 leadSurrogate = codePoint;20376 codePoint = (leadSurrogate - 0xD800 << 10 | codePoint - 0xDC00) + 0x10000;20389 if (codePoint < 0x80) {20391 Opal.yield1(block, codePoint);[all …]
39705 var codePoint = null;39714 codePoint = firstByte;39726 codePoint = tempCodePoint;39740 codePoint = tempCodePoint;39755 codePoint = tempCodePoint;39762 if (codePoint === null) {39765 codePoint = 0xFFFD;39767 } else if (codePoint > 0xFFFF) {39769 codePoint -= 0x10000;39770 res.push(codePoint >>> 10 & 0x3FF | 0xD800);[all …]
META-INF/ META-INF/MANIFEST.MF net/ net/htmlparser/ net/ ...
2 …&63)}else{var codePoint=(c1&7)<<18|(c2&63)<<12|(c3&63)<<6|c4&63;ret=String.fromCharCode(Math.floor…