Home
last modified time | relevance | path

Searched refs:count (Results 76 – 100 of 2411) sorted by relevance

12345678910>>...97

/plugin/data-graph/
H A Dsyntax.php50 if(count($d) == 2){
82 if (count($groups) > 0){
95 if (count($aggregates) > 0){
109 if (count($groups) > 0){
128 if (count($groups) > 0){
156 if( count($metrics == 2)){
163 $count = count($arr);
164 for( $i=0; $i < $count; $i++){
171 if(count($curname) > 1 || ctype_lower($curname[0][0])){
/plugin/datagraph/
H A Dsyntax.php50 if(count($d) == 2){
82 if (count($groups) > 0){
95 if (count($aggregates) > 0){
109 if (count($groups) > 0){
128 if (count($groups) > 0){
156 if( count($metrics == 2)){
163 $count = count($arr);
164 for( $i=0; $i < $count; $i++){
171 if(count($curname) > 1 || ctype_lower($curname[0][0])){
/plugin/bibtex/OSBib/format/bibtexParse/
H A DPARSEENTRIES.php111 $this->count = 0;
185 $count = 0;
186 $count = substr_count($line, $delimitStart);
187 $count -= substr_count($line, $delimitEnd);
188 return $count;
261 $this->entries[$this->count][$key] = $value;
281 $count = 0;
293 while($count);
312 $this->entries[$this->count] = $entry;
313 $this->count++;
[all …]
/plugin/findologicxmlexport/vendor/phpunit/phpunit/src/Framework/Constraint/
H A DCount.php48 return count($other);
61 $count = iterator_count($iterator);
72 return $count;
86 for ($count = 0; $generator->valid(); $generator->next()) {
87 $count += 1;
90 return $count;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/CloudComposer/
H A DSchedulerResource.php25 public $count; variable in Google\\Service\\CloudComposer\\SchedulerResource
42 public function setCount($count) argument
44 $this->count = $count;
51 return $this->count;
/plugin/html2pdf/html2pdf/html2ps/
H A Dflow_context.class.inc.php40 if (count($floats) == 0) { return null; }
43 $size = count($floats);
61 $size = count($floats);
111 $size = count($floats);
147 if ($clear <= count($floats)) { $y = min( $y, $float_bottoms[$clear-1] ); };
164 if (count($floats) == 0) { return null; }
167 $size = count($floats);
185 $size = count($floats);
235 $size = count($floats);
267 if ($clear <= count($floats)) { $y = min( $y, $float_bottoms[$clear-1] ); };
[all …]
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Compute/
H A DAllocationSpecificSKUReservation.php29 public $count; variable in Google\\Service\\Compute\\AllocationSpecificSKUReservation
54 public function setCount($count) argument
56 $this->count = $count;
63 return $this->count;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/ShoppingContent/
H A DDatafeedStatusError.php30 public $count; variable in Google\\Service\\ShoppingContent\\DatafeedStatusError
55 public function setCount($count) argument
57 $this->count = $count;
64 return $this->count;
/plugin/translationbuddy/
H A Dsyntax.php158 … $R->doc .= '<td rowspan="'.count($item).'" id="translationbuddy__'.$lc.'">'.$lc.'</td>';
163 $R->doc .= '<td class="rightalign">'.count($pages).'</td>';
164 if (count($items['en'][$ns]) == 0) {
167 … $R->doc .= '<td class="rightalign">'.round(100*count($pages)/count($items['en'][$ns])).'%</td>';
178 if (count($outdated) > 0) {
183 while (++$itr < $data['outdated'] && $itr < count($outdated));
184 if ($itr < count($outdated)) {
185 $R->doc .= 'and '.(count($outdated)-$itr).' more.';
190 if (count($items['en'][$ns]) > 0) {
193 if (count($extra_pages) > 0) {
[all …]
/plugin/farmsync/_test/
H A DpageUpdate.test.php42 $this->assertEquals(count($mock_farm_util->receivedWriteCalls), 0);
43 $this->assertEquals(count($mock_farm_util->receivedPageWriteCalls), 1);
69 $this->assertEquals(count($mock_farm_util->receivedWriteCalls), 0);
70 $this->assertEquals(count($mock_farm_util->receivedPageWriteCalls), 0);
101 $this->assertEquals(count($mock_farm_util->receivedWriteCalls), 0);
102 $this->assertEquals(count($mock_farm_util->receivedPageWriteCalls), 1);
130 $this->assertEquals(count($mock_farm_util->receivedWriteCalls), 0);
131 $this->assertEquals(count($mock_farm_util->receivedPageWriteCalls), 0);
157 $this->assertEquals(count($mock_farm_util->receivedWriteCalls), 0);
158 $this->assertEquals(count($mock_farm_util->receivedPageWriteCalls), 1);
[all …]
/plugin/datatables/assets/datatables.net-buttons-bs/css/
H A Dbuttons.bootstrap.min.css
/plugin/authremoteuser/
H A Dauth.php199 if(!is_array($changes) || !count($changes)) return true;
253 $count = count($this->users);
255 $count -= count($this->users);
256 return $count;
271 if(!count($filter)) return count($this->users);
273 $count = 0;
277 $count += $this->_filter($user, $info);
280 return $count;
300 $count = 0;
308 $count++;
[all …]
/plugin/freechat/phpfreechat/src/commands/
H A Dconnect.class.php38 …(count($users["nickid"]) == 0 || (count($users["nickid"]) == 1 && $users["nickid"][0] == $u->nicki…
64 $chanlist = (count($u->channels) == 0) ? $c->channels : $u->getChannelNames();
65 for($i = 0 ; $i < count($chanlist) ; $i++)
69 $cmd =& pfcCommand::Factory( $i < count($chanlist)-1 || !$joinoldchan ? 'join2' : 'join' );
73 $pvlist = (count($u->privmsg) == 0) ? $c->privmsg : $u->getPrivMsgNames();
74 for($i = 0 ; $i < count($pvlist) ; $i++)
78 … $cmd =& pfcCommand::Factory( $i < count($pvlist)-1 || !$joinoldchan ? 'privmsg2' : 'privmsg' );
102 if (count($u->channels) == 0)
120 if (count($u->privmsg) > 0)
/plugin/findologicxmlexport/vendor/phpdocumentor/reflection-docblock/src/DocBlock/
H A DDescriptionFactory.php121 $count = count($tokens);
125 for ($i = 1; $i < $count; $i += 2) {
134 for ($i = 0; $i < $count; $i += 2) {
165 if (count($lines) <= 1) {
171 for ($i = 1; $i < count($lines); $i++) {
184 for ($i = 1; $i < count($lines); $i++) {
/plugin/findologicxmlexport/vendor/findologic/libflexport/src/FINDOLOGIC/Export/XML/
H A DXMLExporter.php12 public function serializeItems($items, $start, $count, $total) argument
14 $page = new Page($start, $count, $total);
24 public function serializeItemsToFile($targetDirectory, $items, $start, $count, $total) argument
26 $xmlString = $this->serializeItems($items, $start, $count, $total);
27 $targetPath = sprintf('%s/findologic_%d_%d.xml', $targetDirectory, $start, $count);
/plugin/authgooglesheets/vendor/google/apiclient-services/src/ChromeManagement/
H A DGoogleChromeManagementV1BrowserVersion.php29 public $count; variable in Google\\Service\\ChromeManagement\\GoogleChromeManagementV1BrowserVersion
60 public function setCount($count) argument
62 $this->count = $count;
69 return $this->count;
/plugin/davcal/vendor/sabre/dav/tests/Sabre/DAV/Locks/Backend/
H A DAbstractTest.php40 $this->assertEquals(1,count($locks));
64 $this->assertEquals(1,count($locks));
89 $this->assertEquals(0,count($locks));
107 $this->assertEquals(1,count($locks));
110 $this->assertEquals(0,count($locks));
113 $this->assertEquals(1,count($locks));
138 $this->assertEquals(1,count($locks));
161 $this->assertEquals(1,count($locks));
166 $this->assertEquals(0,count($locks));
186 $this->assertEquals(1,count($locks));
[all …]
/plugin/findologicxmlexport/vendor/phpunit/php-file-iterator/src/
H A DFacade.php77 $count = count($files);
79 if ($count == 0) {
83 if ($count == 1) {
100 $count--;
103 for ($i = 0; $i < $count; $i++) {
/plugin/davcal/vendor/sabre/dav/tests/Sabre/CalDAV/
H A DICSExportPluginTest.php69 $this->assertEquals(1,count($obj->VERSION));
70 $this->assertEquals(1,count($obj->CALSCALE));
71 $this->assertEquals(1,count($obj->PRODID));
73 $this->assertEquals(1,count($obj->VTIMEZONE));
74 $this->assertEquals(1,count($obj->VEVENT));
120 $this->assertEquals(1,count($obj->VERSION));
121 $this->assertEquals(1,count($obj->CALSCALE));
122 $this->assertEquals(1,count($obj->PRODID));
125 $this->assertEquals(1,count($obj->VEVENT));
229 $this->assertEquals(1,count($obj->PRODID));
[all …]
/plugin/findologicxmlexport/vendor/phpunit/phpunit-mock-objects/src/Framework/MockObject/Matcher/
H A DInvokedCount.php61 $count = $this->getInvocationCount();
63 if ($count > $this->expectedCount) {
97 $count = $this->getInvocationCount();
99 if ($count !== $this->expectedCount) {
105 $count
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Dialogflow/
H A DGoogleCloudDialogflowCxV3ExperimentResultMetric.php24 public $count; variable in Google\\Service\\Dialogflow\\GoogleCloudDialogflowCxV3ExperimentResultMetric
49 public function setCount($count) argument
51 $this->count = $count;
55 return $this->count;
/plugin/combo/vendor/antlr/antlr4-php-runtime/src/
H A DVocabularyImpl.php52 \count($this->displayNames),
53 \count($this->literalNames),
54 \count($this->symbolicNames)
89 if (\count($tokenNames) === 0) {
132 if ($tokenType >= 0 && $tokenType < \count($this->literalNames)) {
141 if ($tokenType >= 0 && $tokenType < \count($this->symbolicNames)) {
154 if ($tokenType >= 0 && $tokenType < \count($this->displayNames)) {
/plugin/findologicxmlexport/vendor/phpunit/phpunit-mock-objects/tests/MockObject/Generator/
H A Dabstract_class.phpt45 $count = func_num_args();
47 if ($count > 0) {
50 for ($i = 0; $i < $count; $i++) {
67 $count = func_num_args();
69 if ($count > 0) {
72 for ($i = 0; $i < $count; $i++) {
89 $count = func_num_args();
91 if ($count > 0) {
94 for ($i = 0; $i < $count; $i++) {
/plugin/dw2pdf/vendor/mpdf/mpdf/src/Tag/
H A DBr.php35 if (count($this->mpdf->InlineBDF)) {
41 if (count($iBDF)) {
43 for ($i = count($iBDF) - 1; $i >= 0; $i--) {
46 for ($i = 0; $i < count($iBDF); $i++) {
67 if (count($this->mpdf->textbuffer)) {
68 $this->mpdf->textbuffer[count($this->mpdf->textbuffer) - 1][0] = preg_replace(
71 $this->mpdf->textbuffer[count($this->mpdf->textbuffer) - 1][0]
73 if (!empty($this->mpdf->textbuffer[count($this->mpdf->textbuffer) - 1][18])) {
74 $this->otl->trimOTLdata($this->mpdf->textbuffer[count($this->mpdf->textbuffer) - 1][18], false);
/plugin/authvk/
H A Dauth.php202 if(!is_array($changes) || !count($changes)) return true;
256 $count = count($this->users);
258 $count -= count($this->users);
259 return $count;
274 if(!count($filter)) return count($this->users);
276 $count = 0;
280 $count += $this->_filter($user, $info);
283 return $count;
303 $count = 0;
311 $count++;
[all …]

12345678910>>...97