Home
last modified time | relevance | path

Searched refs:chars (Results 1 – 25 of 132) sorted by relevance

123456

/plugin/commonmark/vendor/league/commonmark/src/Util/
H A DUrlEncoder.php46 $chars = \mb_str_split($uri, 1, 'UTF-8');
48 $l = \count($chars);
50 $code = $chars[$i];
52 if (\preg_match('/^[0-9a-f]{2}$/i', $chars[$i + 1] . $chars[$i + 2]) === 1) {
53 $result .= '%' . $chars[$i + 1] . $chars[$i + 2];
/plugin/icalevents/vendor/squizlabs/php_codesniffer/CodeSniffer/Tokenizers/
H A DJS.php300 $chars = str_split($string);
301 $numChars = count($chars);
303 $char = $chars[$i];
410 if ($chars[($i - 1)] !== '\\') {
439 $chars,
625 if (isset($chars[($i - 2)]) === true && $chars[($i - 2)] === '\\') {
946 $numChars = count($chars);
948 if ($chars[$next] === '/') {
968 if ($chars[$next] !== '/') {
989 if ($chars[$next] !== ' ') {
[all …]
/plugin/fckg/
H A Dscript.js41 var index, chars, match, stack = [], last = html; variable
48 chars = true;
61 chars = false;
71 chars = false;
81 chars = false;
85 if ( chars ) {
91 if ( handler.chars )
92 handler.chars( text );
100 if ( handler.chars )
101 handler.chars( text );
/plugin/ckgdoku/
H A Dscript.js41 var index, chars, match, stack = [], last = html; variable
69 chars = true;
82 chars = false;
92 chars = false;
102 chars = false;
106 if ( chars ) {
112 if ( handler.chars )
113 handler.chars( text );
121 if ( handler.chars )
122 handler.chars( text );
/plugin/ckgedit/
H A Dscript.js42 var index, chars, match, stack = [], last = html; variable
93 chars = true;
106 chars = false;
116 chars = false;
126 chars = false;
130 if ( chars ) {
136 if ( handler.chars )
137 handler.chars( text );
145 if ( handler.chars )
146 handler.chars( text );
/plugin/toolbox/
H A DToolboxCounter.js86 function html(head, chars, words) { argument
89 if (!chars) return out;
92 out += '<dd>' + toolbox_lang.chars.replace('%d', chars) + '</dd>';
/plugin/dw2pdf/vendor/mpdf/mpdf/src/Pdf/Protection/
H A DUniqidGenerator.php23 $chars = 'ABCDEF1234567890';
27 $id .= $chars[random_int(0, 15)];
/plugin/combo/vendor/antlr/antlr4-php-runtime/src/
H A DInputStream.php41 $chars = \preg_split('//u', $input, -1, \PREG_SPLIT_NO_EMPTY);
43 return new self($input, $chars === false ? [] : $chars);
/plugin/dw2pdf/vendor/mpdf/mpdf/src/Barcode/
H A DCode93.php170 $chars = [
186 $k = array_keys($chars, $code[$i]);
194 $c = $chars[$check];
201 $k = array_keys($chars, $code[$i]);
209 $k = $chars[$check];
H A DCode39.php207 $chars = [
218 $k = array_keys($chars, $code[$i]);
224 return $chars[$j];
/plugin/farm/install/animaltemplate/conf/
H A Dacl.auth.php.dist11 # or user names you need to urlencode them (only chars <128, leave
12 # UTF-8 multibyte chars as is)
/plugin/twofactoryubiauth/
H A Dhelper.php156 …$chars = array("a","b","c","d","e","f","g","h","i","j","k","l","m","n","o","p","q","r","s","t","u"…
161 $rand = rand(0,count($chars)-1);
162 $nonce .= $chars[$rand];
/plugin/fckg/scripts/
H A Dscript-cmpr.js1chars){u.chars(t)}}}else{m=m.replace(new RegExp("(.*)</"+r.last()+"[^>]*>"),function(v,w){w=w.repl…
/plugin/combo/vendor/carica/phpcss/src/PhpCss/Scanner/
H A DStatus.php78 protected function matchCharacters(string $buffer, int $offset, array $chars): ?Token { argument
81 foreach ($chars as $type => $expectedChar) {
/plugin/swfobject/
H A Dsyntax.php237 $chars = "^&|!+\-*\/%=\?:;,{}()<>% \t\n\r'\"[]";
243 while ($i < $slen && (strpos($chars,$s[$i]) === false) ){
321 if($i+1 < $slen && (strpos($chars,$s[$i+1]) !== false)){
329 if($lch && (strpos($chars,$lch) !== false)){
/plugin/judge/helper/
H A Djdatetime.class.php107 $chars = (preg_match_all('/([a-zA-Z]{1})/', $format, $chars)) ? $chars[0] : array();
111 $intact = self::filterArray($chars, $intact);
125 $keys = self::filterArray($chars, $keys, array('z'));
/plugin/aichat/vendor/vanderlee/php-sentence/src/
H A DSentence.php151 $chars = preg_split('//u', $line, -1, PREG_SPLIT_NO_EMPTY); // This is UTF8 multibyte safe!
152 $is_terminal = in_array($chars[0], $this->terminals);
155 foreach ($chars as $char) {
/plugin/wysiwyg/fckeditor/
H A Dfckeditor_php5.php161 $chars = array(
166 return strtr( $valueToEncode, $chars ) ;
H A Dfckeditor_php4.php171 $chars = array(
176 return strtr( $valueToEncode, $chars ) ;
/plugin/findologicxmlexport/vendor/twig/twig/test/Twig/Tests/Fixtures/tags/block/
H A Dspecial_chars.test2 "§" special chars in a block name
/plugin/charpicker/
H A Dplugin.info.txt6 desc Adds characters to special chars picker
/plugin/ckgdoku/scripts/
H A Dscript-cmpr.js1chars){u.chars(t)}}}else{m=m.replace(new RegExp("(.*)</"+r.last()+"[^>]*>"),function(v,w){w=w.repl…
/plugin/ckgdoku/ckeditor/plugins/specialchar/dialogs/
H A Dspecialchar.js.unc176 chars = editor.config.specialChars;
178 chars = chars.concat(extraChars);
185 size = chars.length,
192 if ( ( character = chars[ i ] ) ) {
/plugin/ckgedit/ckeditor/plugins/specialchar/dialogs/
H A Dspecialchar.js.unc176 chars = editor.config.specialChars;
178 chars = chars.concat(extraChars);
185 size = chars.length,
192 if ( ( character = chars[ i ] ) ) {
/plugin/markdownextra/lib/meltdown/js/lib/
H A Djs-markdown-extra.js234 var chars = charlist || " \t\n\r";
236 new RegExp("^[" + chars + "]*|[" + chars + "]*$", "g"), ""
241 var chars = charlist || " \t\n\r";
243 new RegExp( "[" + chars + "]*$", "g" ), ""
1533 var chars = [];
1536 chars.push(addr.charAt(i));
1540 for(i = 0; i < chars.length; i++) {
1541 var c = chars[i];
1550 else { chars[i] = '&#' + ord.toString(10) + ';'; }
1554 addr = chars.join('');
[all …]

123456