Home
last modified time | relevance | path

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

123

/plugin/html2pdf/html2pdf/html2ps/
H A Dencoding.inc.php16 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);
29 ((ord($utf8{0}) & 0x0F) << 12) |
31 (ord($utf8{2}) & 0x3F);
36 ((ord($utf8{0}) & 0x1F) << 6) |
37 (ord($utf8{1}) & 0x3F);
[all …]
/plugin/freechat/phpfreechat/lib/json/
H A DJSON.php189 * @param string $utf8 UTF-8 character
193 function utf82utf16($utf8) argument
200 switch(strlen($utf8)) {
204 return $utf8;
211 | (0x3F & ord($utf8{1})));
219 | (0x7F & ord($utf8{2})));
517 $utf8 = '';
527 $utf8 .= chr(0x08);
531 $utf8 .= chr(0x09);
535 $utf8 .= chr(0x0A);
[all …]
/plugin/animation/scripts/
H A Djquery.scianimator.min.js8utf8:true,loopMode:c.LOOP_MODE_LOOP,labels:{text:{first:"First",previous:"Previous",play:"Play",st… property in e.fn.scianimator.defaults
/plugin/bibtex/OSBib/create/
H A DSUCCESS.php38 $utf8 = new UTF8();
41 $string = $extra ? preg_replace("/###/", $utf8->smartUtf8_decode($extra), $string) :
43 return MISC::p($utf8->encodeUtf8($string), "success", "center");
H A DERRORS.php38 $utf8 = new UTF8();
41 $string = $extra ? preg_replace("/###/", $utf8->smartUtf8_decode($extra), $string) :
43 return MISC::p($utf8->encodeUtf8($string), "error", "center");
H A DMESSAGES.php38 $utf8 = new UTF8();
41 $string = $extra ? preg_replace("/###/", $utf8->smartUtf8_decode($extra), $string) :
46 return $utf8->encodeUtf8($string);
H A DHELPSTYLE.php109 $this->utf8 = new UTF8();
163 $this->utf8->decodeUtf8($this->messages->text("misc", "top")), "#top"), "small", "right");
/plugin/bibtex/OSBib/
H A DUTF8.php183 $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/
H A Ddb.sql39 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/
H A DBIBFORMAT.php60 $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 …]
H A DHELPSTYLE.php118 $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");
H A DEXPORTFILTER.php90 $data = $this->bibformat->utf8->decodeUtf8($data);
H A DREADME.txt72 $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/
H A Dhelper.php892 $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;
922 $utf8 .= $chrs{$c};
950 $utf8 .= chr($ord_chrs_c);
[all …]
/plugin/stopforumspam2/
H A Dhelper.php260 $utf8 = idn_to_utf8($emexp[1]);
262 $utf8 = $emexp[0] . $utf8;
268 if (preg_match($prefix, $utf8)) return TRUE;
/plugin/editonlink/
H A Dstyle.css7 …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/authgooglesheets/vendor/symfony/polyfill-intl-idn/
H A DREADME.md4 …(https://php.net/idn-to-ascii) and [`idn_to_utf8`](https://php.net/idn-to-utf8) functions to users…
/plugin/dokucrypt/
H A Dscript.js2017 var utf8 = "";
2023 utf8 += String.fromCharCode(c);
2027 utf8 += String.fromCharCode((c >> 6) | 0xC0);
2033 utf8 += String.fromCharCode((c >> 12) | 0xE0);
2038 return utf8;
2043 function utf8_to_unicode(utf8) { argument
2046 while (i < utf8.length) {
2047 b1 = utf8.charCodeAt(i);
2052 b2 = utf8.charCodeAt(i + 1);
2056 b2 = utf8.charCodeAt(i + 1);
[all …]
/plugin/dokucrypt2/
H A Dscript.js2089 var utf8 = "";
2095 utf8 += String.fromCharCode(c);
2099 utf8 += String.fromCharCode((c >> 6) | 0xC0);
2105 utf8 += String.fromCharCode((c >> 12) | 0xE0);
2110 return utf8;
2115 function utf8_to_unicode(utf8) { argument
2118 while (i < utf8.length) {
2119 b1 = utf8.charCodeAt(i);
2124 b2 = utf8.charCodeAt(i + 1);
2128 b2 = utf8.charCodeAt(i + 1);
[all …]
/plugin/publist/
H A Dchangelog6 * Included simple (optional) TeX to utf8 sanitiser in syntax.php.
/plugin/publistx/
H A Dchangelog16 * Included simple (optional) TeX to utf8 sanitiser in syntax.php.
/plugin/syntaxhighlighter3/sxh3/build/
H A Dtasks.coffee29 fs.readFileSync filename, 'utf8'
32 fs.writeFileSync filename, content, 'utf8'
/plugin/amcharts/assets/amcharts/plugins/export/
H A Dexport.css206 …background-image: url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org…
216 …background-image: url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org…
226 …background-image: url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org…
229 …background-image: url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org…
/plugin/publistf/
H A DCHANGELOG.md51 * Included simple (optional) TeX to utf8 sanitiser in syntax.php.
/plugin/bpmnio/vendor/bpmn-js/dist/assets/
H A Dbpmn-js.css80 …content: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="17" height="1…

123