Searched refs:predicates (Results 1 – 8 of 8) sorted by relevance
| /template/strap/vendor/antlr/antlr4-php-runtime/src/Dfa/ |
| H A D | DFAState.php | 94 public $predicates; variable in Antlr\\Antlr4\\Runtime\\Dfa\\DFAState 136 if ($this->predicates !== null) { 137 $s .= \sprintf('[%s]', \implode(', ', $this->predicates));
|
| H A D | DFASerializer.php | 75 if ($state->predicates !== null) { 76 return $baseStateStr . '=>[' . \implode(', ', $state->predicates) . ']';
|
| /template/strap/vendor/antlr/antlr4-php-runtime/src/Atn/SemanticContexts/ |
| H A D | AndOperator.php | 147 private static function minPredicate(array $predicates) : object argument 149 $iterator = new \ArrayIterator($predicates);
|
| /template/strap/vendor/antlr/antlr4-php-runtime/src/Atn/ |
| H A D | ATNConfigSet.php | 240 $predicates = []; 243 $predicates[] = $config->semanticContext; 247 return $predicates;
|
| H A D | ParserATNSimulator.php | 525 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 D | PageSql.interp | 156 predicates
|
| H A D | PageSqlParser.php | 861 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 D | PageSql.g4 | 224 predicates: WHERE (predicate|predicateGroup) ((AND|OR) (predicate|predicateGroup))*; 247 predicates?
|