Home
last modified time | relevance | path

Searched refs:count (Results 351 – 375 of 2539) sorted by last modified time

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

/plugin/combo/vendor/antlr/antlr4-php-runtime/src/
H A DParserRuleContext.php167 if ($this->children === null || $i < 0 || $i >= \count($this->children)) {
190 if ($this->children === null || $i < 0 || $i >= \count($this->children)) {
252 return $this->children !== null ? \count($this->children) : 0;
H A DInputStream.php36 $this->size = \count($this->characters);
H A DRuleContext.php139 for ($i = 0, $count = $this->getChildCount(); $i < $count; $i++) {
239 $ruleName = $ri >= 0 && $ri < \count($ruleNames) ? $ruleNames[$ri] : (string) $ri;
/plugin/combo/ComboStrap/
H A DStringUtility.php159 * The word count does not take into account
161 * Therefore the node <node> and attribute name=value are not taken in the count
183 return count($wordsWithoutEmpty);
H A DFetcherMarkup.php447 if (count($jsonDecodeSnippets) > 0) {
H A DHtml.php131 $countExpected = count($expectedSrcSets);
132 $countActual = count($actualSrcSets);
134 throw new ExceptionNotEquals("The expected srcSet count ($countExpected) is not the same than the actual ($countActual).");
140 if (count($expectedSrcSetExploded) == 2) {
148 if (count($actualSrcSetExploded) == 2) {
H A DHttpResponse.php293 if (count($headers) == 0) {
/plugin/combo/resources/firebug/
H A Dfirebug-lite-1.2-compressed.js42 d.console.scroll();}},scroll:function(){with(firebug){el.left.console.monitor.environment.getElement().parentNode.scrollTop=Math.abs(el.left.console.monitor.environment.getSize().offsetHeight-(el.left.console.monitor.element.parentNode.offsetHeight-11));}},run:function(_command){with(firebug){if(!internal.init){d.console.cache.push({"command":_command,"arg":Array.prototype.slice.call(arguments,1)});}else{d.console.cmd[_command].apply(window,Array.prototype.slice.call(arguments,1));}}},toggleML:function(){with(firebug){var open=!env.ml;env.ml=!env.ml;d.navigateRightColumn("console",open);el[open?"left":"right"].console.mlButton.environment.addStyle({display:"none"});el[!open?"left":"right"].console.mlButton.environment.addStyle({display:"block"});el.left.console.mlButton.attribute[(open?"add":"remove")+"Class"]("CloseML");}},countMap:{},timeMap:{},cmd:{log:function(_value){with(firebug){var args=d.console.formatArgs.apply(window,arguments);d.console.addLine().attribute.addClass("Log").update(args);d.console.scroll();}},warn:function(_value){with(firebug){var args=d.console.formatArgs.apply(window,arguments);d.console.addLine().attribute.addClass("Warn").update(args);d.console.scroll();}},info:function(_value){with(firebug){var args=d.console.formatArgs.apply(window,arguments);d.console.addLine().attribute.addClass("Info").update(args);d.console.scroll();}},debug:function(_value){with(firebug){var args=d.console.formatArgs.apply(window,arguments);d.console.addLine().attribute.addClass("Debug").update(args);d.console.scroll();}},error:function(_value){with(firebug){var args=d.console.formatArgs.apply(window,arguments);d.console.addLine().attribute.addClass("Error").update(args);d.console.scroll();}},trace:function(_value){with(firebug){var stackAmt=3,f=arguments.caller,isArray=lib.util.IsArray(f);if((!isArray&&f)||(isArray&&f.length>0)){d.console.addLine().attribute.addClass("Arrow").update(">>> console.trace(stack)");for(var i=0;i<stackAmt;i++){var func=f.toString(),args=f.arguments;d.dom.open({"function":func,"arguments":args},d.console.addLine());f=f.caller;}}}},dir:function(_value){with(firebug){d.console.addLine().attribute.addClass("Arrow").update(">>> console.dir("+_value+")");d.dom.open(_value,d.console.addLine());}},dirxml:function(){with(firebug){d.console.cmd.log.apply(this,arguments);}},time:function(_name){with(firebug){d.console.timeMap[_name]=new Date().getTime();}},timeEnd:function(_name){with(firebug){if(_name in d.console.timeMap){var delta=new Date().getTime()-d.console.timeMap[_name],args=d.console.formatArgs.apply(window,[_name+":",delta+"ms"]);d.console.addLine().attribute.addClass("log").update(args);delete d.console.timeMap[_name];}}},count:function(_name){with(firebug){if(!d.console.countMap[_name])
100 _source[_index]=pi.util.Array.clone(_source[_index]);});return tmp;},count:function(_array,_value){var count=0;pi.util.Array.forEach(_array,function(){count+=Number(arguments[0]==_value);});return count;},forEach:function(_array,_function){if(_array.forEach) method in pi.util.Array
H A Dfirebug-lite-1.2.js1059 count: function(_name){
1946 count:function(_array,_value){ method in pi.util.Array
1947 var count = 0;
1949 count+=Number(arguments[0]==_value);
1951 return count;
/plugin/combo/vendor/salesforce/handlebars-php/
H A DREADME.md319 Total: {{count}}
340 "count" => 4,
348 "count" => 1,
353 "count" => 2,
544 To singularize or plurialize words based on count `{{#inflect count $singular $plurial}}`
546 {{#inflect count '%d book' '%d books'}}
583 To truncate a string: `{{#repeat $count}}{{/repeat}}`
/plugin/combo/vendor/antlr/antlr4-php-runtime/src/Atn/
H A DATNDeserializer.php182 for ($i = 1, $length = \count($characters); $i < $length; $i++) {
480 $count = $this->readInt();
483 for ($i = 0; $i < $count; $i++) {
505 $count = \count($atn->ruleToStartState);
507 for ($i = 0; $i < $count; $i++) {
511 for ($i = 0; $i < $count; $i++) {
577 $count = $ruleToStartState->getNumberOfTransitions();
579 while ($count > 0) {
580 $bypassStart->addTransition($ruleToStartState->getTransition($count
[all...]
/plugin/combo/vendor/antlr/antlr4-php-runtime/src/Atn/States/
H A DATNState.php105 return \count($this->transitions);
110 if (\count($this->transitions) === 0) {
/plugin/combo/vendor/antlr/antlr4-php-runtime/src/Comparison/
H A DEquality.php40 if (\count($left) !== \count($right)) {
/plugin/combo/vendor/antlr/antlr4-php-runtime/src/Dfa/
H A DDFA.php100 if ($precedence < 0 || $precedence >= \count($this->s0->edges)) {
130 if ($precedence >= $this->s0->edges->count()) {
/plugin/combo/vendor/symfony/yaml/Command/
H A DLintCommand.php173 $countFiles = \count($filesInfo);
/plugin/combo/vendor/antlr/antlr4-php-runtime/src/PredictionContexts/
H A DArrayPredictionContext.php66 return \count($this->returnStates);
103 for ($i = 0, $count = \count($this->returnStates); $i < $count; $i++) {
H A DPredictionContext.php432 while ($i < \count($a->returnStates) && $j < \count($b->returnStates)) {
478 if ($i < \count($a->returnStates)) {
479 for ($p = $i, $count = \count($a->returnStates); $p < $count; $p++) {
485 for ($p = $j, $count = \count($b->returnStates); $p < $count; $p++) {
493 if ($k < \count(
[all...]
H A DPredictionContextCache.php53 return $this->cache->count();
/plugin/combo/ComboStrap/Tag/
H A DBoxTag.php91 if (count($inlineTagFounds) > 1) {
/plugin/combo/vendor/antlr/antlr4-php-runtime/src/Tree/
H A DParseTreeWalker.php38 $count = $tree->getChildCount();
40 for ($i = 0; $i < $count; $i++) {
/plugin/combo/vendor/antlr/antlr4-php-runtime/src/Utils/
H A DSet.php30 return $this->count() === 0;
33 public function count() : int function in Antlr\\Antlr4\\Runtime\\Utils\\Set
143 if (\count($this->table[$hash]) === 0) {
166 if (!isset($other->table[$hash]) || \count($bucket) !== \count($other->table[$hash])) {
/plugin/combo/vendor/php-webdriver/webdriver/lib/Interactions/
H A DWebDriverCompositeAction.php37 return count($this->actions);
/plugin/structodt/
H A Daction.php130 if (count($rendered_pages) > 1) {
165 if (count($templates) > 1 && $ext != 'pdf') {
/plugin/data/admin/
H A Dclean.php74 $count = 0;
79 $count++;
83 msg(sprintf($this->getLang('pages_del'), $count), 1);
/plugin/data/
H A Dbureaucracy_field.php109 if (count($params['value']) === 0) {

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