Home
last modified time | relevance | path

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

12345678910>>...77

/plugin/bpmnioeditor/
Dscript.js11 jQuery('a.media.mediafile.mf_bpmn').each(function(index) { argument
14 …var $canvas_view = jQuery('<div id="bpmn_canvas_'+ index +'_view" class="plugin_bpmnioeditor canva…
15 …var $canvas_edit = jQuery('<div id="bpmn_canvas_'+ index +'_edit" class="plugin_bpmnioeditor canva…
17 window.bpmn[index] = [];
18 window.bpmn[index]['name'] = getQuery($bpmn.attr('href'), 'media');
23 …jQuery('<button id="bpmn_'+index+'_edit_button" class="bpmnEditButton" style="display:none" >'+LAN…
24 …jQuery('<button id="bpmn_'+index+'_save_button" class="bpmnSaveButton" style="margin-left:0.2%;dis…
25 …jQuery('<button id="bpmn_'+index+'_view_button" class="bpmnViewButton" style="display:none" >'+LAN…
27 jQuery('#bpmn_'+index+'_edit_button').on('click', function(){
28 toggleButtons(index);
[all …]
/plugin/odt/ODT/css/
Dcssdocument.php21 public $index = 0; variable in css_doc_element
29 return $this->doc->entries [$this->index]['element'];
38 if(isset($this->index['attributes_array'])) {
39 return $this->doc->entries [$this->index]['attributes_array'];
49 $index = $this->doc->findParent($this->index);
50 if ($index == -1 ) {
55 $element->index = $index;
65 $index = $this->doc->getPrecedingSibling($this->index);
66 if ($index == -1 ) {
71 $element->index = $index;
[all …]
/plugin/refnotes/
Dinstructions.php119 private $index; variable in refnotes_instruction_reference
125 public function __construct($list, &$data, $index) { argument
128 $this->index = $index;
136 return $this->index;
149 public function getData($index) { argument
150 return $this->data[1][$index];
156 public function getPluginData($index) { argument
157 return $this->data[1][1][$index];
163 public function setPluginData($index, $data) { argument
164 $this->data[1][1][$index] = $data;
[all …]
Dnamespace.php13 protected $index; variable in refnotes_namespace_data_stash
19 $this->index = array();
31 return count($this->index);
38 return array_keys($this->index);
44 public function getAt($index) { argument
45 return array_key_exists($index, $this->index) ? $this->index[$index] : array();
52 ksort($this->index);
111 $index = $namespace->getStyleIndex($this->page->findParentNamespace($parent));
113 $this->index[$index][] = $style;
130 foreach ($this->index as &$index) {
[all …]
/plugin/photogallery/lightGallery/js/
Dlightgallery.js76 index: false, property
169 _this.index = parseInt(_hash.split('&slide=')[1], 10);
174 _this.build(_this.index);
185 _this.index = _this.s.index || 0;
190 _this.build(_this.index);
209 _this.index = _this.s.index || _this.$items.index(this);
213 _this.build(_this.index);
221 Plugin.prototype.build = function(index) { argument
233 _this.slide(index, false, false, false);
338 this.$slide.eq(this.index).addClass('lg-current');
[all …]
/plugin/imagecarousel/vendor/swipebox/js/
Djquery.swipebox.js97 var index, relType, relVal;
134 index = $elem.index( $( this ) );
138 ui.init( index );
148 init : function( index ) { argument
155 this.openSlide( index );
156 this.openMedia( index );
157 this.preloadMedia( index+1 );
158 this.preloadMedia( index-1 );
160 plugin.settings.afterOpen(index);
281 index,
[all …]
/plugin/findologicxmlexport/vendor/hoa/exception/
DGroup.php149 foreach ($this->_group->pop() as $index => $exception) {
150 $this[$index] = $exception;
171 * @param mixed $index Index.
174 public function offsetExists($index) argument
177 if (isset($group[$index])) {
188 * @param mixed $index Index.
191 public function offsetGet($index) argument
194 if (isset($group[$index])) {
195 return $group[$index];
205 * @param mixed $index Index.
[all …]
/plugin/asciidocjs/node_modules/core-js/modules/
D_array-reduce.js11 var index = isRight ? length - 1 : 0;
14 if (index in self) {
15 memo = self[index];
16 index += i;
19 index += i;
20 if (isRight ? index < 0 : length <= index) {
24 for (;isRight ? index >= 0 : length > index; index += i) if (index in self) {
25 memo = callbackfn(memo, self[index], index, O);
Des6.array.last-index-of.js16 var index = length - 1; variable
17 if (arguments.length > 1) index = Math.min(index, toInteger(arguments[1]));
18 if (index < 0) index = length + index;
19 for (;index >= 0; index--) if (index in O) if (O[index] === searchElement) return index || 0;
/plugin/asciidocjs/node_modules/core-js/library/modules/
D_array-reduce.js11 var index = isRight ? length - 1 : 0;
14 if (index in self) {
15 memo = self[index];
16 index += i;
19 index += i;
20 if (isRight ? index < 0 : length <= index) {
24 for (;isRight ? index >= 0 : length > index; index += i) if (index in self) {
25 memo = callbackfn(memo, self[index], index, O);
Des6.array.last-index-of.js16 var index = length - 1; variable
17 if (arguments.length > 1) index = Math.min(index, toInteger(arguments[1]));
18 if (index < 0) index = length + index;
19 for (;index >= 0; index--) if (index in O) if (O[index] === searchElement) return index || 0;
/plugin/jplayer/vendor/happyworm/jplayer/src/javascript/add-on/
Djplayer.playlist.js285 var index = $(this).parent().parent().index();
286 if(self.current !== index) {
287 self.play(index);
304 var index = $(this).parent().parent().index();
305 self.remove(index);
331 _highlight: function(index) { argument
332 if(this.playlist.length && index !== undefined) {
334 …$(this.cssSelector.playlist + " li:nth-child(" + (index + 1) + ")").addClass("jp-playlist-current"…
356 remove: function(index) { argument
359 if(index === undefined) {
[all …]
/plugin/jplayer/vendor/happyworm/jplayer/dist/add-on/
Djplayer.playlist.js285 var index = $(this).parent().parent().index();
286 if(self.current !== index) {
287 self.play(index);
304 var index = $(this).parent().parent().index();
305 self.remove(index);
331 _highlight: function(index) { argument
332 if(this.playlist.length && index !== undefined) {
334 …$(this.cssSelector.playlist + " li:nth-child(" + (index + 1) + ")").addClass("jp-playlist-current"…
356 remove: function(index) { argument
359 if(index === undefined) {
[all …]
/plugin/asciidocjs/node_modules/chalk/source/
Dutil.js4 let index = string.indexOf(substring);
5 if (index === -1) {
13 returnValue += string.substr(endIndex, index - endIndex) + substring + replacer;
14 endIndex = index + substringLength;
15 index = string.indexOf(substring, endIndex);
16 } while (index !== -1);
22 const stringEncaseCRLFWithFirstIndex = (string, prefix, postfix, index) => { argument
26 const gotCR = string[index - 1] === '\r';
27 …returnValue += string.substr(endIndex, (gotCR ? index - 1 : index) - endIndex) + prefix + (gotCR ?…
28 endIndex = index + 1;
[all …]
/plugin/qna/
Daction.php114 private function handlePluginQnaBlock($index, $data) { argument
118 $this->rewriter->insertBlockCall($index, 'close_block', 2);
121 $this->rewriter->insertBlockCall($index, 'open_block');
122 $this->rewriter->setQuestionLevel($index, $this->headerLevel + 1);
129 $this->rewriter->delete($index);
134 $this->rewriter->insertBlockCall($index, 'close_block');
143 $this->rewriter->delete($index);
148 $this->rewriter->insertBlockCall($index, 'close_block');
159 private function handlePluginQnaHeader($index) { argument
164 if (($index - $this->headerIndex) < 4) {
[all …]
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Crypt/RSA/Formats/Keys/
DRaw.php57 foreach (['e', 'exponent', 'publicexponent', 0, 'privateexponent', 'd'] as $index) {
58 if (isset($key[$index])) {
59 $components['publicExponent'] = $key[$index];
64 foreach (['n', 'modulo', 'modulus', 1] as $index) {
65 if (isset($key[$index])) {
66 $components['modulus'] = $key[$index];
82 foreach ($indices as $index) {
83 list($i0, $i1) = $index;
97 foreach ($indices as $index) {
98 list($i0, $i1) = $index;
[all …]
/plugin/codeblockedit/
H A Daction.php67 $index = $INPUT->int('codeblockindex');
68 if ($index < 0) {
72 $block = $this->getBlockInfo($ID, $index);
105 $index = $INPUT->int('codeblockindex');
106 if ($index < 0) {
111 $block = $this->getBlockInfo($ID, $index);
157 * @param int $index Block index (0-based)
160 protected function getBlockInfo($id, $index) argument
163 if ($this->cachedIndex === $index && $this->cachedBlock !== null) {
172 $this->cachedIndex = $index;
[all …]
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/src/Elasticsearch/Namespaces/
DIndicesNamespace.php47 $index = $this->extractArgument($params, 'index');
53 $endpoint->setIndex($index);
70 $index = $this->extractArgument($params, 'index');
76 $endpoint->setIndex($index);
99 $index = $this->extractArgument($params, 'index');
104 $endpoint->setIndex($index);
124 $index = $this->extractArgument($params, 'index');
131 $endpoint->setIndex($index);
154 $index = $this->extractArgument($params, 'index');
159 $endpoint->setIndex($index);
[all …]
/plugin/jplayer/vendor/james-heinrich/getid3/getid3/
Dmodule.audio.dts.php165 * @param int $index
169 public static function bitrateLookup($index) { argument
204 return (isset($lookup[$index]) ? $lookup[$index] : false);
208 * @param int $index
212 public static function sampleRateLookup($index) { argument
231 return (isset($lookup[$index]) ? $lookup[$index] : false);
235 * @param int $index
239 public static function bitPerSampleLookup($index) { argument
246 return (isset($lookup[$index]) ? $lookup[$index] : false);
250 * @param int $index
[all …]
/plugin/findologicxmlexport/vendor/phpspec/prophecy/src/Prophecy/Promise/
DReturnArgumentPromise.php28 private $index; variable in Prophecy\\Promise\\ReturnArgumentPromise
33 * @param int $index The zero-indexed number of the argument to return
37 public function __construct($index = 0) argument
39 if (!is_int($index) || $index < 0) {
42 $index
45 $this->index = $index;
59 return count($args) > $this->index ? $args[$this->index] : null;
/plugin/columns/
Drewriter.php37 $index = $this->getCorrectionIndex();
38 $corrections = count($index);
43 for ( ; $i < $index[$c]; $i++) {
83 protected $index; variable in instruction_rewriter_correction
88 public function __construct($index) { argument
89 $this->index = $index;
96 return $this->index;
105 public function __construct($index) { argument
106 parent::__construct($index);
124 public function __construct($index) { argument
[all …]
/plugin/odt/ODT/
Dstyleset.php195 for ($index = 0 ; $index < count($dest) ; $index++) {
196 if ($dest [$index]->isDefault() &&
197 $dest [$index]->getFamily() == $family) {
200 $dest [$index] = $new;
219 for ($index = 0 ; $index < count($dest) ; $index++) {
220 if ($dest [$index] == $dest_by_name [$name]) {
221 $dest [$index] = $new;
278 public function getStyleAtIndex($element, $index) { argument
281 return $this->styles [$index];
283 return $this->auto_styles [$index];
[all …]
/plugin/subjectindex/inc/
Dcommon.php115 $index = new SI_Index($fpaths, $fpids);
116 return $index;
148 private $index; variable in SI_Indexer
150 function __construct(SI_Index $index = null) { argument
151 if ($index === null) {
152 $this->index = SI_Utils::get_index();
154 $this->index = $index;
162 $this->_remove_invalid_entries($this->index, $all_pages);
179 $page_index = $this->index->filtered(null, null, $pid);
191 $this->index->add($matched_path, $pid);
[all …]
/plugin/asciidocjs/node_modules/asap/
Draw.js32 var index = 0; variable
45 while (index < queue.length) {
46 var currentIndex = index;
49 index = index + 1;
56 if (index > capacity) {
59 for (var scan = 0, newLength = queue.length - index; scan < newLength; scan++) {
60 queue[scan] = queue[scan + index];
62 queue.length -= index;
63 index = 0;
67 index = 0;
/plugin/html2pdf/html2pdf/html2ps/classes/org/active-link/xml/
DXML.php144 for($index = 0; $index < count($arrKeys); $index ++) {
145 …if(gettype($this->nodes[$arrKeys[$index]]) == "object" && strtolower(get_class($this->nodes[$arrKe…
146 if(($tagName == "" || $this->nodes[$arrKeys[$index]]->tag->getTagName() == $tagName) &&
147 ($attrName == "" || $this->nodes[$arrKeys[$index]]->tag->attributeExists($attrName)) &&
148 …($attrValue == "" || $this->nodes[$arrKeys[$index]]->tag->getTagAttribute($attrName) == $attrValue…
149 $branchArray[] = &$this->nodes[$arrKeys[$index]];
156 for($index = 0; $index < count($arrKeys); $index ++) {
157 …if(gettype($this->nodes[$arrKeys[$index]]) == "object" && strtolower(get_class($this->nodes[$arrKe…
158 if($this->nodes[$arrKeys[$index]]->tag->getTagName() == $tags[1]) {
160 …$newArray = $this->nodes[$arrKeys[$index]]->getBranches($newTagPath, $tagName, $attrName, $attrVal…
[all …]

12345678910>>...77