Home
last modified time | relevance | path

Searched refs:s0 (Results 1 – 8 of 8) sorted by relevance

/template/strap/vendor/antlr/antlr4-php-runtime/src/Dfa/
DDFA.php24 public $s0; variable in Antlr\\Antlr4\\Runtime\\Dfa\\DFA
58 $this->s0 = $precedenceState;
92 if (!$this->precedenceDfa || $this->s0 === null) {
96 if ($this->s0->edges === null) {
100 if ($precedence < 0 || $precedence >= \count($this->s0->edges)) {
104 return $this->s0->edges[$precedence] ?? null;
118 if (!$this->precedenceDfa || $this->s0 === null) {
126 if ($this->s0->edges === null) {
130 if ($precedence >= $this->s0->edges->count()) {
131 $this->s0->edges->setSize($precedence + 1);
[all …]
DDFASerializer.php29 if ($this->dfa->s0 === null) {
/template/strap/resources/brand/whatsapp/
Dsolid-circle.svg2s0.5 1.5 0.6 1.7 0.1 0.2 0 0.3-0.1 0.2-0.2 0.3l-0.3 0.3c-0.1 0.1-0.2 0.2-0.1 0.4 0.2 0.2 0.6 0.9 1…
/template/kiwiki/images/
Dtheme_mode.svg8 …c0.4,0.4,1,0.4,1.4,0s0.4-1,0-1.4L7.2,5.8c-0.4-0.4-1-0.4-1.4,0C5.4,6.2,5.4,6.8,5.8,7.2z M8.4,23.6c0…
12 …c-0.6,0.1-1.3,0.2-2,0.2c-1,0-2-0.1-3.1-0.4c-4-1.1-7.1-4.6-7.8-8.7c-0.1-0.7-0.1-1.3-0.1-1.9s0-1.3,0…
13 …3,3L18.3,3c-1.2,0-2.4,0.2-3.6,0.5C9.8,4.8,6.2,8.8,5.4,13.7c-0.1,0.8-0.2,1.5-0.2,2.3s0.1,1.5,0.2,2.2
Dpreferences.svg3 …c0-0.6-0.4-1-1-1H4.3c-0.5,0-1,0.4-1,1s0.5,1,1,1H14.7z M21.4,8.5c0-1.3-1-2.3-2.3-2.3s-2.3,1-2.3,2.3…
6 …3,14.5,16z M27.7,24.5c0.5,0,1-0.4,1-1c0-0.6-0.4-1-1-1h-1.6c-0.6,0-1,0.4-1,1s0.4,1,1,1H27.7z M17.6,…
Duser_icon.svg3 …c0.4-0.4,1-0.3,1.4,0.1s0.3,1-0.1,1.4c-2.4,2.2-3.8,5.5-4,9C6.3,26.1,9,27,16,27c6.9,0,9.7-0.8,10.5-1…
/template/strap/vendor/antlr/antlr4-php-runtime/src/Atn/
DParserATNSimulator.php354 $s0 = $dfa->getPrecedenceStartState($this->parser->getPrecedence());
357 $s0 = $dfa->s0;
360 if ($s0 === null) {
391 if ($dfa->s0 === null) {
395 …$dfa->s0->configs = $s0_closure; // not used for prediction but useful to know start configs anyway
399 $s0 = $this->addDFAState($dfa, new DFAState($s0_closure));
401 $dfa->setPrecedenceStartState($this->parser->getPrecedence(), $s0);
403 $s0 = $this->addDFAState($dfa, new DFAState($s0_closure));
404 $dfa->s0 = $s0;
408 $alt = $this->execATN($dfa, $s0, $input, $index, $outerContext);
[all …]
DLexerATNSimulator.php140 if ($dfa->s0 === null) {
143 return $this->execATN($input, $dfa->s0);
175 $this->decisionToDFA[$this->mode]->s0 = $next;