Home
last modified time | relevance | path

Searched refs:vocabulary (Results 1 – 7 of 7) sorted by relevance

/template/strap/vendor/antlr/antlr4-php-runtime/src/Dfa/
DDFASerializer.php19 private $vocabulary; variable in Antlr\\Antlr4\\Runtime\\Dfa\\DFASerializer
21 public function __construct(DFA $dfa, Vocabulary $vocabulary) argument
24 $this->vocabulary = $vocabulary;
58 return $this->vocabulary->getDisplayName($i - 1);
DDFA.php161 public function toString(Vocabulary $vocabulary) : string argument
167 $serializer = new DFASerializer($this, $vocabulary);
/template/strap/ComboStrap/PageSqlParser/
DPageSqlLexer.php629 public static function vocabulary() : Vocabulary function in ComboStrap\\PageSqlParser\\PageSqlLexer
631 static $vocabulary;
633 … return $vocabulary = $vocabulary ?? new VocabularyImpl(self::LITERAL_NAMES, self::SYMBOLIC_NAMES);
674 return self::vocabulary();
DPageSqlParser.php287 static $vocabulary;
289 … return $vocabulary = $vocabulary ?? new VocabularyImpl(self::LITERAL_NAMES, self::SYMBOLIC_NAMES);
/template/strap/vendor/antlr/antlr4-php-runtime/src/
DRecognizer.php57 $vocabulary = $this->getVocabulary();
59 $key = \spl_object_hash($vocabulary);
66 $literalName = $vocabulary->getLiteralName($i);
72 $symbolicName = $vocabulary->getSymbolicName($i);
DIntervalSet.php436 public function toStringVocabulary(Vocabulary $vocabulary) : string argument
456 $buf .= $this->elementName($vocabulary, $start);
463 $buf .= $this->elementName($vocabulary, $i);
479 protected function elementName(Vocabulary $vocabulary, int $a) : string argument
489 return $vocabulary->getDisplayName($a);
/template/strap/vendor/antlr/antlr4-php-runtime/src/Atn/
DParserATNSimulator.php2273 …$vocabulary = $this->parser !== null ? $this->parser->getVocabulary() : VocabularyImpl::emptyVocab…
2274 $displayName = $vocabulary->getDisplayName($t);