Home
last modified time | relevance | path

Searched refs:encoding (Results 1 – 14 of 14) sorted by relevance

/template/twigstarter/vendor/symfony/polyfill-mbstring/
H A DMbstring.php153 if (null !== $encoding && !is_scalar($encoding)) {
164 $encoding = self::getEncoding($encoding);
230 $encoding = self::getEncoding($encoding);
278 $encoding = self::getEncoding($encoding);
486 $encoding = self::getEncoding($encoding);
496 $encoding = self::getEncoding($encoding);
517 $encoding = self::getEncoding($encoding);
614 $encoding = self::getEncoding($encoding);
655 $encoding = self::getEncoding($encoding);
736 $encoding = self::getEncoding($encoding);
[all …]
H A Dbootstrap.php37 …function mb_internal_encoding($encoding = null) { return p\Mbstring::mb_internal_encoding($encodin… argument
46 function mb_encoding_aliases($encoding) { return p\Mbstring::mb_encoding_aliases($encoding); } argument
55 function mb_detect_order($encoding = null) { return p\Mbstring::mb_detect_order($encoding); } argument
61 …function mb_strlen($string, $encoding = null) { return p\Mbstring::mb_strlen($string, $encoding); } argument
67 …function mb_strtolower($string, $encoding = null) { return p\Mbstring::mb_strtolower($string, $enc… argument
70 …function mb_strtoupper($string, $encoding = null) { return p\Mbstring::mb_strtoupper($string, $enc… argument
103 function mb_http_output($encoding = null) { return p\Mbstring::mb_http_output($encoding); } argument
106 …function mb_strwidth($string, $encoding = null) { return p\Mbstring::mb_strwidth($string, $encodin… argument
123 function mb_ord($string, $encoding = null) { return p\Mbstring::mb_ord($string, $encoding); } argument
126 …function mb_chr($codepoint, $encoding = null) { return p\Mbstring::mb_chr($codepoint, $encoding); } argument
[all …]
H A Dbootstrap80.php33 …ction mb_internal_encoding(?string $encoding = null): string|bool { return p\Mbstring::mb_internal… argument
42 …function mb_encoding_aliases(?string $encoding): array { return p\Mbstring::mb_encoding_aliases((s… argument
51 …ion mb_detect_order(array|string|null $encoding = null): array|bool { return p\Mbstring::mb_detect… argument
57 …mb_strlen(?string $string, ?string $encoding = null): int { return p\Mbstring::mb_strlen((string) … argument
63 …olower(?string $string, ?string $encoding = null): string { return p\Mbstring::mb_strtolower((stri… argument
66 …oupper(?string $string, ?string $encoding = null): string { return p\Mbstring::mb_strtoupper((stri… argument
99 …function mb_http_output(?string $encoding = null): string|bool { return p\Mbstring::mb_http_output… argument
102 …strwidth(?string $string, ?string $encoding = null): int { return p\Mbstring::mb_strwidth((string)… argument
119 …n mb_ord(?string $string, ?string $encoding = null): int|false { return p\Mbstring::mb_ord((string… argument
122 …mb_chr(?int $codepoint, ?string $encoding = null): string|false { return p\Mbstring::mb_chr((int) … argument
[all …]
/template/twigstarter/vendor/symfony/polyfill-php72/
H A Dbootstrap.php50 function mb_ord($string, $encoding = null) { return p\Php72::mb_ord($string, $encoding); } argument
53 function mb_chr($codepoint, $encoding = null) { return p\Php72::mb_chr($codepoint, $encoding); } argument
56 …g, $encoding = null) { $encoding = null === $encoding ? mb_internal_encoding() : $encoding; return… argument
H A DPhp72.php173 public static function mb_chr($code, $encoding = null) argument
185 if ('UTF-8' !== $encoding = $encoding ?? mb_internal_encoding()) {
186 $s = mb_convert_encoding($s, $encoding, 'UTF-8');
192 public static function mb_ord($s, $encoding = null) argument
194 if (null === $encoding) {
196 } elseif ('UTF-8' !== $encoding) {
197 $s = mb_convert_encoding($s, 'UTF-8', $encoding);
/template/sugna/nbproject/
H A Dproject.properties3 source.encoding=UTF-8
/template/hexa/genericons/
H A DREADME.md76 **Base64 encoding**
80encoding comes with a 25% filesize overhead compared to just loading the WOFF file directly. If yo…
149 * Base64 encoding is now included by default in the helper CSS. This makes it drop-in easy to get G…
/template/mikio/inc/
H A Dsimple_html_dom.php1048 // Check if the reported encoding could have been incorrect and the text is actually already UTF-8
1732 // https://www.w3.org/TR/html/document-metadata.html#character-encoding-declaration
1748 * purpose is to detect which multibyte encoding is in use,
1759 $encoding = mb_detect_encoding(
1764 if ($encoding === 'CP1252' || $encoding === 'ISO-8859-1') {
1770 $encoding = 'CP1251';
1774 if ($encoding !== false) {
1775 $charset = $encoding;
/template/bootstrap3/inc/
H A Dsimple_html_dom.php1044 // Check if the reported encoding could have been incorrect and the text is actually already UTF-8
1726 // https://www.w3.org/TR/html/document-metadata.html#character-encoding-declaration
1742 * purpose is to detect which multibyte encoding is in use,
1753 $encoding = mb_detect_encoding(
1758 if ($encoding === 'CP1252' || $encoding === 'ISO-8859-1') {
1764 $encoding = 'CP1251';
1768 if ($encoding !== false) {
1769 $charset = $encoding;
/template/notes/css/
H A D.rss.xsl.swp7encoding="UTF-8" indent="yes"/>� xmlns:itunes="http://www.itunes.com/dtds/podcast-1…
/template/sprintdoc/css/
H A Dbase_fontello-icons.less3 * (If you add new icons in the fontello set you have to add the icon class and associated character encoding here)
/template/a_new_day/js/
H A Dprototype.js810 encoding: 'UTF-8', property in Ajax.Base.setOptions.options
893 (this.options.encoding ? '; charset=' + this.options.encoding : '');
/template/battlehorse/js/
H A Dprototype.js810 encoding: 'UTF-8', property in Ajax.Base.setOptions.options
893 (this.options.encoding ? '; charset=' + this.options.encoding : '');
/template/twigstarter/vendor/twig/twig/
H A DCHANGELOG32 * Explicitly specify the encoding for mb_ord in JS escaper