Home
last modified time | relevance | path

Searched refs:t (Results 426 – 450 of 2068) sorted by path

1...<<11121314151617181920>>...83

/plugin/combo/vendor/antlr/antlr4-php-runtime/src/Atn/
H A DATNDeserializer.php57 * Stick to serialized version for now, we don't need a UUID instance.
408 // edges for rule stop states can be derived, so they aren't serialized
410 foreach ($state->getTransitions() as $t) {
411 if (!$t instanceof RuleTransition) {
416 if ($atn->ruleToStartState[$t->target->ruleIndex]->isLeftRecursiveRule) {
417 if ($t->precedence === 0) {
418 $outermostPrecedenceReturn = $t->target->ruleIndex;
422 $trans = new EpsilonTransition($t->followState, $outermostPrecedenceReturn);
423 $atn->ruleToStopState[$t->target->ruleIndex]->addTransition($trans);
443 foreach ($state->getTransitions() as $t) {
[all...]
H A DLexerATNSimulator.php198 $t = $input->LA(1);
209 // be able to avoid doing a reach operation upon t. If s!=null,
210 // it means that semantic predicates didn't prevent us from
212 // the DFA state has an edge already for t. If so, we can just reuse
223 // print("Target for:" + str(s) + " and:" + str(t))
224 $target = $this->getExistingTargetState($s, $t);
227 $target = $this->computeTargetState($input, $s, $t);
238 if ($t !== Token::EOF) {
244 if ($t === Token::EOF) {
249 $t
268 getExistingTargetState(DFAState $s, int $t) global() argument
295 computeTargetState(CharStream $input, DFAState $s, int $t) global() argument
319 failOrAccept(SimState $prevAccept, CharStream $input, ATNConfigSet $reach, int $t) global() argument
362 getReachableConfigSet(CharStream $input, ATNConfigSet $closure, ATNConfigSet $reach, int $t) global() argument
439 getReachableTarget(Transition $trans, int $t) global() argument
561 getEpsilonTarget(CharStream $input, LexerATNConfig $config, Transition $t, ATNConfigSet $configs, bool $speculative, bool $treatEofAsEpsilon) global() argument
727 addDFAEdgeATNConfigSet(DFAState $from, int $t, ATNConfigSet $configs) global() argument
754 addDFAEdge(DFAState $from, int $t, DFAState $to) global() argument
856 getTokenName(int $t) global() argument
[all...]
H A DParserATNSimulator.php58 * don't know if it's an ambiguity or a weakness in the strong LL(*) parsing
66 * don't get a conflict, it implies that the decision is sensitive to the outer
72 * This is slow because we can't save the results and have to "interpret" the
78 * that saves a lot of time but doesn't work in presence of predicates. The set
139 * closure, the DFA state configuration sets would be different and we couldn't
183 * `s.edge[t]` get the same physical target {@see DFAState}, or `null`. Once
187 * `dfa.edges[t]` null, or `dfa.edges[t]` to be non-null. The
190 * simulation. It could also race trying to get `dfa.edges[t]`, but either
267 * Don't kee
625 getExistingTargetState(DFAState $previousD, int $t) global() argument
649 computeTargetState(DFA $dfa, DFAState $previousD, int $t) global() argument
890 computeReachSet(ATNConfigSet $closure, int $t, bool $fullCtx) global() argument
2000 getEpsilonTarget(ATNConfig $config, Transition $t, bool $collectPredicates, bool $inContext, bool $fullCtx, bool $treatEofAsEpsilon) global() argument
2056 actionTransition(ATNConfig $config, ActionTransition $t) global() argument
2184 ruleTransition(ATNConfig $config, RuleTransition $t) global() argument
2267 getTokenName(int $t) global() argument
2339 addDFAEdge(DFA $dfa, DFAState $from, int $t, DFAState $to) global() argument
[all...]
/plugin/combo/vendor/antlr/antlr4-php-runtime/src/
H A DBufferedTokenStream.php308 $t = $this->tokens[$i];
310 if ($t->getType() === Token::EOF) {
314 if ($types === null || $types->contains($t->getType())) {
315 $subset[] = $t;
427 $t = $this->tokens[$i];
430 if ($t->getChannel() !== Lexer::DEFAULT_TOKEN_CHANNEL) {
431 $hidden[] = $t;
433 } elseif ($t->getChannel() === $channel) {
434 $hidden[] = $t;
470 $t
[all...]
H A DCommonTokenStream.php123 foreach ($this->tokens as $t) {
124 if ($t->getChannel() === $this->channel) {
128 if ($t->getType() === Token::EOF) {
H A DLL1Analyzer.php246 /** @var Transition $t */
247 foreach ($s->getTransitions() as $t) {
248 if ($t instanceof RuleTransition) {
249 if ($calledRuleStack->contains($t->target->ruleIndex)) {
253 $newContext = SingletonPredictionContext::create($context, $t->followState->stateNumber);
256 $calledRuleStack->add($t->target->ruleIndex);
258 $t->target,
268 $calledRuleStack->remove($t->target->ruleIndex);
270 } elseif ($t instanceof AbstractPredicateTransition) {
273 $t
[all...]
H A DParser.php173 $t = $this->getCurrentToken();
175 if ($t !== null && $t->getType() === $ttype) {
184 $t = $this->errorHandler->recoverInline($this);
186 if ($this->buildParseTree && $t->getTokenIndex() === -1) {
189 $this->context()->addErrorNode($this->createErrorNode($this->context(), $t));
193 return $t;
217 $t = $this->token();
219 if ($t->getType() > 0) {
223 $t
552 createTerminalNode(ParserRuleContext $parent, Token $t) global() argument
562 createErrorNode(ParserRuleContext $parent, Token $t) global() argument
[all...]
H A DParserRuleContext.php43 * operation because we don't the need to track the details about
107 public function addTerminalNode(TerminalNode $t) : ParseTree argument
109 $t->setParent($this);
111 return $this->addChild($t);
129 * method and I don't want to break backward compatibility for this.
/plugin/combo/vendor/antlr/antlr4-php-runtime/src/Dfa/
H A DDFASerializer.php40 /** @var DFAState $t */
41 $t = $state->edges[$i];
43 if ($t !== null && $t->stateNumber !== 0x7FFFFFFF) {
48 $string .= \sprintf("-%s->%s\n", $label, $this->getStateString($t));
/plugin/combo/vendor/antlr/antlr4-php-runtime/src/Error/
H A DDefaultErrorStrategy.php140 // yet successfully, don't report any errors.
142 // don't report spurious errors
211 * token deletion, if possible. If it can't do that, it bails on the current
253 // If already recovering, don't try to sync
279 // It's possible the next token won't match; information tracked
308 // do nothing if we can't identify the exact kind of ATN state
415 $t = $recognizer->getCurrentToken();
416 $tokenName = $this->getTokenErrorDisplay($t);
425 $recognizer->notifyErrorListeners($msg, $t);
453 $t
727 getTokenErrorDisplay(Token $t) global() argument
[all...]
/plugin/combo/vendor/php-webdriver/webdriver/
H A DCHANGELOG.md59 - Don't escape slashes in CURL exception message to improve readability.
181 - Throw an exception when attempting to deselect options of non-multiselect (it already didn't have any effect, but was silently ignored).
H A DREADME.md25 If you don't already use Composer, you can download the `composer.phar` binary:
199 If you don't use IDE, you may use [API documentation of php-webdriver](https://php-webdriver.github.io/php-webdriver/latest/).
221 ? Something isn't working, and you want to **report a bug**? [Submit it here](https://github.com/php-webdriver/php-webdriver/issues/new) as a new issue.
/plugin/combo/vendor/salesforce/handlebars-php/
H A DREADME.md253 Handlebars HTML-escapes values returned by a {{expression}}. If you don't want Handlebars to escape a value, use the "triple-stash", {{{ }}}
600 Allow to define a block of content and use it later. It helps follow the DRY (Don't repeat yourself) principle.
/plugin/combo/vendor/salesforce/handlebars-php/src/Handlebars/
H A DTokenizer.php179 $t = [
189 $t[self::ARGS] = $args;
191 $this->tokens[] = $t;
192 unset($t);
/plugin/command/syntax/
H A Dblock.php50 // Because the lexer doesn't accept subpatterns, we'll match invalid
H A Dinline.php47 // Because the lexer doesn't accept subpatterns, we'll match invalid
/plugin/comment/
H A Dplugin.info.txt6 desc Add comments/notes to your wiki source that won't be shown on the page.
/plugin/commonmark/vendor/league/commonmark/
H A DCHANGELOG-0.x.md
H A DCHANGELOG.md87 - Changed `EmbedProcessor` to also remove `Embed` blocks that aren't direct children of the `Document`
475 - Blocks which can't contain inlines will no longer be asked to render inlines
560 - Alternative 1: Use `CommonMarkConverter` or `GithubFlavoredMarkdownConverter` if you don't need to customize the environment
H A DREADME.md77 See the [Extensions documentation](https://commonmark.thephpleague.com/customization/extensions/) for more details on how to include only certain GFM features if you don't want them all.
144 Major refactoring to core parsing logic should be avoided if possible so that we can easily follow updates made to [the reference implementation][commonmark.js]. That being said, we will absolutely consider changes which don't deviate too far from the reference spec or which are favored by other popular CommonMark implementations.
170 This code is partially based on the [CommonMark JS reference implementation][commonmark.js] which is written, maintained and copyrighted by [John MacFarlane]. This project simply wouldn't exist without his work.
/plugin/condition/
H A Dbase_tester.php.orig.php176 $t = time();
177 return ($t < $this->_bt_strtotime($b['value'], $t)); break;
180 $t = time();
181 return ($t > $this->_bt_strtotime($b['value'], $t)); break;
183 $t = time();
184 return ($t <= $this->_bt_strtotime($b['value'], $t)); break;
186 $t = time();
187 return ($t >= $this->_bt_strtotime($b['value'], $t)); break;
203 $t = time();
204 …ay('y' => date('Y', $t), 'm' => date('m', $t), 'd' => date('d', $t), 'h' => date('H', $t), 'i' => …
/plugin/conflictmerger/
H A Daction.php108 * case, as the contents weren't merged, the revision to check conflicts
/plugin/conflictmerger/lang/en/
H A Dconflict-solved.txt6 However, the changes made don't affect those made by you, so both versions
H A Dconflict-unsolved.txt6 The changes made conflict with those made by you, so both versions couldn't be
14 Note that if you edit your version but you don't fix the conflicts with the
/plugin/confmanager/
H A Djquery.form.js489 if(t) {
773 var t = $el.closest('[type=submit]');
774 if (t.length === 0) {
777 target = t[0];
981 if (successful && (!n || el.disabled || t == 'reset' || t == 'button' ||
982 (t == 'checkbox' || t == 'radio') && !el.checked ||
983 (t == 'submit' || t == 'image') && el.form && el.form.clk != el ||
994 var one = (t == 'select-one');
1038 else if (t == 'checkbox' || t == 'radio') {
1090 var t = this.type;
[all …]

1...<<11121314151617181920>>...83