Home
last modified time | relevance | path

Searched refs:chr (Results 101 – 125 of 294) sorted by relevance

12345678910>>...12

/plugin/plantumlparser/syntax/
H A DPlantUmlDiagram.php50 return chr(48 + $b);
54 return chr(65 + $b);
58 return chr(97 + $b);
/plugin/fedauth/Auth/OpenID/
H A DURINorm.php74 $parts[] = sprintf("%s-%s", chr($m), chr($n));
86 return chr($i);
96 return chr(intval($mo[1], 16));
/plugin/openid/Auth/OpenID/
H A DURINorm.php74 $parts[] = sprintf("%s-%s", chr($m), chr($n));
86 return chr($i);
102 return chr($code);
/plugin/zoom/
H A Dsyntax.php95 $ext_params = str_replace(chr(34),"",$ext_params);
96 $ext_params = str_replace(chr(47),"",$ext_params);
97 $ext_params = str_replace(chr(92),"",$ext_params);
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Crypt/RSA/Formats/Keys/
H A DMSBLOB.php212 $key = pack('aavV', chr(self::PRIVATEKEYBLOB), chr(2), 0, self::CALG_RSA_KEYX);
237 $key = pack('aavV', chr(self::PUBLICKEYBLOB), chr(2), 0, self::CALG_RSA_KEYX);
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Crypt/EC/Curves/
H A DEd25519.php177 $h[0] = $h[0] & chr(0xF8);
179 $h[0] = ($h[0] & chr(0x3F)) | chr(0x40);
198 $y[0] = $y[0] & chr(0x7F);
200 $y[0] = $y[0] | chr(0x80);
/plugin/jplayer/vendor/james-heinrich/getid3/getid3/
H A Dgetid3.lib.php489 $intstring = $intstring.chr($number & 127);
492 $intstring = $intstring.chr($number & 255);
830 $newcharstring = chr($charval);
833 $newcharstring = chr(($charval >> 6) | 0xC0);
834 $newcharstring .= chr(($charval & 0x3F) | 0x80);
837 $newcharstring = chr(($charval >> 12) | 0xE0);
838 $newcharstring .= chr(($charval >> 6) | 0xC0);
839 $newcharstring .= chr(($charval & 0x3F) | 0x80);
1358 $HTMLstring .= htmlentities(chr($charval));
1369 $HTMLstring .= chr($charval);
[all …]
H A Dwrite.apetag.php249 return chr($APEtagFlags[3]).chr($APEtagFlags[2]).chr($APEtagFlags[1]).chr($APEtagFlags[0]);
/plugin/html2pdf/html2pdf/html2ps/
H A Dfont.class.php103 if (!isset($widths[chr($i)])) {
104 $widths[chr($i)] = DEFAULT_CHAR_WIDTH;
211 if (!isset($this->char_widths[chr($i)])) {
212 $this->char_widths[chr($i)] = DEFAULT_CHAR_WIDTH;
H A Dcss.list-style-type.inc.php66 return chr(ord('a')+($num-1) % 26);
68 return chr(ord('A')+($num-1) % 26);
/plugin/fckg/syntax/
H A Ddwplugin.php489 $replace[chr($a)] = chr($a+1);
490 $replace[chr($b)] = chr($b+1);
491 $replace[chr($c)] = chr($c+1);
495 $key = str_replace(chr($a+1),chr($a),$key);
/plugin/webdav/vendor/sabre/http/lib/Auth/
H A DAWS.php226 $key = str_pad($key, $blocksize, chr(0x00));
227 $ipad = str_repeat(chr(0x36), $blocksize);
228 $opad = str_repeat(chr(0x5c), $blocksize);
/plugin/davcal/vendor/sabre/http/lib/Auth/
H A DAWS.php226 $key = str_pad($key, $blocksize, chr(0x00));
227 $ipad = str_repeat(chr(0x36), $blocksize);
228 $opad = str_repeat(chr(0x5c), $blocksize);
/plugin/combo/vendor/symfony/polyfill-mbstring/
H A DMbstring.php760 $s = \chr($code);
762 $s = \chr(0xC0 | $code >> 6).\chr(0x80 | $code & 0x3F);
764 $s = \chr(0xE0 | $code >> 12).\chr(0x80 | $code >> 6 & 0x3F).\chr(0x80 | $code & 0x3F);
766 $s = \chr(0xF0 | $code >> 18).\chr(0x80 | $code >> 12 & 0x3F).\chr(0x80 | $code >> 6 & 0x3F).\chr(
[all...]
/plugin/dw2pdf/vendor/mpdf/mpdf/src/
H A DBarcode.php147 $code = str_replace(chr(194) . chr(160), ' ', $code); // mPDF 5.3.95 (for utf-8 encoded)
148 $code = str_replace(chr(160), ' ', $code); // mPDF 5.3.95 (for win-1252)
/plugin/geophp/vendor/funiq/geophp/src/Adapter/
H A DGeoHash.php182 $chr = 0;
188 $chr |= pow(2, $b);
198 $chr |= pow(2, $b);
206 $hash .= self::$characterTable[$chr];
/plugin/shy/
H A Dsyntax.php165 $aRenderer->doc .= chr(194) . chr(173);
/plugin/findologicxmlexport/vendor/twig/twig/test/Twig/Tests/
H A DParserTest.php117 …s->assertNull($this->getParser()->filterBodyNodes(new TextNode(\chr(0xEF).\chr(0xBB).\chr(0xBF).$e…
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/File/
H A DANSI.php238 $chr = ord($source[$i]);
245 case strlen($this->ansi) == 2 && $chr >= 64 && $chr <= 95 && $chr != ord('['):
246 case strlen($this->ansi) > 2 && $chr >= 64 && $chr <= 126:
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Math/BigInteger/Engines/
H A DBCMath.php92 $x = str_pad($this->value, $len, chr(0), STR_PAD_LEFT);
158 $value = chr($temp >> 16) . chr($temp >> 8) . chr($temp) . $value;
163 … substr(str_pad($value, $this->precision >> 3, chr(0), STR_PAD_LEFT), -($this->precision >> 3)) :
164 ltrim($value, chr(0));
/plugin/subjectindex/plugins/
H A Dbible_abbr.txt13 1ch 1chr
14 2ch 2chr
/plugin/davcal/vendor/sabre/http/tests/HTTP/
H A DURLUtilTest.php10 for ($i = 0;$i < 128;$i++) $str .= chr($i);
32 for ($i = 0;$i < 128;$i++) $str .= chr($i);
/plugin/jukebox/id3/
H A Dmodule.tag.id3v1.php333 $ID3v1Tag .= chr($track);
343 $ID3v1Tag .= chr(intval($genreid));
346 $ID3v1Tag .= chr(255); // 'unknown' genre
/plugin/issuetracker/
H A Ditsearch.php27 $i = strrchr ($it_datastore, chr(47)); // chr(47) = "/"
28 $j = strrchr ($it_datastore, chr(92)); // chr(92) = "\"
29 … if(($i !== strlen($it_datastore)) && ($i !== strlen($it_datastore))) { $it_datastore .= chr(47); }
H A Dsyntax.php959 $body = $this->getLang('issuenew_head').chr(10).chr(10).
960 $this->getLang('issuenew_intro').chr(10).
962 $this->getLang('issuemod_issueid').$issue['id'].chr(10).
968 $this->getLang('th_assigned').$issue['assigned'].chr(10).chr(10).
969 … $this->getLang('issuenew_descr').$this->xs_format($issue['description']).chr(10).chr(10).
970 …->getLang('issuemod_see').DOKU_URL.'doku.php?id='.$ID.'&do=showcaselink&'.$pstring.chr(10).chr(10).
1071 $frmt_res = str_ireplace(chr(10),"<br />",$issue['resolution']);
1081 $frmt_descr = str_ireplace(chr(10),"<br />",$issue['description']);
1090 $frmt_cmnt = str_ireplace(chr(10),"<br />",$comment['comment']);
1931 $i = strrchr ($it_datastore, chr(47)); // chr(47) = "/"
[all …]

12345678910>>...12