Home
last modified time | relevance | path

Searched refs:index (Results 51 – 75 of 1678) sorted by relevance

12345678910>>...68

/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/src/Elasticsearch/Endpoints/
H A DMTermVectors.php33 $index = $this->index ?? null;
39 if (isset($index) && isset($type)) {
40 return "/$index/$type/_mtermvectors";
42 if (isset($index)) {
43 return "/$index/_mtermvectors";
/plugin/imapmarkers/
H A Dscript.js161 _g.a_imap_div.forEach((object, index) => {
162 if (_g.a_last_clicked_id[index] != undefined) {
164 let id = _g.a_last_clicked_id[index]['id'];
237 _g.a_imap_div.forEach((object, index) => {
238 let imap_div_index = index;
243 if (_g.a_maps[index] !== undefined) {
245 if (_g.a_areas[index] === undefined) {
246 _g.a_areas[index] = [];
296 _g.a_imap_div.forEach((object, index) => {
297 let imap_div_index = index;
[all …]
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/src/Elasticsearch/Endpoints/Indices/
H A DStats.php35 $index = $this->index ?? null;
37 if (isset($index) && isset($metric)) {
38 return "/$index/_stats/$metric";
43 if (isset($index)) {
44 return "/$index/_stats";
H A DGetAlias.php35 $index = $this->index ?? null;
37 if (isset($index) && isset($name)) {
38 return "/$index/_alias/$name";
40 if (isset($index)) {
41 return "/$index/_alias";
H A DGetSettings.php34 $index = $this->index ?? null;
37 if (isset($index) && isset($name)) {
38 return "/$index/_settings/$name";
40 if (isset($index)) {
41 return "/$index/_settings";
H A DPutMapping.php34 $index = $this->index ?? null;
40 if (isset($index) && isset($type)) {
41 return "/$index/$type/_mapping";
43 if (isset($index)) {
44 return "/$index/_mapping";
H A DGetFieldMapping.php41 $index = $this->index ?? null;
47 if (isset($index) && isset($type)) {
48 return "/$index/_mapping/$type/field/$fields";
50 if (isset($index)) {
51 return "/$index/_mapping/field/$fields";
/plugin/fckg/fckeditor/editor/dialog/fck_spellerpages/spellerpages/server-scripts/
H A Dspellchecker.php42 function print_words_elem( $word, $index, $text_input_idx ) { argument
43 echo "words[$text_input_idx][$index] = '" . escape_quote( $word ) . "';\n";
48 function print_suggs_elem( $suggs, $index, $text_input_idx ) { argument
49 echo "suggs[$text_input_idx][$index] = [";
108 $index = 0;
119 print_words_elem( $line[1], $index, $text_input_index );
125 print_suggs_elem( $suggs, $index, $text_input_index );
126 $index++;
130 $index = 0;
/plugin/wysiwyg/fckeditor/editor/dialog/fck_spellerpages/spellerpages/server-scripts/
H A Dspellchecker.php38 function print_words_elem( $word, $index, $text_input_idx ) { argument
39 echo "words[$text_input_idx][$index] = '" . escape_quote( $word ) . "';\n";
44 function print_suggs_elem( $suggs, $index, $text_input_idx ) { argument
45 echo "suggs[$text_input_idx][$index] = [";
100 $index = 0;
111 print_words_elem( $line[1], $index, $text_input_index );
117 print_suggs_elem( $suggs, $index, $text_input_index );
118 $index++;
122 $index = 0;
/plugin/combo/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);
/plugin/sequencediagram/bower_components/lodash/vendor/underscore/
H A Dunderscore.js114 for (var index = 0; index < length; index++) {
123 for (index = 0; index < startIndex; index++) {
186 for (var index = 0; index < length; index++) {
205 for (; index >= 0 && index < length; index += dir) {
254 for (var index = 0; index < length; index++) {
267 for (var index = 0; index < length; index++) {
376 for (var index = 0; index < n; index++) {
392 index: index++,
602 for (var index = 0; index < length; index++) {
1003 for (var index = 0; index < length; index++) {
[all …]
/plugin/findologicxmlexport/vendor/twig/twig/test/Twig/Tests/Fixtures/autoescape/
H A Dname.test5 {{ include('index.js.twig') -}}
6 {{ include('index.html.twig') -}}
7 {{ include('index.txt.twig') -}}
8 --TEMPLATE(index.js.twig)--
10 --TEMPLATE(index.html.twig)--
12 --TEMPLATE(index.txt.twig)--
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Forms/
H A DLocation.php25 public $index; variable in Google\\Service\\Forms\\Location
30 public function setIndex($index) argument
32 $this->index = $index;
39 return $this->index;
/plugin/odt/ODT/css/
H A Dcssborder.php67 $index = 0;
71 while ( $index < 3 ) {
73 switch ($values [$index]) {
77 $width = $values [$index];
78 $index++;
87 $index++;
97 switch ($values [$index]) {
110 $style = $values [$index];
111 $index++;
118 if (!empty($values [$index])) {
[all …]
/plugin/combo/db/combo/
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);
/plugin/sequencediagram/bower_components/underscore/
H A Dunderscore.js102 for (var index = 1; index < length; index++) {
170 for (var index = 0; index < length; index++) {
182 for (; index >= 0 && index < length; index += dir) {
243 for (var index = 0; index < length; index++) {
256 for (var index = 0; index < length; index++) {
354 for (var index = 0, rand; index < length; index++) {
379 index: index,
592 for (var index = 0; index < length; index++) {
619 for (; index >= 0 && index < length; index += dir) {
620 if (predicate(array[index], index, array)) return index;
[all …]
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/src/Elasticsearch/
H A DClient.php315 * Allows to perform multiple index/update/delete operations in a single request.
317 * $params['index'] = (string) Default index for items which don't provide one
336 $index = $this->extractArgument($params, 'index');
343 $endpoint->setIndex($index);
395 * $params['index'] = (list) A comma-separated list of indices to restrict the results
419 $index = $this->extractArgument($params, 'index');
426 $endpoint->setIndex($index);
905 public function index(array $params = []) global() function in Elasticsearch\\Client
[all...]
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Sheets/
H A DDeleteConditionalFormatRuleRequest.php25 public $index; variable in Google\\Service\\Sheets\\DeleteConditionalFormatRuleRequest
34 public function setIndex($index) argument
36 $this->index = $index;
43 return $this->index;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/AnalyticsReporting/
H A DCustomDimension.php25 public $index; variable in Google\\Service\\AnalyticsReporting\\CustomDimension
34 public function setIndex($index) argument
36 $this->index = $index;
43 return $this->index;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Docs/
H A DLocation.php25 public $index; variable in Google\\Service\\Docs\\Location
34 public function setIndex($index) argument
36 $this->index = $index;
43 return $this->index;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/IdentityToolkit/
H A DUploadAccountResponseError.php25 public $index; variable in Google\\Service\\IdentityToolkit\\UploadAccountResponseError
34 public function setIndex($index) argument
36 $this->index = $index;
43 return $this->index;
/plugin/combo/vendor/antlr/antlr4-php-runtime/src/Atn/
H A DSimState.php13 * includes the current index into the input, the current line,
28 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;
/plugin/photogallery/lightGallery/js/
H A Dlg-share.js69 _this.core.$el.on('onAfterSlide.lg.tm', function(event, prevIndex, index) { argument
72 …book.com/sharer/sharer.php?u=' + (encodeURIComponent(_this.core.$items.eq(index).attr('data-facebo…
74 …t?text=' + _this.core.$items.eq(index).attr('data-tweet-text') + '&url=' + (encodeURIComponent(_th…
76 …://plus.google.com/share?url=' + (encodeURIComponent(_this.core.$items.eq(index).attr('data-google…
78index).attr('data-pinterest-share-url') || window.location.href)) + '&media=' + encodeURIComponent…
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Bigquery/
H A DTableDataInsertAllResponseInsertErrors.php28 public $index; variable in Google\\Service\\Bigquery\\TableDataInsertAllResponseInsertErrors
47 public function setIndex($index) argument
49 $this->index = $index;
56 return $this->index;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Dataflow/
H A DConcatPosition.php25 public $index; variable in Google\\Service\\Dataflow\\ConcatPosition
32 public function setIndex($index) argument
34 $this->index = $index;
41 return $this->index;

12345678910>>...68