Home
last modified time | relevance | path

Searched refs:index (Results 426 – 450 of 1806) sorted by path

1...<<11121314151617181920>>...73

/plugin/combo/vendor/php-webdriver/webdriver/lib/
H A DAbstractWebDriverCheckboxOrRadio.php73 public function selectByIndex($index) argument
75 $this->byIndex($index);
120 * Selects or deselects a checkbox or a radio button by its 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]);
[all...]
H A DWebDriverCheckboxes.php34 public function deselectByIndex($index) argument
36 $this->byIndex($index, false);
H A DWebDriverRadios.php33 public function deselectByIndex($index) argument
H A DWebDriverSelect.php69 public function selectByIndex($index) argument
72 if ($option->getAttribute('index') === (string) $index) {
79 throw new NoSuchElementException(sprintf('Cannot locate option with index: %d', $index));
170 public function deselectByIndex($index) argument
177 if ($option->getAttribute('index') === (string) $index) {
H A DWebDriverSelectInterface.php37 * Select the option at the given index.
39 * @param int $index The index of the option. (0-based)
43 public function selectByIndex($index); argument
89 * Deselect the option at the given index.
91 * @param int $index The index of the option. (0-based)
94 public function deselectByIndex($index); argument
/plugin/combo/vendor/salesforce/handlebars-php/
H A DREADME.md82 Now the we've created our template file, in a php file (index.php) we'll create the data to passed to the model. The model is a key/value array.
86 **/index.php**
400 When looping through items in each, you can optionally reference the current loop index via {{@index}}
404 {{@index}}: {{this}}
735 {{#each objects}}{{@first}}, {{@last}}, {{@index}}, {{@unknown}}{{/each}}
742 $object->{'@index'} = 'carrot';
/plugin/combo/vendor/salesforce/handlebars-php/src/Handlebars/
H A DContext.php26 const DATA_INDEX = 'index';
36 * @var array index stack for sections
38 protected $index = []; variable in Handlebars\\Context
93 * Push an Index onto the index stack
95 * @param integer $index Index of the current section item.
99 public function pushIndex($index) argument
101 array_push($this->index, $index);
140 * Pop the last index from the stack.
142 * @return int Last index
[all...]
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 DTokenizer.php68 const INDEX = 'index';
318 * @param int $index Current tokenizer index
320 * @return int New index value
322 protected function changeDelimiters($text, $index) argument
324 $startIndex = strpos($text, '=', $index) + 1;
326 $closeIndex = strpos($text, $close, $index);
343 * @param int $index Current tokenizer index
348 protected function tagChange($tag, $text, $index, argument
[all...]
/plugin/combo/vendor/symfony/polyfill-php80/
H A DPhpToken.php90 foreach ($tokens as $index => $token) {
97 $tokens[$index] = new static($id, $text, $line, $position);
/plugin/combo/vendor/symfony/process/
H A DREADME.md21 * [Contributing](https://symfony.com/doc/current/contributing/index.html)
/plugin/combo/vendor/symfony/yaml/
H A DREADME.md10 * [Contributing](https://symfony.com/doc/current/contributing/index.html)
/plugin/commonmark/vendor/league/commonmark/src/Block/Element/
H A DIndentedCode.php
/plugin/commonmark/vendor/league/commonmark/src/
H A DCursor.php
/plugin/commonmark/vendor/league/commonmark/src/Delimiter/
H A DDelimiter.php51 private ?int $index = null;
53 public function __construct(string $char, int $numDelims, AbstractStringContainer $node, bool $canOpen, bool $canClose, ?int $index = null)
62 $this->index = $index;
92 return $this->index;
49 private $index; global() variable in League\\CommonMark\\Delimiter\\Delimiter
59 __construct(string $char, int $numDelims, AbstractStringContainer $node, bool $canOpen, bool $canClose, int $index = null) global() argument
/plugin/confmanager/
H A Djquery.form.js989 var index = el.selectedIndex;
990 if (index < 0) {
995 var max = (one ? index+1 : ops.length);
996 for(var i=(one ? index : 0); i < max; i++) {
H A Dstyle.css118 z-index: 1000;
172 z-index: 999;
/plugin/const/
H A Dclass.evalmath.php271 $index = 0;
291 $op = substr( $expression, $index, 1 );
299 ++$index;
310 --$index;
320 ++$index;
371 ++$index;
393 ++$index;
398 ++$index;
421 $index += strlen( $value );
448 ++$index;
[all …]
/plugin/cookielaw/
H A Dstyle.css7 z-index: 1000;
/plugin/copycode/
H A Dstyle.css14 z-index: 9999999;
/plugin/crypto/
H A Dstyle.css14 z-index: 100;
/plugin/cssmenu/
H A Dstyle.css47 z-index: 500;
/plugin/csstimeline/
H A Dstyle.css29 z-index: 5;
101 z-index: 10;
198 z-index: 15;
214 z-index: 10;
236 z-index: 14;
256 z-index: 15;
265 z-index: 15;
/plugin/data-au/helper/
H A Daliastextbox.php132 * @param int $index index number of field in form
136 public function handle_post($value, &$fields, $index, $formid) { argument
141 return parent::handle_post($value, $fields, $index, $formid);
/plugin/data-au/syntax/
H A Dentry.php409 foreach($cells as $index => $cell) {
410 $renderer->form->addElement("<td class=\"{$columns[$index]}\">");

1...<<11121314151617181920>>...73