Home
last modified time | relevance | path

Searched refs:count (Results 326 – 350 of 2539) sorted by last modified time

1...<<11121314151617181920>>...102

/plugin/combo/syntax/
H A Dminimap.php160 $lastContainingNameSpace = $parts[count($parts) - 1];
170 //$pagesCount = count($pagesOfNamespace); // number of pages in the namespace
/plugin/combo/action/
H A Drouter.php912 if (isset($MSG) && count($MSG) && !defined('NOSESSION')) {
966 if (count($pagesWithSameName) > 0) {
H A Droutermessage.php195 if (count($pagesWithSameName) === 1) {
203 if (count($pagesWithSameName) > 0) {
/plugin/combo/vendor/carica/phpcss/src/PhpCss/
H A DParser.php160 return (count($this->_tokens) <= $position);
193 while (count($this->_tokens) > $position) {
/plugin/combo/ComboStrap/Meta/Field/
H A DBacklinkCount.php18 * Internal backlink count
63 LogUtility::msg("Backlink count is not yet supported on the resource type ({$resource->getType()}");
73 LogUtility::msg("The store ($storeClass) does not support backlink count");
93 ->setQueryParametrized("select count(1) from PAGE_REFERENCES where REFERENCE = ? ", [$this->getResource()->getPathObject()->toAbsoluteId()]);
94 $count = 0;
96 $count = $request
104 return intval($count);
/plugin/combo/vendor/composer/
H A DInstalledVersions.php191 if (1 === \count($packages)) {
/plugin/combo/vendor/antlr/antlr4-php-runtime/src/Atn/
H A DATN.php135 $state->stateNumber = \count($this->states);
150 $s->decision = \count($this->decisionToState) - 1;
157 if (\count($this->decisionToState) === 0) {
166 return \count($this->decisionToState);
190 if ($stateNumber < 0 || $stateNumber >= \count($this->states)) {
H A DATNConfigSet.php315 return \count($this->configs);
/plugin/combo/ComboStrap/Meta/Form/
H A DFormMetaField.php152 if (count($childrenMetadata) === 0) {
/plugin/combo/vendor/salesforce/handlebars-php/src/Handlebars/
H A DContext.php244 if (count($this->stack) < $level) {
317 if (count($this->dataStack) < $level) {
/plugin/combo/vendor/antlr/antlr4-php-runtime/src/Atn/SemanticContexts/
H A DAndOperator.php42 if (\count($precedencePredicates) !== 0) {
104 if (\count($operands) === 0) {
H A DOrOperator.php44 if (\count($precedencePredicates) !== 0) {
49 $reduced = $precedencePredicates[\count($precedencePredicates) - 1];
106 if (\count($operands) === 0) {
/plugin/combo/ComboStrap/
H A DOutline.php468 if (count($innerTopSections) === 0) {
471 $firstInnerSection = $innerTopSections[count($innerTopSections)];
H A DOutlineSection.php276 $headingExitCall = $this->headingCalls[count($this->headingCalls) - 1];
H A DExecutionContext.php872 $count = count($this->executingMarkupHandlerStack);
873 if ($count >= 1) {
H A DOutlineVisitor.php128 if (count($actualChildren) === 1) {
H A DHttp.php28 if (count($result) == 0) {
H A DSnippetSystem.php218 return count($this->getSnippetsForComponent($componentId)) > 0;
/plugin/combo/vendor/antlr/antlr4-php-runtime/src/
H A DBufferedTokenStream.php108 return \count($this->tokens);
119 $skipEofCheck = $this->index < \count($this->tokens) - 1;
122 $skipEofCheck = $this->index < \count($this->tokens);
145 $n = $i - \count($this->tokens) + 1; // how many more elements we need?
165 $token->setTokenIndex(\count($this->tokens));
181 $count = \count($this->tokens);
183 if ($index < 0 || $index >= $count) {
187 $count
228 if ($i >= \count(
[all...]
H A DIntervalSet.php101 while ($resultI < \count($result->intervals) && $rightI < \count($right->intervals)) {
178 if ($this->intervals === null || \count($this->intervals) === 0) {
207 for ($i = 0, $count = \count($this->intervals); $i < $count; $i++) {
223 while ($i < \count($this->intervals)) {
270 $count = \count($this->intervals);
272 $right = $count
[all...]
H A DLexer.php260 if (\count($this->modeStack) === 0) {
H A DParser.php356 for ($i = \count($this->parseListeners) - 1; $i >= 0; $i--) {
524 if ($this->buildParseTree || \count($this->parseListeners) > 0) {
646 return $this->precedenceStack[\count($this->precedenceStack) - 1] ?? -1;
690 if (\count($this->parseListeners) > 0) {
/plugin/combo/vendor/antlr/antlr4-php-runtime/src/Dfa/
H A DDFASerializer.php37 $count = $state->edges === null ? 0 : $state->edges->count();
39 for ($i = 0; $i < $count; $i++) {
/plugin/combo/vendor/antlr/antlr4-php-runtime/src/Error/Listeners/
H A DDiagnosticErrorListener.php123 if ($ruleIndex < 0 || $ruleIndex >= \count($ruleNames)) {
/plugin/combo/vendor/symfony/yaml/
H A DParser.php122 $this->numberOfParsedLines = \count($this->lines);
679 return (\count($this->lines) - 1) > $this->currentLineNb;
793 for ($i = 0, $linesCount = \count($lines), $previousLineBlank = false; $i < $linesCount; ++$i) {
898 for ($i = 0, $blockLinesCount = \count($blockLines); $i < $blockLinesCount; ++$i) {
1006 $count = 0;
1007 $value = preg_replace('#^\%YAML[: ][\d\.]+.*\n#u', '', $value, -1, $count);
1008 $this->offset += $count;
1011 $trimmedValue = preg_replace('#^(\#.*?\n)+#s', '', $value, -1, $count);
1012 if (1 === $count) {
1019 $trimmedValue = preg_replace('#^\-\-\-.*?\n#s', '', $value, -1, $count);
[all...]

1...<<11121314151617181920>>...102