Home
last modified time | relevance | path

Searched full:cp (Results 1 – 13 of 13) sorted by relevance

/dokuwiki/inc/Utf8/
H A DConversion.php24 foreach (Unicode::fromUtf8($str) as $cp) {
25 if ($cp < 0x80 && !$all) {
26 $ret .= chr($cp);
27 } elseif ($cp < 0x100) {
28 $ret .= "&#$cp;";
30 $ret .= '&#x' . dechex($cp) . ';';
110 $cp = match ($ent[2]) {
114 return Unicode::toUtf8([$cp]);
134 foreach ($uni as $cp) {
135 $out .= pack('n', $cp);
/dokuwiki/.github/workflows/
H A DtestLinux.yml65 cp mysql.conf.php.dist mysql.conf.php
66 cp pgsql.conf.php.dist pgsql.conf.php
67 cp proxy.conf.php.dist proxy.conf.php
H A DdeletedFiles.yml47 …d {print input; found=1} 1' data/deleted.files > data/deleted.files.tmp && cp data/deleted.files{.…
49 …d {print input; found=1} 1' data/deleted.files > data/deleted.files.tmp && cp data/deleted.files{.…
/dokuwiki/_test/tests/TreeBuilder/
H A DControlPageBuilderTest.php13 saveWikiText('simple', file_get_contents(__DIR__ . '/cp/simple.txt'), 'test');
14 saveWikiText('foo:complex', file_get_contents(__DIR__ . '/cp/complex.txt'), 'test');
/dokuwiki/vendor/geshi/geshi/src/geshi/
H A Dz80.php56 'adc','add','and','bit','call','ccf','cp','cpd','cpdr','cpir','cpi',
H A Dtclegg.php228 'cp',
H A Dbash.php153 'col', 'cp', 'cpio', 'cpp', 'csh', 'cut', 'cvs', 'cvs-pserver',
305 'svn co', 'svn commit', 'svn copy', 'svn cp', 'svn del',
H A Dprovidex.php176 "'ci'", "'circle'", "'cl'", "'colour'", "'cp'", "'cpi'",
H A Dpowershell.php92 'tee', 'write', 'cat', 'cd', 'clear', 'cp', 'h', 'history', 'kill', 'lp', 'ls',
H A Dvim.php131 'cot', 'cp', 'cpo', 'cpoptions', 'cpt',
H A Dabap.php866 'cp',
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Crypt/
H A DDES.php1240 $cp = $pc2mapc1[ $c >> 24 ] | $pc2mapc2[($c >> 16) & 0xFF] |
1246 $val1 = ( $cp & self::safe_intval(0xFF000000)) | (($cp << 8) & 0x00FF0000) |
1248 $val2 = (($cp << 8) & self::safe_intval(0xFF000000)) | (($cp << 16) & 0x00FF0000) |
/dokuwiki/inc/
H A Dfulltext.php869 $token_decoded = str_replace(['OP', 'CP'], ['(', ')'], $token);
962 $term_encoded = str_replace(['(', ')'], ['OP', 'CP'], $term);