Home
last modified time | relevance | path

Searched refs:index (Results 1 – 25 of 961) sorted by relevance

12345678910>>...39

/template/breeze/bower_components/gumby/js/libs/ui/
Dgumby.tabs.js25 this.$el.on('gumby.set', function(e, index) { argument
27 scope.set(e, index);
34 var index = $this.parent().index();
36 if(this.$nav.eq(index).add(this.$content.eq(index)).hasClass('active')) {
40 Gumby.debug('Setting active tab to '+index, this.$el);
46 this.$nav.eq(index).add(this.$content.eq(index)).addClass('active');
50 this.$el.trigger('gumby.onChange', index);
54 Tabs.prototype.set = function(e, index) { argument
55 this.$nav.eq(index).find('a').trigger(Gumby.click);
Dgumby.retina.js35 index = this.imageSrc.search(/(\.|\/)(gif|jpe?g|png)$/i);
38 if(index < 0) {
43 return imgSrc.substr(0, index) + '@2x' + imgSrc.substr(index, imgSrc.length);
/template/strap/vendor/antlr/antlr4-php-runtime/src/
H A DInputStream.php15 protected $index = 0; variable in Antlr\\Antlr4\\Runtime\\InputStream
59 return $this->index;
69 if ($this->index >= $this->size) {
74 $this->index++;
88 $pos = $this->index + $offset - 1;
120 public function seek(int $index) : void argument
122 if ($index <= $this->index) {
123 $this->index = $index; // just jump; don't update stream state (line, ...)
129 $this->index = \min($index, $this->size);
H A DBufferedTokenStream.php52 protected $index = -1; variable in Antlr\\Antlr4\\Runtime\\BufferedTokenStream
86 return $this->index;
99 public function seek(int $index) : void argument
103 $this->index = $this->adjustSeekIndex($index);
115 if ($this->index >= 0) {
119 $skipEofCheck = $this->index < \count($this->tokens) - 1;
122 $skipEofCheck = $this->index < \count($this->tokens);
130 if ($this->sync($this->index + 1)) {
131 $this->index = $this->adjustSeekIndex($this->index + 1);
179 public function get(int $index) : Token argument
[all …]
H A DCommonToken.php74 protected $index = -1; variable in Antlr\\Antlr4\\Runtime\\CommonToken
147 $token->index = $this->index;
236 public function setStartIndex(int $index) : void argument
238 $this->start = $index;
246 public function setStopIndex(int $index) : void argument
248 $this->stop = $index;
253 return $this->index;
258 $this->index = $tokenIndex;
/template/strap/db/combo/
H A Dupdate0022.sql77 create index PAGES_BACKLINK_COUNT_IDX on PAGES (BACKLINK_COUNT);
78 create index PAGES_DATE_END_IDX on PAGES (DATE_END desc);
79 create index PAGES_DATE_START_IDX on PAGES (DATE_START desc);
80 create index PAGES_IS_HOME_IDX on PAGES (IS_HOME);
81 create index PAGES_IS_LOW_QUALITY_IDX on PAGES (IS_LOW_QUALITY);
82 create index PAGES_LANG_IDX on PAGES (LANG);
83 create index PAGES_DATE_CREATED_IDX on PAGES (DATE_CREATED desc);
84 create index PAGES_DATE_MODIFED_IDX on PAGES (DATE_MODIFIED desc);
85 create index PAGES_DATE_PUBLISHED_IDX on PAGES (DATE_CREATED desc);
86 create index PAGES_DATE_REPLICATION_IDX on PAGES (DATE_REPLICATION);
[all …]
H A Dupdate0007.sql10 create index if not exists WORD_COUNT ON PAGES (WORD_COUNT);
11 create index if not exists LANG ON PAGES (LANG);
12 create index if not exists IS_LOW_QUALITY ON PAGES (IS_LOW_QUALITY);
13 create index if not exists TYPE ON PAGES (TYPE);
14 create index if not exists DATE_START ON PAGES (DATE_START DESC);
15 create index if not exists DATE_END ON PAGES (DATE_END DESC);
H A Dupdate0006.sql10 create index if not exists PAGES_DATE_MODIFED ON PAGES (DATE_MODIFIED DESC);
11 create index if not exists PAGES_DATE_CREATED ON PAGES (DATE_CREATED DESC);
12 create index if not exists PAGES_DATE_PUBLISHED ON PAGES (DATE_CREATED DESC);
13 create index if not exists PAGES_PATH ON PAGES (PATH ASC);
14 create index if not exists PAGES_NAME ON PAGES (NAME ASC);
/template/templar/js/
Dbootstrap-dropdown.js69 , index
93 index = $items.index($items.filter(':focus'))
95 if (e.keyCode == 38 && index > 0) index-- // up
96 if (e.keyCode == 40 && index < $items.length - 1) index++ // down
97 if (!~index) index = 0
100 .eq(index)
/template/strap/vendor/antlr/antlr4-php-runtime/src/Atn/States/
H A DATNState.php108 public function addTransition(Transition $trans, int $index = -1) : void argument
116 if ($index === -1) {
119 \array_splice($this->transitions, $index, 1, [$trans]);
123 public function getTransition(int $index) : Transition argument
125 return $this->transitions[$index];
128 public function setTransition(Transition $trans, int $index) : void argument
130 $this->transitions[$index] = $trans;
141 public function removeTransition(int $index) : void argument
143 \array_splice($this->transitions, $index, 1);
/template/strap/vendor/antlr/antlr4-php-runtime/src/Atn/
H A DSimState.php28 private $index = -1; variable in Antlr\\Antlr4\\Runtime\\Atn\\SimState
41 $this->index = -1;
49 return $this->index;
52 public function setIndex(int $index) : void argument
54 $this->index = $index;
/template/sprintdoc/css/
H A Dbase_structure.less69 z-index: 1000; // keyboard-navigation overlays always on top
73 z-index: 2; // put MagicMatcher-Dropdowns above .content and metabox-tabs
78 z-index: 100; // show label/link above content on hover etc.
83 z-index: 205; // put search-results above content, navigation and even mobile menu
87 z-index: 1; // put qc-output above meta-box
91 … z-index: 10; // put meta-box above positioned content-elements such as aggregations, edit-buttons
93 z-index: 1; // put the active tab above the meta-content in .tab-pane.active
98 z-index: 100; // put labels of the pagetools above content on hover etc.
102 z-index: 2; // put 'view original file'-overlay above image
107 z-index: 200; // put tasks-list above pagetools
[all …]
/template/breeze/bower_components/gumby/sass/functions/
D_icons.scss3 $index: index($item, $icon); variable
4 @if $index {
5 $return: if($index == 1, 2, $index);
/template/strap/vendor/salesforce/handlebars-php/src/Handlebars/
H A DTemplate.php124 list($index, $tree, $stop) = $topTree;
127 while (array_key_exists($index, $tree)) {
128 $current = $tree[$index];
129 $index++;
178 $newStack[0] = $index;
194 list($index, $tree, $stop) = $topTree;
195 while (array_key_exists($index, $tree)) {
196 $current = $tree[$index];
197 $index++;
209 $newStack[0] = $index;
[all …]
H A DContext.php38 protected $index = []; variable in Handlebars\\Context
95 * @param integer $index Index of the current section item.
99 public function pushIndex($index) argument
101 array_push($this->index, $index);
146 return array_pop($this->index);
190 return end($this->index);
/template/twigstarter/vendor/twig/twig/src/Node/Expression/
DArrayExpression.php18 private $index; variable in Twig\\Node\\Expression\\ArrayExpression
24 $this->index = -1;
26 …ring) $pair['key']->getAttribute('value')) && $pair['key']->getAttribute('value') > $this->index) {
27 $this->index = $pair['key']->getAttribute('value');
62 $key = new ConstantExpression(++$this->index, $value->getTemplateLine());
/template/sprintdoc/js/
H A Dsidebar.js33 for (var index=0; index <= window.sessionStorage.length; index += 1) {
34 … var item = window.sessionStorage.getItem('sidebar-section-' + sidebarId + '-' + index + '-open');
38 … window.sessionStorage.setItem('sidebar-section-' + sidebarId + '-' + index + '-open', 'false');
100 $elements.each(function (index) { argument
123 .data('index', index)
153 …if (window.sessionStorage.getItem('sidebar-section-' + sidebarId + '-' + index + '-open') === 'tru…
301 $templateMenus.each(function( index ) { argument
305 tIndex = y + index;
/template/strap/vendor/php-webdriver/webdriver/lib/
H A DWebDriverSelectInterface.php39 * @param int $index The index of the option. (0-based)
43 public function selectByIndex($index); argument
91 * @param int $index The index of the option. (0-based)
94 public function deselectByIndex($index); argument
H A DAbstractWebDriverCheckboxOrRadio.php73 public function selectByIndex($index) argument
75 $this->byIndex($index);
122 * @param int $index
126 protected function byIndex($index, $select = true) argument
129 if (!isset($elements[$index])) {
130 … throw new NoSuchElementException(sprintf('Cannot locate %s with index: %d', $this->type, $index));
133 $select ? $this->selectOption($elements[$index]) : $this->deselectOption($elements[$index]);
/template/strap/resources/snippet/js/
H A Dpage-explorer-tree.js9 for (const [index, currentPart] of currentIdParts.entries()) {
11 if (index < baseParts.length) {
12 if (currentPart === baseParts[index]) {
17 if (index < currentIdParts.length - 1) {
/template/dokucms/
DREADME.md6 The template offers a sidebar with either an index or content from a wiki page. It is based on the …
29 Turning "Use first heading for pagenames" on results in a nicer index.
58 … content can be either "file" or "index". This option controls the content of the sidebar. The def…
60index: The sidebar contains the index of all pages in your wiki, alphabetically sorted. Namespaces…
61 * clean index will remove the standard dokuwiki namespaces ('wiki' and 'playground') from the index
62index of further namespaces comma separated list of namespaces to be removed from the index if "cl…
/template/strap/vendor/antlr/antlr4-php-runtime/src/Utils/
H A DSet.php67 foreach ($this->table[$hash] as $index => $entry) {
88 foreach ($this->table[$hash] as $index => $entry) {
115 foreach ($this->table[$hash] as $index => $entry) {
136 foreach ($this->table[$hash] as $index => $entry) {
141 unset($this->table[$hash][$index]);
172 foreach ($bucket as $index => $value) {
173 if (!$value->equals($otherBucket[$index])) {
/template/strap/ComboStrap/
H A DIndex.php12 private static $index; variable in ComboStrap\\Index
30 if (self::$index === null) {
31 self::$index = new Index();
33 return self::$index;
/template/white-resume/css/
Dstructure.less4 z-index: 102;
33 z-index: 104;
47 z-index: 103;
53 z-index: 101;
/template/white/css/
Dstructure.less4 z-index: 102;
33 z-index: 104;
47 z-index: 103;
53 z-index: 101;

12345678910>>...39