Home
last modified time | relevance | path

Searched refs:char (Results 1 – 10 of 10) sorted by relevance

/dokuwiki/vendor/simplepie/simplepie/idn/
H A Didna_convert.class.php389 $char = $this->_initial_n;
402 $char += (int) ($idx / ($deco_len + 1));
410 $decoded[$idx++] = $char;
645 function _hangul_decompose($char) argument
647 $sindex = (int) $char - $this->_sbase;
649 return array($char);
674 $char = (int) $input[$i];
677 $vindex = $char - $this->_vbase;
678 $tindex = $char - $this->_tbase;
695 $last = $char;
[all …]
/dokuwiki/vendor/php81_bc/strftime/src/
H A Dphp-8.1-strftime.php132 $char = $match[2];
133 $pattern = '%'.$char;
/dokuwiki/conf/
H A Dacl.auth.php.dist10 # If your auth backend allows special char like spaces in groups
/dokuwiki/vendor/geshi/geshi/src/
H A Dgeshi.php2490 $char = $part[$i];
2532 if (isset($is_string_starter[$char])) {
2537 if (is_array($is_string_starter[$char])) {
2539 foreach ($is_string_starter[$char] as $testchar) {
2547 $char = $char_new;
2550 $testchar = $is_string_starter[$char];
2552 $char = $testchar;
2556 $char_len = strlen($char);
2561 $string_key = array_search($char, $this->language_data['QUOTEMARKS']);
2578 $string = "<span$string_attributes>" . GeSHi::hsc($char);
[all …]
/dokuwiki/inc/
H A DPassHash.php336 foreach ($charArr as $char) {
337 if (($char == '') || ($char == ' ') || ($char == '\t')) continue;
338 $charVal = ord($char);
H A Dcommon.php1524 * @param string $char backslashed character
1529 function unslash($string, $char = "'") argument
1531 return str_replace('\\' . $char, $char, $string);
1587 * @param string $char the shortening character to use
1590 function shorten($keep, $short, $max, $min = 9, $char = '…') argument
1599 $char .
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/File/
H A DANSI.php440 * @param string $char
443 private function processCoordinate(\stdClass $last_attr, \stdClass $cur_attr, $char) argument
489 $output .= htmlspecialchars($char);
/dokuwiki/vendor/splitbrain/lesserphp/src/
H A DParser.php809 $char = $this->buffer[$this->count];
810 if (!ctype_digit($char) && $char != '.') return false;
/dokuwiki/vendor/geshi/geshi/
H A DCHANGELOG153 * Symbol and char literal handling for Scala (Paul Butcher, BenBE)
361 * Fixed escape char regexp for C-style languages (BenBE)
376 - Fixed a problem where HardEscapes weren't working when no escape char was given (BenBE)
533 …* Fixed escape char support when an escape char is followed by multi-byte chars (SF#2037598, BenBE)
544 expressions used as delimiters inside keywords instead of a simple char group (BenBE)
/dokuwiki/_test/core/
H A DphpQuery-onefile.php1404 * @param string $char
1409 protected function isChar($char) { argument
1411 ? mb_eregi('\w', $char)
1412 : preg_match('@\w@', $char);