/plugin/html2pdf/html2pdf/html2ps/ |
D | encoding.inc.php | 16 function utf8_to_code($utf8) { argument 19 if ((ord($utf8{0}) & 0xF0) == 0xF0) { 22 ((ord($utf8{0}) & 0x07) << 18) | 23 ((ord($utf8{1}) & 0x3F) << 12) | 24 ((ord($utf8{2}) & 0x3F) << 6) | 25 (ord($utf8{3}) & 0x3F); 26 } elseif ((ord($utf8{0}) & 0xE0) === 0xE0) { 29 ((ord($utf8{0}) & 0x0F) << 12) | 30 ((ord($utf8{1}) & 0x3F) << 6) | 31 (ord($utf8{2}) & 0x3F); [all …]
|
/plugin/freechat/phpfreechat/lib/json/ |
D | JSON.php | 189 * @param string $utf8 UTF-8 character 193 function utf82utf16($utf8) argument 197 return mb_convert_encoding($utf8, 'UTF-16', 'UTF-8'); 200 switch(strlen($utf8)) { 204 return $utf8; 209 return chr(0x07 & (ord($utf8{0}) >> 2)) 210 . chr((0xC0 & (ord($utf8{0}) << 6)) 211 | (0x3F & ord($utf8{1}))); 216 return chr((0xF0 & (ord($utf8{0}) << 4)) 217 | (0x0F & (ord($utf8{1}) >> 2))) [all …]
|
/plugin/animation/scripts/ |
D | jquery.scianimator.min.js | 8 …utf8:true,loopMode:c.LOOP_MODE_LOOP,labels:{text:{first:"First",previous:"Previous",play:"Play",st… property
|
/plugin/bibtex/OSBib/create/ |
D | SUCCESS.php | 38 $utf8 = new UTF8(); 41 $string = $extra ? preg_replace("/###/", $utf8->smartUtf8_decode($extra), $string) : 43 return MISC::p($utf8->encodeUtf8($string), "success", "center");
|
D | ERRORS.php | 38 $utf8 = new UTF8(); 41 $string = $extra ? preg_replace("/###/", $utf8->smartUtf8_decode($extra), $string) : 43 return MISC::p($utf8->encodeUtf8($string), "error", "center");
|
D | MESSAGES.php | 38 $utf8 = new UTF8(); 41 $string = $extra ? preg_replace("/###/", $utf8->smartUtf8_decode($extra), $string) : 46 return $utf8->encodeUtf8($string);
|
D | HELPSTYLE.php | 109 $this->utf8 = new UTF8(); 163 $this->utf8->decodeUtf8($this->messages->text("misc", "top")), "#top"), "small", "right");
|
/plugin/bibtex/OSBib/ |
D | UTF8.php | 183 $utf8 = ''; 186 $utf8.= chr( $unicode ); 188 $utf8.= chr( 192 + ( ( $unicode - ( $unicode % 64 ) ) / 64 ) ); 189 $utf8.= chr( 128 + ( $unicode % 64 ) ); 191 $utf8.= chr( 224 + ( ( $unicode - ( $unicode % 4096 ) ) / 4096 ) ); 192 $utf8.= chr( 128 + ( ( ( $unicode % 4096 ) - ( $unicode % 64 ) ) / 64 ) ); 193 $utf8.= chr( 128 + ( $unicode % 64 ) ); 196 return $utf8;
|
/plugin/statistics/ |
D | db.sql | 39 DEFAULT CHARSET =utf8 58 DEFAULT CHARSET =utf8 84 DEFAULT CHARSET =utf8 103 DEFAULT CHARSET =utf8 112 CHARACTER SET utf8 141 CHARACTER SET utf8
|
/plugin/bibtex/OSBib/format/ |
D | BIBFORMAT.php | 60 $this->utf8 = new UTF8(); 551 $pre = ($this->output == 'html') ? $this->utf8->utf8_htmlspecialchars($pre) : $pre; 552 $post = ($this->output == 'html') ? $this->utf8->utf8_htmlspecialchars($post) : $post; 770 $nameString = $this->utf8->utf8_strtoupper($nameString); 879 … $firstNameInitialMake .= $this->utf8->utf8_strtoupper($this->utf8->utf8_substr($nameparts, 0, 1)); 884 $initials[] = $this->utf8->utf8_strtoupper($this->utf8->utf8_substr(trim($name), 0, 1)); 1014 $pString = $this->utf8->decodeUtf8($pString); 1025 $newString .= $this->utf8->utf8_strtolower($this->utf8->encodeUtf8($array[1])) . $array[2]; 1028 $newString .= $this->utf8->utf8_strtolower($this->utf8->encodeUtf8($pString)); 1031 $title = $this->utf8->encodeUtf8($this->utf8->utf8_ucfirst(trim($pString))); [all …]
|
D | HELPSTYLE.php | 118 $this->utf8 = new UTF8(); 124 $this->utf8->decodeUtf8($this->messages->text("heading", "helpStyles"))); 177 $this->utf8->decodeUtf8($this->messages->text("misc", "top")), "#top"), "small", "right");
|
D | EXPORTFILTER.php | 90 $data = $this->bibformat->utf8->decodeUtf8($data);
|
D | README.txt | 72 $utf8 = new UTF8(); 78 $utf8String = $utf8->encodeUtf8(STRING: $string); 82 $string = $utf8->decodeUtf8(STRING: $utf8String); 86 $utf8String = $utf8->utf8_strtolower(STRING: $utf8String); 90 $utf8String = $utf8->utf8_strtoupper(STRING: $utf8String); 94 $utf8String = $utf8->utf8_strtolower(STRING: $utf8String, INT $start [, INT: $length=NULL]); 98 $utf8String = $utf8->utf8_ucfirst(STRING: $utf8String); 102 $length = $utf8->utf8_strlen(STRING: $utf8String);
|
/plugin/translator/ |
D | helper.php | 892 $utf8 = ''; 902 case '\b': $utf8 .= chr(0x08); $c+=1; break; 903 case '\t': $utf8 .= chr(0x09); $c+=1; break; 904 case '\n': $utf8 .= chr(0x0A); $c+=1; break; 905 case '\f': $utf8 .= chr(0x0C); $c+=1; break; 906 case '\r': $utf8 .= chr(0x0D); $c+=1; break; 907 case '\:': $utf8 .= chr(0x3A); $c+=1; break; 908 case '\=': $utf8 .= chr(0x3D); $c+=1; break; 916 $utf8 .= utf16be_to_utf8($utf16); // this as Well; 922 $utf8 .= $chrs{$c}; [all …]
|
/plugin/stopforumspam2/ |
D | helper.php | 260 $utf8 = idn_to_utf8($emexp[1]); 262 $utf8 = $emexp[0] . $utf8; 268 if (preg_match($prefix, $utf8)) return TRUE;
|
/plugin/editonlink/ |
D | style.css | 7 …background: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='ht… 21 …background: #FAFAE0 url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='…
|
/plugin/datatables/assets/datatables.net-buttons/css/ |
D | common.scss | 8 content: '\2713'; // utf8 tick 130 content: '\2713'; // utf8 tick
|
/plugin/asciidocjs/node_modules/uglify-to-browserify/ |
D | index.js | 17 …exports;\n' + uglify.FILES.map(function (path) { return fs.readFileSync(path, 'utf8') }).join('\n')
|
/plugin/dokucrypt/ |
D | script.js | 2017 var utf8 = ""; 2023 utf8 += String.fromCharCode(c); 2027 utf8 += String.fromCharCode((c >> 6) | 0xC0); 2028 utf8 += String.fromCharCode((c & 0x3F) | 0x80); 2033 utf8 += String.fromCharCode((c >> 12) | 0xE0); 2034 utf8 += String.fromCharCode(((c >> 6) & 0x3F) | 0x80); 2035 utf8 += String.fromCharCode((c & 0x3F) | 0x80); 2038 return utf8; 2043 function utf8_to_unicode(utf8) { argument 2046 while (i < utf8.length) { [all …]
|
/plugin/dokucrypt2/ |
D | script.js | 2089 var utf8 = ""; 2095 utf8 += String.fromCharCode(c); 2099 utf8 += String.fromCharCode((c >> 6) | 0xC0); 2100 utf8 += String.fromCharCode((c & 0x3F) | 0x80); 2105 utf8 += String.fromCharCode((c >> 12) | 0xE0); 2106 utf8 += String.fromCharCode(((c >> 6) & 0x3F) | 0x80); 2107 utf8 += String.fromCharCode((c & 0x3F) | 0x80); 2110 return utf8; 2115 function utf8_to_unicode(utf8) { argument 2118 while (i < utf8.length) { [all …]
|
/plugin/authgooglesheets/vendor/symfony/polyfill-intl-idn/ |
D | README.md | 4 …(https://php.net/idn-to-ascii) and [`idn_to_utf8`](https://php.net/idn-to-utf8) functions to users…
|
/plugin/llm/llm.js/wasm/ |
D | llamacpp-cpu.js | 1 …utf8"):void 0,DA=(A,g,I)=>{for(var B=(g>>>=0)+I,C=g;A[C]&&!(C>=B);)++C;if(C-g>16&&A.buffer&&EA)ret…
|
/plugin/publist/ |
D | changelog | 6 * Included simple (optional) TeX to utf8 sanitiser in syntax.php.
|
/plugin/publistx/ |
D | changelog | 16 * Included simple (optional) TeX to utf8 sanitiser in syntax.php.
|
/plugin/syntaxhighlighter3/sxh3/build/ |
D | tasks.coffee | 29 fs.readFileSync filename, 'utf8' 32 fs.writeFileSync filename, content, 'utf8'
|