Home
last modified time | relevance | path

Searched refs:idx (Results 51 – 75 of 242) sorted by relevance

12345678910

/plugin/sequencediagram/bower_components/lodash/vendor/underscore/
H A Dunderscore.js505 var idx = output.length;
515 idx = output.length;
518 output[idx++] = value;
663 i = idx >= 0 ? idx : Math.max(idx + length, i);
665 length = idx >= 0 ? Math.min(idx + 1, length) : idx + length + 1;
669 return array[idx] === item ? idx : -1;
673 return idx >= 0 ? idx + i : -1;
675 for (idx = dir > 0 ? i : length - 1; idx >= 0 && idx < length; idx += dir) {
676 if (array[idx] === item) return idx;
704 for (var idx = 0; idx < length; idx++, start += step) {
[all …]
/plugin/rndtxt/
H A Dsyntax.php54 $idx = array_rand($data);
55 $renderer->cdata($data[$idx]);
/plugin/fastwiki/
H A Dpagecache.js56 $('a', elt).each(function(idx, a) { argument
123 var idx = queue.indexOf(id);
124 if (idx >= 0) {
125 queue.splice(idx, 1);
H A Dhistory.js30 $('h1, h2, h3, h4, h5, h6', $('.content_initial')).each(function(idx, elt) { argument
131 $('form').each(function(idx, form) { argument
182 $('a').each(function(idx, elt) { argument
/plugin/extendpage/
H A Daction.php57 $idx = $pos === 'bottom' ? strlen($event->data):0;
67 $idx, 0
/plugin/oauth/action/
H A Duser.php88 $idx = array_search($service, $groups);
89 if ($idx !== false) unset($groups[$idx]);
/plugin/glossary/
H A Dscript.js186 for (var idx = 0; idx < form.elements.length; idx++) {
187 var elem = form.elements[idx];
/plugin/wysiwyg/fckeditor/editor/dialog/fck_spellerpages/spellerpages/
H A DwordWindow.js211 function _lastPos( txtid, idx ) { argument
212 if( idx > 0 )
213 return this.indexes[txtid][idx-1] + this.originalSpellings[txtid][idx-1].length;
/plugin/fckg/fckeditor/editor/dialog/fck_spellerpages/spellerpages/
H A DwordWindow.js211 function _lastPos( txtid, idx ) { argument
212 if( idx > 0 )
213 return this.indexes[txtid][idx-1] + this.originalSpellings[txtid][idx-1].length;
/plugin/sketchcanvas/phplib/
H A Dlib.php11 foreach ($point as $idx => $ivalue) {
12 $point[$idx] = intval($ivalue);
/plugin/combo/action/
H A Dpageprotection.php297 foreach (array_keys($event->result) as $idx) {
298 $page = MarkupPath::createMarkupFromId($idx);
302 unset($event->result[$idx]);
309 unset($event->result[$idx]);
/plugin/freesync/
H A Dhelper.php155 foreach(array_keys($pages) as $idx) {
156 if(page_exists($pages[$idx])) {
157 $perm = auth_quickaclcheck($pages[$idx]);
159 $local_list[trim($pages[$idx])] = array("id" => trim($pages[$idx]),
161 "lsize" => @filesize(wikiFN($pages[$idx])),
162 "llastModified" => @filemtime(wikiFN($pages[$idx])));
/plugin/advrack/
H A Dscript.js41 jQuery.each(racks, function(idx, rack) { argument
55 jQuery.each(servers_height['errors'], function(idx, server_err) { argument
59 jQuery.each(cages_height['errors'], function(idx,cage_err) { argument
79 jQuery.each(rack['servers'], function(idx, server) { argument
84 jQuery.each(rack['cages'], function(idx, cage) { argument
90 jQuery.each(equipment, function(idx, item) { argument
238 jQuery.each(items, function(idx, item) { argument
/plugin/authgooglesheets/vendor/monolog/monolog/src/Monolog/
H A DRegistry.php91 if (false !== ($idx = array_search($logger, self::$loggers, true))) {
92 unset(self::$loggers[$idx]);
/plugin/pdfjs/pdfjs/web/
H A Ddebugger.js314 var x = +this.dataset.idx;
334 line.dataset.idx = i;
344 cbox.dataset.idx = i;
396 breakIt: function breakIt(idx, callback) {
400 self.currentIdx = idx;
419 self.goTo(idx);
421 goTo: function goTo(idx) {
425 if ((row.dataset.idx | 0) === idx) {
/plugin/pagetemplate/
H A Dsyntax.php175 $idx = array_search(substr(get_class($this), 7), $this->allowedModes);
176 if ($idx !== false) {
177 unset($this->allowedModes[$idx]);
/plugin/virtualgroup/
H A Dadmin.php
/plugin/combo/vendor/antlr/antlr4-php-runtime/src/Atn/
H A DATNDeserializer.php516 private function generateRuleBypassTransition(ATN $atn, int $idx) : void argument
519 $bypassStart->ruleIndex = $idx;
523 $bypassStop->ruleIndex = $idx;
532 if ($atn->ruleToStartState[$idx]->isLeftRecursiveRule) {
537 if ($this->stateIsEndStateFor($state, $idx)) {
558 $endState = $atn->ruleToStopState[$idx];
576 $ruleToStartState = $atn->ruleToStartState[$idx];
585 $atn->ruleToStartState[$idx]->addTransition(new EpsilonTransition($bypassStart));
595 $matchState->addTransition(new AtomTransition($bypassStop, $atn->ruleToTokenType[$idx] ?? 0));
599 private function stateIsEndStateFor(ATNState $state, int $idx) argument
[all...]
/plugin/toolbox/
H A DToolboxFindAndReplace.js211 var idx = text.search(re);
212 if (idx === -1) {
225 return [pos + idx, match[0]];
/plugin/asiansearch/
H A Daction.php157 list($str,$idx) = $match[0];
160 $utf8_idx = utf8_strlen(substr($text,0,$idx));
201 $offset = $idx + strlen(utf8_substr($text,$utf8_idx,$post));
/plugin/txtconf/
H A Dconfig0.class.php446 $idx = $i-1;
447 while(($idx>=0) && ($s{$idx} == '\\')) $idx--;
448 return (($i - $idx + 1) % 2);
/plugin/multiorphan/
H A Dscript.js175 $.each(actions||[], function(idx, action) { argument
264 if ( (idx = orphaned.indexOf(link)) > -1 ) {
265 orphaned.splice(idx, 1);
283 $.each($currentResults.pages.orphan, function(idx, orphan){ argument
287 $.each($currentResults.media.orphan, function(idx, orphan){ argument
/plugin/translation2/
H A Daction.php39 foreach ($supportedLanguages as $idx=>$lang) $supportedLanguages[$idx] = basename($lang);
/plugin/datatemplate/syntax/
H A Dlist.php352 $idx = $keys[$col];
355 $comp = $this->_match_wildcard($f['value'], $datarow[$idx]);
358 $comp = !$this->_match_wildcard($f['value'], $datarow[$idx]);
363 $evalstr = $datarow[$idx] . $f['compare'] . $f['value'];
/plugin/s5reloaded/ui/thesis/
H A Dslides.js305 if(vol >= 83 && vol <= 90) {idx = 0;}
312 else if(vol >= 8 && vol < 13) {idx = 7;}
313 else {idx = 8;}
1339 var idx = 0;
1350 else {idx = 10;}
1355 if(vol >= 83 && vol <= 90) {idx = 0;}
1356 else if(vol >= 68 && vol < 83) {idx = 1;}
1362 else if(vol >= 8 && vol < 13) {idx = 7;}
1363 else {idx = 8;}
2071 ctx.fillStyle = colorSlice[(idx++)];
[all …]

12345678910