Home
last modified time | relevance | path

Searched refs:chr (Results 51 – 75 of 294) sorted by relevance

12345678910>>...12

/plugin/bibtex/OSBib/
H A DUTF8.php186 $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 ) );
199 if($num<128)return chr($num);
200 if($num<2048)return chr(($num>>6)+192).chr(($num&63)+128);
201 if($num<65536)return chr(($num>>12)+224).chr((($num>>6)&63)+128).chr(($num&63)+128);
202 …if($num<2097152)return chr(($num>>18)+240).chr((($num>>12)&63)+128).chr((($num>>6)&63)+128). chr((…
/plugin/dw2pdf/vendor/mpdf/qrcode/src/
H A DQrCode.php535 $rsTemp[$rsBlockNumber] .= chr($wordItem);
551 $rst = $rsTemp[$rsBlockNumber] . str_repeat(chr(0), $this->rsEccCodewords);
552 $paddingData = str_repeat(chr(0), $rsDataCodewords);
603 $hMaster .= chr($this->matrix[$l][$k]);
604 $vMaster .= chr($this->matrix[$k][$l]);
620 $bitMask = str_repeat(chr($bit), $allMatrix);
624 $vShift1 = $ver . str_repeat(chr(170), $this->size);
625 $vShift2 = str_repeat(chr(170), $this->size) . $ver;
626 $vShift10 = $ver . str_repeat(chr(0), $this->size);
627 $vShift20 = str_repeat(chr(
[all...]
/plugin/authgooglesheets/vendor/symfony/polyfill-php72/
H A DPhp72.php33 default: $s[$j] = "\xC3"; $s[++$j] = \chr(\ord($s[$i]) - 64); break;
50 $s[$j] = $c < 256 ? \chr($c) : '?';
176 $s = \chr($code);
178 $s = \chr(0xC0 | $code >> 6).\chr(0x80 | $code & 0x3F);
180 $s = \chr(0xE0 | $code >> 12).\chr(0x80 | $code >> 6 & 0x3F).\chr(0x80 | $code & 0x3F);
182 …$s = \chr(0xF0 | $code >> 18).\chr(0x80 | $code >> 12 & 0x3F).\chr(0x80 | $code >> 6 & 0x3F).\chr(…
/plugin/combo/vendor/php-webdriver/webdriver/lib/Remote/
H A DJsonWireCompat.php78 $chr = $matches[0];
79 if (mb_strlen($chr) === 1) {
80 $ord = ord($chr);
82 $chr = mb_convert_encoding($chr, 'UTF-32BE', 'UTF-8');
83 $ord = hexdec(bin2hex($chr));
/plugin/findologicxmlexport/vendor/sebastian/exporter/tests/
H A DExporterTest.php154 chr(0) . chr(1) . chr(2) . chr(3) . chr(4) . chr(5),
162 chr(0x00) . chr(0x09),
/plugin/icalevents/vendor/sabre/vobject/tests/VObject/
H A DStringUtilTest.php9 $string = StringUtil::isUTF8(chr(0xbf));
25 $string = StringUtil::isUTF8(chr(0x00));
33 $string = StringUtil::convertToUTF8(chr(0xbf));
35 $this->assertEquals(utf8_encode(chr(0xbf)), $string);
49 $string = StringUtil::convertToUTF8(chr(0x00));
/plugin/davcard/vendor/sabre/vobject/tests/VObject/
H A DStringUtilTest.php9 $string = StringUtil::isUTF8(chr(0xbf));
25 $string = StringUtil::isUTF8(chr(0x00));
33 $string = StringUtil::convertToUTF8(chr(0xbf));
35 $this->assertEquals(utf8_encode(chr(0xbf)), $string);
49 $string = StringUtil::convertToUTF8(chr(0x00));
/plugin/webdavclient/vendor/sabre/vobject/tests/VObject/
H A DStringUtilTest.php9 $string = StringUtil::isUTF8(chr(0xbf));
25 $string = StringUtil::isUTF8(chr(0x00));
33 $string = StringUtil::convertToUTF8(chr(0xbf));
35 $this->assertEquals(utf8_encode(chr(0xbf)), $string);
49 $string = StringUtil::convertToUTF8(chr(0x00));
/plugin/davcal/vendor/sabre/vobject/tests/VObject/
H A DStringUtilTest.php9 $string = StringUtil::isUTF8(chr(0xbf));
25 $string = StringUtil::isUTF8(chr(0x00));
33 $string = StringUtil::convertToUTF8(chr(0xbf));
35 $this->assertEquals(utf8_encode(chr(0xbf)), $string);
49 $string = StringUtil::convertToUTF8(chr(0x00));
/plugin/virtualkeyboard/vk/
H A Dvirtualkeyboard.js339 var chr = lang[i];
340 btns += "<div id=\""+idPrefix+(isArray(chr)?zcnt++:chr)
467 var chr = ""
493 chr = " ";
496 chr = "\t";
499 chr = "\n";
521 if (chr) {
526 if (chr[0].length < 2 && !chr[1]) {
550 chr[0].charCodeAt(0),chr[0].charCodeAt(0)
575 if (chr[1]) {
[all …]
/plugin/html2pdf/html2pdf/html2ps/
H A Dmanager.encoding.php71 $this->_encodings[$vector_name][chr($index)] = $char;
74 $this->_utf8_mapping[code_to_utf8($char)][$vector_name] = chr($index);
76 return chr($index);
153 if (!isset($vector[chr($i)])) {
154 $vector[chr($i)] = 0xFFFF;
210 if (isset($vector[chr($i)]) && isset($GLOBALS['g_unicode_glyphs'][$vector[chr($i)]])) {
211 $result .= " /".$GLOBALS['g_unicode_glyphs'][$vector[chr($i)]];
247 $initial_vector[chr($i)] = chr($i);
/plugin/freechat/phpfreechat/lib/json/
H A DJSON.php162 return chr(0x7F & $bytes);
168 . chr(0x80 | ($bytes & 0x3F));
175 . chr(0x80 | ($bytes & 0x3F));
209 return chr(0x07 & (ord($utf8{0}) >> 2))
210 . chr((0xC0 & (ord($utf8{0}) << 6))
216 return chr((0xF0 & (ord($utf8{0}) << 4))
527 $utf8 .= chr(0x08);
531 $utf8 .= chr(0x09);
535 $utf8 .= chr(0x0A);
539 $utf8 .= chr(0x0C);
[all …]
/plugin/dw2pdf/vendor/mpdf/mpdf/src/Barcode/
H A DI25.php37 $chr = [
71 if ((!isset($chr[$charBar])) or (!isset($chr[$charSpace]))) {
77 $chrlen = strlen($chr[$charBar]);
79 $seq .= $chr[$charBar][$s] . $chr[$charSpace][$s];
/plugin/jplayer/vendor/james-heinrich/getid3/demos/
H A Ddemo.simple.php45 …'artist']) ? implode('<br>', $ThisFileInfo['comments_html']['artist']) : chr(160)).'</td>';
46 …'title']) ? implode('<br>', $ThisFileInfo['comments_html']['title']) : chr(160)).'</td>';
47 …']) ? round($ThisFileInfo['audio']['bitrate'] / 1000).' kbps' : chr(160)).'</td>';
48 …]) ? $ThisFileInfo['playtime_string'] : chr(160)).'</td>';
H A Ddemo.mp3header.php91 if (preg_match('#['.chr(0x0A).chr(0x0D).' -;0-9A-Za-z]#', $variable[$i])) {
544 return str_replace(chr(0xFF).chr(0x00), chr(0xFF), $data);
562 $data = str_replace(chr(0xFF).chr(0x00), chr(0xFF).chr(0x00).chr(0x00), $data);
672 if (substr($asciidata, 0, 2) == chr(0xFF).chr(0xFE)) {
676 if (substr($asciidata, strlen($asciidata) - 2, 2) == chr(0).chr(0)) {
691 if (substr($asciidata, strlen($asciidata) - 2, 2) == chr(0).chr(0)) {
710 if (substr($asciidata, strlen($asciidata) - 2, 2) == chr(0).chr(0)) {
1116 $from .= chr($i);
1117 $to .= chr($i + 128);
1120 $from .= chr($i);
[all …]
/plugin/issuetracker/
H A Daction.php2658 $body = $this->getLang('issuemod_head').chr(10).chr(10).
2720 $body = chr(10).$this->getLang('issuemod_head').chr(10).chr(10).
2722 $changes.chr(10).chr(10).
2789 … $this->getLang('issuemod_cmnt').chr(10).$this->xs_format($comment['comment']).chr(10).chr(10);
2792 $body = $this->getLang('issuemod_head').chr(10).chr(10).
2843 $body = $this->getLang('issuemod_head').chr(10).chr(10).
2844 $this->getLang('issuemod_intro').chr(10).chr(13).
2854 $this->getLang('th_description').chr(10).$issue['description'].chr(10).chr(10).
3337 $result .= chr(10).chr(10).$perf.chr(10);
3372 $result = chr(10).chr(10)."Loop thorugh IssueTracker data files.".chr(10);
[all …]
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Math/BigInteger/Engines/
H A DEngine.php259 $bytes = chr(0);
263 $bytes = chr(0) . $bytes;
458 return new static(chr((1 << ($bits & 0x7)) - 1) . str_repeat(chr(0xFF), $bits >> 3), 256);
480 $temp[0] = chr(bindec($msb));
490 $leading_ones = chr((1 << ($new_bits & 0x7)) - 1) . str_repeat(chr(0xFF), $new_bits >> 3);
520 $x[$i] = chr($temp);
552 $mask = chr((1 << ($precision & 0x7)) - 1) . str_repeat(chr(0xFF), $precision >> 3);
593 $min = str_repeat(chr(0), $bytes);
594 $max = str_repeat(chr(0xFF), $bytes);
597 $min = chr(1 << ($msb - 1)) . $min;
[all …]
/plugin/dw2pdf/vendor/mpdf/mpdf/src/Writer/
H A DBaseWriter.php89 $str = preg_replace("/[\x{20000}-\x{2FFFF}]/u", chr(0), $str);
93 $str = preg_replace("/[\x{10000}-\x{1FFFF}]/u", chr(0), $str);
108 return strtr($s, [')' => '\\)', '(' => '\\(', '\\' => '\\\\', chr(13) => '\r']);
136 $out .= chr(0x0C);
139 $out .= chr(0x08);
142 $out .= chr(0x09);
145 $out .= chr(0x0D);
148 $out .= chr(0x0A);
170 $out .= chr(octdec($oct));
/plugin/fedauth/Auth/OpenID/
H A DHMAC.php40 $raw .= chr($charcode);
70 $key = str_pad($key, Auth_OpenID_SHA1_BLOCKSIZE, chr(0x00));
71 $ipad = str_repeat(chr(0x36), Auth_OpenID_SHA1_BLOCKSIZE);
72 $opad = str_repeat(chr(0x5c), Auth_OpenID_SHA1_BLOCKSIZE);
/plugin/openid/Auth/OpenID/
H A DHMAC.php40 $raw .= chr($charcode);
71 $key = str_pad($key, Auth_OpenID_SHA1_BLOCKSIZE, chr(0x00));
72 $ipad = str_repeat(chr(0x36), Auth_OpenID_SHA1_BLOCKSIZE);
73 $opad = str_repeat(chr(0x5c), Auth_OpenID_SHA1_BLOCKSIZE);
/plugin/dw2pdf/vendor/mpdf/mpdf/src/Conversion/
H A DDecToAlpha.php31 $alpha = chr($c1);
34 $alpha .= chr($c2);
38 $alpha .= chr($c3);
/plugin/dw2pdf/vendor/mpdf/mpdf/src/Image/
H A DBmp.php109 $bmpdata .= chr($r) . chr($g) . chr($b);
120 $bmpdata .= chr($r) . chr($g) . chr($b);
205 $out .= str_repeat(chr(0), $padCnt);# pad line
211 $out .= str_repeat(chr(0), $padCnt);# pad line
293 $out .= chr(16 * $pixels[2 * $i] + $pixels[2 * $i + 1]);
/plugin/statdisplay/pchart/
H A DCSVImporter.php68 $buffer = str_replace ( chr ( 10 ), "", $buffer );
69 $buffer = str_replace ( chr ( 13 ), "", $buffer );
88 $buffer = str_replace ( chr ( 10 ), "", $buffer );
89 $buffer = str_replace ( chr ( 13 ), "", $buffer );
/plugin/statistics/inc/pchart/
H A DCSVImporter.php66 $buffer = str_replace(chr(10), "", $buffer);
67 $buffer = str_replace(chr(13), "", $buffer);
86 $buffer = str_replace(chr(10), "", $buffer);
87 $buffer = str_replace(chr(13), "", $buffer);
/plugin/jplayer/vendor/james-heinrich/getid3/getid3/
H A Dwrite.id3v2.php332 return chr(bindec($flag));
385 return chr(bindec($flag1)).chr(bindec($flag2));
496 $framedata .= chr($val['typeid']);
558 $framedata .= chr($highnibble & $lownibble);
581 $framedata .= chr(255);
584 $framedata .= chr($val['tempo']);
680 $framedata .= chr($val['channeltypeid']);
720 $framedata .= chr(bindec($incdecflag));
937 $framedata .= chr(bindec($flag));
1745 $tagheader .= chr($this->majorversion);
[all …]

12345678910>>...12