Home
last modified time | relevance | path

Searched refs:count (Results 651 – 675 of 2539) sorted by relevance

1...<<21222324252627282930>>...102

/plugin/icalevents/vendor/squizlabs/php_codesniffer/CodeSniffer/Reports/
H A DHgblame.php65 if (count($parts) < 6) {
69 $parts = array_slice($parts, 0, (count($parts) - 6));
/plugin/findologicxmlexport/vendor/phpspec/prophecy/src/Prophecy/Prediction/
H A DCallPrediction.php52 if (count($calls)) {
61 if (count($methodCalls)) {
/plugin/elasticsearch/vendor/ezimuel/guzzlestreams/src/
H A DGuzzleStreamWrapper.php68 public function stream_read($count) argument
70 return $this->stream->read($count);
/plugin/aichat/vendor/mehrab-wj/tiktoken-php/
H A DREADME.md23 // Get tokens count:
24 echo count($tokens); // 4
/plugin/nodetailsxhtml/syntax/
H A Dacronym.php51 if(!count($acronyms)) return;
59 if(!count($this->acronyms)) return;
/plugin/nspages/
H A DnamespaceFinder.php49 for($i = 0; $i < count($ns); $i++) {
65 $this->isSafe = (count($ns) == 0 || $ns[0] != '..');
/plugin/mathpublish/phpmathpublisher/
H A DMathExpression.php49 if (count($this->nodes) <= 3) {
54 for ($i = 0; $i < count($this->nodes); $i++) {
59 if (count($parenthesiss) == 0) {
71 } elseif (count($parenthesiss) == 0) {
115 if (count($nodes) <= 3) {
119 for ($i = 0; $i < count($nodes); $i++) {
120 if (!$change && $i < count($nodes) - 2 && $nodes[$i + 1]->text == $operation) {
142 if (count($nodes) <= $argumentsCount + 1) {
146 for ($i = 0; $i < count($nodes); $i++) {
147 if ($i < count(
[all...]
/plugin/dw2pdf/vendor/mpdf/mpdf/src/Shaper/
H A DIndic.php345 $count = count($info);
346 if (!$count) {
351 for ($i = 1; $i < $count; $i++) {
358 self::initial_reordering_syllable($info, $GSUBdata, $indic_config, $scriptblock, $is_old_spec, $last, $count);
363 $count = count($info);
364 for ($i = 0; $i < $count; $i++) {
383 while ($idx < count($info)) {
392 while ($idx < count(
[all...]
/plugin/findologicxmlexport/vendor/sebastian/diff/src/LCS/
H A DTimeEfficientLongestCommonSubsequenceImplementation.php29 $fromLength = \count($from);
30 $toLength = \count($to);
/plugin/gtime/gtlib/asn1/
H A DASN1BitString.php86 $this->prepend($bytes, ASN1DER::encodeLength(count($bytes)));
109 while (count($bytes) > 0) {
/plugin/fedauth/Auth/OpenID/
H A DKVForm.php43 for ($lineno = 0; $lineno < count($lines); $lineno++) {
46 if (count($kv) != 2) {
/plugin/odp/
H A Dsyntax.php62 if (count($extinfo) < 2) { // no value
64 } elseif (count($extinfo) == 2) {
/plugin/hiddenheader/
H A Daction.php29 $this->hidden = $m && count($m[1]) > 0 ? array_map('trim', $m[1]) : null;
61 $event->data = count($newdata) < $minItemsToShow ? array() : $newdata;
/plugin/move/_test/
H A Dplan.test.php55 $this->assertEquals(5, count($sorted));
76 $this->assertEquals(3, count($list));
/plugin/combo/vendor/antlr/antlr4-php-runtime/src/Tree/
H A DParseTreeWalker.php38 $count = $tree->getChildCount();
40 for ($i = 0; $i < $count; $i++) {
/plugin/openid/Auth/OpenID/
H A DKVForm.php46 for ($lineno = 0; $lineno < count($lines); $lineno++) {
49 if (count($kv) != 2) {
/plugin/toctweak/
H A Dhelper.php48 if (count($matches) == 4) {
176 if (count($params)) {
182 if (count($toc) < $this->getConf('tocminheads')) {
/plugin/davcard/syntax/
H A Dcard.php144 if(count($contactdata['addr']) > 0)
174 if(count($contactdata['tel']) > 0)
188 if(count($contactdata['mail']) > 0)
/plugin/icalevents/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Generic/Sniffs/PHP/
H A DForbiddenFunctionsSniff.php173 $count = 0;
179 $count
182 if ($count === 0) {
/plugin/quickstats/scripts/php-inet6_1.0.2/
H A Dinet6.php50 for ($i = 0; $i < (8 - (count($part[0]) + count($part[1]))); $i++)
178 if ( ! is_array($val) || count($val) != 2) return $result;
/plugin/tagfilter/_test/
H A Dsyntax.test.php33 $this->assertTrue($select->count() === 3);
71 $this->assertTrue($select->count() === 4);
91 $this->assertTrue($select->count() === 3);
/plugin/elasticsearch/vendor/ruflin/elastica/src/
H A DResultSet.php218 public function count(): int function in Elastica\\ResultSet
220 return \count($this->_results);
228 return \count($this->getSuggests());
/plugin/struct/meta/
H A DAggregationCloud.php20 $this->max = $rows[0]['count'];
21 $this->min = end($rows)['count'];
34 * @param ['tag' => Value, 'count' => int] $result
42 $count = $result['count'];
48 $weight = $this->getWeight($count, $this->min, $this->max);
69 "<div style='font-size:$weight%' data-count='$count' class='cloudtag struct_$type'>";
72 $showCount = $this->searchConfig->getConf()['summarize'] ? $count : 0;
/plugin/struct/types/
H A DMedia.php102 static $count = 0;
103 $count++;
105 $id = $htmlID ?: 'struct__' . md5($name . $count);
/plugin/randominc/
H A Dsyntax.php62 if (count($data) == 0) {
73 $num[] = mt_srand(0, count($array)-1);
92 $parent_id = $page_stack[count($page_stack)-1];
206 if (count($page_stack) == 1) array_pop($page_stack);

1...<<21222324252627282930>>...102