Home
last modified time | relevance | path

Searched refs:index (Results 401 – 425 of 1806) sorted by path

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

/plugin/combo/resources/theme/default/pages/templates/
H A Dapp-edit.css111 z-index: 20;
H A Dholy-medium.css30 z-index: 2;
H A Dholy.css52 z-index: 2;
H A Dindex.hbs16 {{!--No main-header as the index generally contains a cover image
/plugin/combo/vendor/antlr/antlr4-php-runtime/
H A DREADME.md119 * [Documentation](https://github.com/tunnelvisionlabs/antlr4/blob/master/doc/index.md)
122 * [FAQ](https://github.com/tunnelvisionlabs/antlr4/blob/master/doc/faq/index.md)
/plugin/combo/vendor/antlr/antlr4-php-runtime/src/Atn/
H A DATNConfigSet.php250 public function get(int $index) : ATNConfig argument
252 return $this->configs[$index];
H A DLexerATNSimulator.php41 * The current token's starting index into the character stream.
58 * The index of the character relative to the beginning of the line 0..n-1.
235 // capturing the accept state so the input index, line, and char
421 int $index, argument
430 $input->seek($index);
686 * @param int $predIndex The index of the predicate within the rule.
687 * @param bool $speculative `true` if the current index in `input` is
704 $index = $input->getIndex();
714 $input->seek($index);
767 // make room for tokens 1..n and -1 masquerading as index
[all...]
H A DParserATNSimulator.php346 $index = $this->startIndex;
408 $alt = $this->execATN($dfa, $s0, $input, $index, $outerContext);
418 $input->seek($index);
547 // Restore the index so reporting the fallback to full
548 // context occurs with the index at the correct spot
1313 * altToPred starts as an array of all null contexts. The entry at index i
1989 public function getRuleName(int $index) : string argument
1991 if ($this->parser !== null && $index >= 0) {
1992 return $this->parser->getRuleNames()[$index];
1995 return '<rule $index>';
[all...]
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/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/combo/vendor/antlr/antlr4-php-runtime/src/
H A DBufferedTokenStream.php12 * access to any previous token by index.
39 * The index into {@see BufferedTokenStream::tokens()} of the current token
52 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 < \coun
179 get(int $index) global() 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;
H A DCommonTokenStream.php12 * This token stream provides access to all tokens by index or when calling
67 if ($k === 0 || $this->index - $k < 0) {
72 $i = $this->index;
100 $i = $this->index;
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;
116 * {@see self::consume()} ahead until `$p === $this->index`; Can't just set
117 * `$p = $this->index` as we must update line and column. If we seek
120 public function seek(int $index) : void argument
122 if ($index <= $this->index) {
[all...]
H A DIntStream.php45 * - Forward movement: The value of {@see IntStream::index()} before calling
46 * this method is less than the value of `index` after calling this method.
50 * Note that calling this method does not guarantee that `index()` is
69 * - `i === -1` and {@see IntStream::index index()} returns a value greater
70 * than the value of `index` after the stream was constructed and `LA(1)
71 * was called in that order. Specifying the current `index` relative
72 * to the index after the stream was created allows for filtering
90 * will be valid over a "marked range" extending from the index where `mark`
91 * was called to the current {@see IntStream::index inde
182 seek(int $index) global() argument
[all...]
H A DParser.php156 * {@see Parser::getBuildParseTree()} is `true` and the token index
203 * If {@see Parser::getBuildParseTree()} is `true` and the token index
319 $index = \array_search($listener, $this->parseListeners, true);
321 if ($index !== false) {
322 unset($this->parseListeners[$index]);
838 /** Get a rule's index (i.e., `RULE_ruleName` field) or -1 if not found. */
H A DTokenStream.php24 * Gets the {@see Token} at the specified `index` in the stream.
29 * is unspecified for the current state and given `index`, then the behavior
32 * The symbol referred to by `index` differs from {@see TokenStream::seek()} only
33 * in the case of filtering streams where `index` lies before the end
35 * `index` to point to a non-ignored symbol.
37 public function get(int $index) : Token; argument
H A DWritableToken.php19 public function setTokenIndex(int $index) : void; argument
/plugin/combo/vendor/antlr/antlr4-php-runtime/src/PredictionContexts/
H A DArrayPredictionContext.php69 public function getParent(int $index) : ?PredictionContext argument
71 return $this->parents[$index];
74 public function getReturnState(int $index) : int argument
76 return $this->returnStates[$index];
H A DEmptyPredictionContext.php24 public function getParent(int $index) : ?PredictionContext argument
H A DPredictionContext.php124 abstract public function getParent(int $index) : ?self; argument
125 abstract public function getReturnState(int $index) : int; argument
494 // write index < last position; trim
H A DSingletonPredictionContext.php46 public function getParent(int $index) : ?PredictionContext argument
48 if ($index !== 0) {
55 public function getReturnState(int $index) : int argument
57 if ($index !== 0) {
/plugin/combo/vendor/antlr/antlr4-php-runtime/src/Tree/
H A DTrees.php140 public static function findAllNodes(ParseTree $tree, int $index, bool $findTokens) : array argument
142 return self::findNodesInTree($tree, $index, $findTokens, []);
150 private static function findNodesInTree(ParseTree $tree, int $index, bool $findTokens, array $nodes) : array argument
153 if ($findTokens && $tree instanceof TerminalNode && $tree->getSymbol()->getType() === $index) {
155 } elseif (!$findTokens && $tree instanceof ParserRuleContext && $tree->getRuleIndex() === $index) {
164 $nodes = self::findNodesInTree($child, $index, $findTokens, $nodes);
/plugin/combo/vendor/antlr/antlr4-php-runtime/src/Utils/
H A DMap.php81 foreach ($this->table[$hash] as $index => [$entryKey]) {
83 $this->table[$hash][$index] = [$key, $value];
102 foreach ($this->table[$hash] as $index => [$entryKey]) {
107 unset($this->table[$hash][$index]);
138 foreach ($bucket as $index => [$key, $value]) {
139 [$otherKey, $otherValue] = $otherBucket[$index];
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])) {

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