Searched refs:vocabulary (Results 1 – 7 of 7) sorted by relevance
19 private $vocabulary; variable in Antlr\\Antlr4\\Runtime\\Dfa\\DFASerializer21 public function __construct(DFA $dfa, Vocabulary $vocabulary) argument24 $this->vocabulary = $vocabulary;58 return $this->vocabulary->getDisplayName($i - 1);
161 public function toString(Vocabulary $vocabulary) : string argument167 $serializer = new DFASerializer($this, $vocabulary);
629 public static function vocabulary() : Vocabulary function in ComboStrap\\PageSqlParser\\PageSqlLexer631 static $vocabulary;633 … return $vocabulary = $vocabulary ?? new VocabularyImpl(self::LITERAL_NAMES, self::SYMBOLIC_NAMES);674 return self::vocabulary();
287 static $vocabulary;289 … return $vocabulary = $vocabulary ?? new VocabularyImpl(self::LITERAL_NAMES, self::SYMBOLIC_NAMES);
57 $vocabulary = $this->getVocabulary();59 $key = \spl_object_hash($vocabulary);66 $literalName = $vocabulary->getLiteralName($i);72 $symbolicName = $vocabulary->getSymbolicName($i);
436 public function toStringVocabulary(Vocabulary $vocabulary) : string argument456 $buf .= $this->elementName($vocabulary, $start);463 $buf .= $this->elementName($vocabulary, $i);479 protected function elementName(Vocabulary $vocabulary, int $a) : string argument489 return $vocabulary->getDisplayName($a);
2273 …$vocabulary = $this->parser !== null ? $this->parser->getVocabulary() : VocabularyImpl::emptyVocab…2274 $displayName = $vocabulary->getDisplayName($t);