Home
last modified time | relevance | path

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

/template/strap/vendor/antlr/antlr4-php-runtime/src/Dfa/
H A DDFAState.php94 public $predicates; variable in Antlr\\Antlr4\\Runtime\\Dfa\\DFAState
136 if ($this->predicates !== null) {
137 $s .= \sprintf('[%s]', \implode(', ', $this->predicates));
H A DDFASerializer.php75 if ($state->predicates !== null) {
76 return $baseStateStr . '=>[' . \implode(', ', $state->predicates) . ']';
/template/strap/vendor/antlr/antlr4-php-runtime/src/Atn/SemanticContexts/
H A DAndOperator.php147 private static function minPredicate(array $predicates) : object argument
149 $iterator = new \ArrayIterator($predicates);
/template/strap/vendor/antlr/antlr4-php-runtime/src/Atn/
H A DATNConfigSet.php240 $predicates = [];
243 $predicates[] = $config->semanticContext;
247 return $predicates;
H A DParserATNSimulator.php525 if ($D->predicates !== null) {
536 … $conflictingAlts = $this->evalSemanticContextMany($D->predicates, $outerContext, true);
580 if ($D->predicates === null) {
586 $alts = $this->evalSemanticContextMany($D->predicates, $outerContext, true);
709 if ($D->predicates !== null) {
734 … $dfaState->predicates = $this->getPredicatePredictions($altsToCollectPredsFrom, $altToPred);
/template/strap/ComboStrap/PageSqlParser/
H A DPageSql.interp156 predicates
H A DPageSqlParser.php861 public function predicates() : Context\PredicatesContext function in ComboStrap\\PageSqlParser\\PageSqlParser
1153 $this->predicates();
2087 public function predicates() : ?PredicatesContext function in ComboStrap\\PageSqlParser\\Context\\PageSqlContext
/template/strap/grammar/
H A DPageSql.g4224 predicates: WHERE (predicate|predicateGroup) ((AND|OR) (predicate|predicateGroup))*;
247 predicates?