Home
last modified time | relevance | path

Searched refs:cnt (Results 51 – 75 of 94) sorted by relevance

1234

/plugin/subjectindex/syntax/
H A Dindex.php290 $cnt = 0;
297 $cnt++;
299 if ($cnt > 1) {
/plugin/asiansearch/
H A Daction.php148 for ($cnt=4; $cnt--;) {
/plugin/combo/vendor/symfony/polyfill-mbstring/
H A DMbstring.php175 $cnt = floor(\count($convmap) / 4) * 4;
177 for ($i = 0; $i < $cnt; $i += 4) {
183 $s = preg_replace_callback('/&#(?:0*([0-9]+)|x0*([0-9a-fA-F]+))(?!&);?/', function (array $m) use ($cnt, $convmap) {
185 for ($i = 0; $i < $cnt; $i += 4) {
243 $cnt = floor(\count($convmap) / 4) * 4;
254 for ($j = 0; $j < $cnt; $j += 4) {
/plugin/sketchcanvas/phplib/
H A Dspyc.php413 $cnt = count($Source);
414 for ($i = 0; $i < $cnt; $i++) {
430 while (++$i < $cnt && $this->literalBlockContinues($Source[$i], $this->indent)) {
436 while (++$i < $cnt && self::greedilyNeedNextLine($line)) {
803 $cnt = count($reverse_history) - 1;
804 for ($i = 0; $i < $cnt; $i++) {
807 $this->result = $reverse_history[$cnt];
/plugin/semanticdata/syntax/
H A Dentry.php146 $cnt = count($val);
147 for ($i=0; $i<$cnt; $i++){
150 if($i < $cnt - 1) $ret .= '<span class="sep">, </span>';
/plugin/farm/
H A Doverview.class.php102 $cnt = 0;
175 $cnt++;
177 if($cnt >= DOKU_FARM_PLUGIN_ANIMALOVERVIEW_PERPAGE) break;
/plugin/qc/
H A Drenderer.php116 $cnt = count($this->docArray['header_struct']);
117 for ($i = 1; $i < $cnt; $i++) {
/plugin/fckg/fckeditor/editor/filemanager/connectors/php/
H A Dcheck_acl.php62 $cnt = count($groups);
63 for($i=0; $i<$cnt; $i++){
/plugin/navi/
H A Dsyntax.php126 $cnt = 0;
141 $cnt++;
/plugin/blogtng/helper/
H A Dtags.php292 foreach($tags as $tag => $cnt){
294 if($cnt <= $val){
/plugin/data-au/syntax/
H A Dentry.php179 $cnt = count($val);
180 for($i = 0; $i < $cnt; $i++) {
187 if($i < $cnt - 1) {
/plugin/tablecalc/
H A Dscript.js200 var cnt=0;
202 cnt+=compare(a[i],check,operation);
204 return cnt;
/plugin/ckgdoku/fckeditor/editor/filemanager/connectors/php/
H A Dcheck_acl.php69 $cnt = count($groups);
70 for($i = 0; $i < $cnt; $i++) {
/plugin/bibtex/OSBib/
H A DUTF8.php220 $cnt = count($uni);
221 for ($i=0; $i < $cnt; $i++){
/plugin/ckgedit/fckeditor/editor/filemanager/connectors/php/
H A Dcheck_acl.php69 $cnt = count($groups);
70 for($i = 0; $i < $cnt; $i++) {
/plugin/phpipam/
H A Dphpipam-api.php562 foreach ($identifiers as $cnt=>$i) {
563 if($cnt==0) {
567 $this->api_server_identifiers['id'.($cnt+1)] = $i;
/plugin/authdrupal7/
H A Dauth.php466 $cnt = 0;
468 if($cnt++ != 0) $sql .= ", ";
/plugin/authdrupal8/
H A Dauth.php460 $cnt = 0;
462 if($cnt++ != 0) $sql .= ", ";
/plugin/freechat/phpfreechat/data/public/js/
H A Dmd5.js240 'bit_rol' : function(num, cnt) argument
242 return (num << cnt) | (num >>> (32 - cnt));
/plugin/data/syntax/
H A Dentry.php202 $cnt = count($val);
203 for ($i = 0; $i < $cnt; $i++) {
208 if ($i < $cnt - 1) {
/plugin/issuelinks/classes/
H A DIssue.php622 $cnt = min(count($lines), 5);
623 for ($i = 0; $i < $cnt; $i += 1) {
/plugin/quickstats/
H A Dsyntax.php612 foreach($total_accesses as $agt=>$cnt) {
615 $renderer->doc .= "<tr><td>$n</td><td>$agt&nbsp;</td><td>&nbsp;&nbsp;$cnt</td>\n";
/plugin/tagging/
H A Dhelper.php209 foreach ($tags as $tag => $cnt) {
211 if ($cnt <= $val) {
975 $ret[$row['item']] = $row['cnt'];
/plugin/latexit/
H A Drenderer.php1401 * @param int $cnt How many new lines to insert.
1403 protected function _n($cnt = 1) { argument
1404 for ($i = 0; $i < $cnt; $i++) {
/plugin/discussion/
H A Daction.php418 $cnt = empty($data['comments']) ? 0 : count($data['comments']);
424 …if($cnt > 1 || ($cnt == 1 && $data['comments'][$keys[0]]['show'] == 1) || $this->getConf('allowgue…

1234