Home
last modified time | relevance | path

Searched refs:codePoint (Results 1 – 25 of 25) sorted by relevance

/plugin/authgooglesheets/vendor/symfony/polyfill-intl-idn/Resources/unidata/
DDisallowedRanges.php11 * @param int $codePoint
15 public static function inRange($codePoint) argument
17 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 …]
/plugin/asciidocjs/node_modules/is-fullwidth-code-point/
Dindex.js4 const isFullwidthCodePoint = codePoint => { argument
5 if (Number.isNaN(codePoint)) {
12 codePoint >= 0x1100 && (
13 codePoint <= 0x115F || // Hangul Jamo
14 codePoint === 0x2329 || // LEFT-POINTING ANGLE BRACKET
15 codePoint === 0x232A || // RIGHT-POINTING ANGLE BRACKET
17 (0x2E80 <= codePoint && codePoint <= 0x3247 && codePoint !== 0x303F) ||
19 (0x3250 <= codePoint && codePoint <= 0x4DBF) ||
21 (0x4E00 <= codePoint && codePoint <= 0xA4C6) ||
23 (0xA960 <= codePoint && codePoint <= 0xA97C) ||
[all …]
Dreadme.md28 ### isFullwidthCodePoint(codePoint)
30 #### codePoint subsubsection
Dindex.d.ts17 export default function isFullwidthCodePoint(codePoint: number): boolean;
/plugin/authgooglesheets/vendor/symfony/polyfill-intl-idn/
DIdn.php237 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 …]
/plugin/combo/vendor/antlr/antlr4-php-runtime/src/Utils/
DStringUtils.php35 public static function codePoint(string $code) : int function in Antlr\\Antlr4\\Runtime\\Utils\\StringUtils
/plugin/combo/vendor/antlr/antlr4-php-runtime/src/
DInputStream.php95 return StringUtils::codePoint($this->characters[$pos]);
/plugin/combo/vendor/antlr/antlr4-php-runtime/src/Atn/
DATNDeserializer.php181 $this->data = [StringUtils::codePoint($characters[0])];
183 $code = StringUtils::codePoint($characters[$i]);
/plugin/amcharts/assets/amcharts/plugins/export/libs/pdfmake/
Dpdfmake.js831 var codePoint = null
843 codePoint = firstByte
851 codePoint = tempCodePoint
861 codePoint = tempCodePoint
872 codePoint = tempCodePoint
878 if (codePoint === null) {
881 codePoint = 0xFFFD
883 } else if (codePoint > 0xFFFF) {
885 codePoint -= 0x10000
886 res.push(codePoint >>> 10 & 0x3FF | 0xD800)
[all …]
Dpdfmake.min.js.map1codePoint","bytesPerSequence","secondByte","thirdByte","fourthByte","tempCodePoint","decodeCodePoi…
/plugin/asciidocjs/node_modules/babylon/lib/
Dindex.js6552 var codePoint = Number(arguments[index]);
6553 if (!isFinite(codePoint) || // `NaN`, `+Infinity`, or `-Infinity`
6554 codePoint < 0 || // not a valid Unicode code point
6555 codePoint > 0x10FFFF || // not a valid Unicode code point
6556 floor(codePoint) != codePoint // not an integer
6558 throw RangeError("Invalid code point: " + codePoint);
6560 if (codePoint <= 0xFFFF) {
6562 codeUnits.push(codePoint);
6566 codePoint -= 0x10000;
6567 highSurrogate = (codePoint >> 10) + 0xD800;
[all …]
/plugin/datatables/assets/pdfmake/
Dpdfmake.js4419 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 …]
/plugin/dirtylittlehelper/mermaid/editor/docs/
Deditor.worker.js.map1codePoint = charCode;\n if (strings.isHighSurrogate(charCode)) {\n if (o…
Djson.worker.js.map1codePoint = charCode;\n if (strings.isHighSurrogate(charCode)) {\n if (o…
Dbundle.js.map1codePoint = null\n var bytesPerSequence = (firstByte > 0xEF) ? 4\n : (firstByte > 0xDF) ? …
/plugin/asciidocjs/node_modules/@asciidoctor/opal-runtime/src/
Dopal.js20325 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 …]
Dindex.mjs19145 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 …]
Dindex.cjs19154 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 …]
/plugin/asciidocjs/node_modules/@asciidoctor/core/dist/graalvm/
Dasciidoctor.js20325 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 …]
/plugin/asciidocjs/node_modules/@asciidoctor/core/dist/browser/
Dasciidoctor.js20328 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 …]
/plugin/xlsx2dw/packages/exceljs/
Dexceljs.js39705 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 …]
/plugin/ditaa/ditaa/
Dditaa.jarMETA-INF/ META-INF/MANIFEST.MF net/ net/htmlparser/ net/ ...
/plugin/jplayer/vendor/happyworm/jplayer/lib/aurora/
Dogg.js2 …&63)}else{var codePoint=(c1&7)<<18|(c2&63)<<12|(c3&63)<<6|c4&63;ret=String.fromCharCode(Math.floor…
Dvorbis.js2 …&63)}else{var codePoint=(c1&7)<<18|(c2&63)<<12|(c3&63)<<6|c4&63;ret=String.fromCharCode(Math.floor…
Dopus.js2 …&63)}else{var codePoint=(c1&7)<<18|(c2&63)<<12|(c3&63)<<6|c4&63;ret=String.fromCharCode(Math.floor…