Home
last modified time | relevance | path

Searched refs:count (Results 1 – 25 of 131) sorted by relevance

123456

/dokuwiki/inc/Parsing/Lexer/
H A DParallelRegex.php53 $count = count($this->patterns);
54 $this->patterns[$count] = $pattern;
55 $this->labels[$count] = $label;
69 if (count($this->patterns) == 0) {
78 $size = count($matches);
99 if (count($this->patterns) == 0) {
126 $idx = count($matches) - 2;
144 $cnt = count($this->patterns);
H A DStateStack.php35 return $this->stack[count($this->stack) - 1];
55 if (count($this->stack) == 1) {
/dokuwiki/inc/
H A DJpegMeta.php1009 $count = 0;
1065 $this->_markers[$count] = array();
1066 $this->_markers[$count]['marker'] = $marker;
1067 $this->_markers[$count]['length'] = $length;
1071 $this->_markers[$count]['data'] = fread($this->_fp, $length);
1073 $this->_markers[$count]['data'] = "";
1084 $count++;
1170 $count = 0;
1432 $count = count(
1624 _parseXmpNode($values, & $i, & $meta, $count) global() argument
[all...]
H A DTaskRunner.php118 if (count($lines) <= $conf['recent']) {
129 $counter = count($lines);
145 if (count($lines) === count($out_lines)) {
156 $extra = $conf['recent'] - count($out_lines); // do we need extra lines do bring us up to minimum
H A DDifferenceEngine.php25 return $this->orig ? count($this->orig) : 0;
29 return $this->closing ? count($this->closing) : 0;
126 $n_from = count($from_lines);
127 $n_to = count($to_lines);
171 $this->_compareseq(0, count($this->xv), 0, count($this->yv));
411 USE_ASSERTS && assert(count($lines) == count($changed));
412 $len = count($lines);
413 $other_len = count(
[all...]
H A Dchangelog.php175 $count = 0;
190 $lines_position = count($lines) - 1;
199 $media_lines_position = count($media_lines) - 1;
242 $count++;
244 if ($count >= $num) {
/dokuwiki/lib/plugins/authplain/
H A Dauth.php263 // reload the user list and count the difference
264 $count = count($this->users);
266 $count -= count($this->users);
267 return $count;
271 * Return a count of the number of user which meet $filter criteria
283 if ($filter === []) return count($this->users);
285 $count = 0;
289 $count
[all...]
/dokuwiki/inc/Subscriptions/
H A DBulkSubscriptionSender.php37 $count = 0;
110 $count++;
114 $count++;
127 return $count;
/dokuwiki/inc/Parsing/ParserMode/
H A DEntity.php25 if (!count($this->entities) || $this->pattern != '') return;
37 if (!count($this->entities)) return;
H A DSmiley.php24 if (!count($this->smileys) || $this->pattern != '') return;
36 if (!count($this->smileys)) return;
H A DAcronym.php25 if (!count($this->acronyms)) return;
35 if (!count($this->acronyms)) return;
/dokuwiki/vendor/simplepie/simplepie/src/Net/
H A DIPv6.php205 if (count($ipv6) === 8 && count($ipv4) === 1 || count($ipv6) === 6 && count($ipv4) === 4) {
229 if (count($ipv4) === 4) {
/dokuwiki/inc/ChangeLog/
H A DChangeLog.php207 $count = 0;
244 while ($count < $num + $first) {
271 $count += count($tmp);
286 $num = max(min(count($lines) - $first, $num), 0);
288 $lines = array_slice($lines, max(count($lines) - $first - $num, 0), $num);
290 $lines = array_slice($lines, 0, max(count($lines) - $first, 0));
292 $lines = array_slice($lines, max(count($lines) - $num, 0));
296 for ($i = count($lines) - 1; $i >= 0; $i--) {
337 // look for revisions later/earlier than $rev, when founded count til
[all...]
/dokuwiki/lib/plugins/config/core/Setting/
H A DSettingMulticheckbox.php87 (count($default) === count($value)) &&
88 (count($value) === count(array_intersect($value, $default)))
123 if (count($idx) && $idx[count($idx) - 1] !== false) {
/dokuwiki/vendor/marcusschwarz/lesserphp/
H A Dlessc.inc.php
/dokuwiki/inc/Cache/
H A DCache.php215 [$ext, $count, $hits] = explode(',', $stats[$this->ext]);
218 $count = 0;
222 $count++;
226 $stats[$this->ext] = "$ext,$count,$hits";
/dokuwiki/vendor/kissifrot/php-ixr/src/Message/
H A DMessage.php194 if (count($this->_arraystructs) > 0) {
196 if ($this->_arraystructstypes[count($this->_arraystructstypes) - 1] === 'struct') {
198 $this->_arraystructs[count($this->_arraystructs) - 1][$this->_currentStructName[count($this->_currentStructName) - 1]] = $value;
201 $this->_arraystructs[count($this->_arraystructs) - 1][] = $value;
/dokuwiki/inc/Parsing/Handler/
H A DLists.php98 $this->listStack[$key][2] = count($this->listCalls) - 2;
110 $this->listStack[] = [$listType, $depth, count($this->listCalls) - 2];
121 $this->listStack[] = [$listType, $depth, count($this->listCalls) - 2];
145 $this->listStack[$key][2] = count($this->listCalls) - 2;
154 $this->listStack[] = [$listType, $depth, count($this->listCalls) - 2];
182 // Is the +1 needed? It used to be count(explode(...))
/dokuwiki/lib/plugins/usermanager/
H A Dcli.php202 $count = $auth->triggerUserMod('delete', [$users]);
204 if ($count != count($users)) {
206 $part1 = str_replace('%d', $count, $this->getLang('delete_ok'));
207 $part2 = str_replace('%d', (count($users) - $count), $this->getLang('delete_fail'));
/dokuwiki/lib/plugins/config/core/
H A DConfigParser.php45 $counter = count($matches);
58 $len = count($arr);
/dokuwiki/inc/Ui/
H A DRevisions.php65 if (count($revlist) == 0 && $first > -1) {
73 if (count($revlist) > $num) {
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Math/
H A DBigInteger.php
/dokuwiki/lib/plugins/authad/
H A Dauth.php393 * Return a count of the number of user which meet $filter criteria
418 count($this->grpsusers[$this->filterToString($filter)]) <
425 count($this->grpsusers[$this->filterToString($filter)])
439 return count($result);
479 $actualstart = count($this->grpsusers[$this->filterToString($filter)]);
486 $count = 0;
497 if (($numberOfAdds > 0) && (++$count >= $numberOfAdds)) break;
500 return $count;
526 $count = 0;
542 if (($limit > 0) && (++$count >
[all...]
/dokuwiki/vendor/openpsa/universalfeedcreator/lib/Creator/
H A DKMLCreator.php31 if (!empty($_GET['simple']) && count($this->items) > 0) {
63 for ($i = 0; $i < count($this->items); $i++) {
/dokuwiki/vendor/kissifrot/php-ixr/src/Server/
H A DIntrospectionServer.php78 if (count($args) != count($signature)) {
85 for ($i = 0, $j = count($args); $i < $j; $i++) {

123456