| /template/strap/vendor/antlr/antlr4-php-runtime/src/Atn/ |
| H A D | ATNConfig.php | 133 public function equals(object $other) : bool function in Antlr\\Antlr4\\Runtime\\Atn\\ATNConfig 142 && $this->semanticContext->equals($other->semanticContext) 143 && Equality::equals($this->state, $other->state) 144 && Equality::equals($this->context, $other->context); 169 if ($this->semanticContext->equals(SemanticContext::none())) { 189 … $this->semanticContext !== null && $this->semanticContext->equals(SemanticContext::none()) ?
|
| H A D | ATNConfigSet.php | 110 && $left->semanticContext->equals($right->semanticContext) 111 && Equality::equals($left->state, $right->state); 119 public function equals(object $other) : bool function in Antlr\\Antlr4\\Runtime\\Atn\\ATNConfigSet::__construct::AnonymousClassc522385e0100 160 if ($existing->equals($config)) { 282 public function equals(object $other) : bool function in Antlr\\Antlr4\\Runtime\\Atn\\ATNConfigSet 296 && Equality::equals($this->configs, $other->configs) 297 && Equality::equals($this->conflictingAlts, $other->conflictingAlts);
|
| H A D | LexerATNConfig.php | 58 public function equals(object $other) : bool function in Antlr\\Antlr4\\Runtime\\Atn\\LexerATNConfig 68 if (!parent::equals($other)) { 76 return Equality::equals($this->lexerActionExecutor, $other->lexerActionExecutor);
|
| H A D | LexerActionExecutor.php | 199 public function equals(object $other) : bool function in Antlr\\Antlr4\\Runtime\\Atn\\LexerActionExecutor 207 && Equality::equals($this->lexerActions, $other->lexerActions);
|
| /template/strap/vendor/antlr/antlr4-php-runtime/src/Comparison/ |
| H A D | Equality.php | 17 public static function equals($left, $right) : bool function in Antlr\\Antlr4\\Runtime\\Comparison\\Equality 20 return $left->equals($right); 49 if (!self::equals($value, $right[$key])) {
|
| H A D | DefaultEquivalence.php | 11 return $left->equals($right); 19 public function equals(object $other) : bool function in Antlr\\Antlr4\\Runtime\\Comparison\\DefaultEquivalence
|
| H A D | Equatable.php | 9 public function equals(object $other) : bool; function
|
| /template/strap/vendor/antlr/antlr4-php-runtime/src/Utils/ |
| H A D | Pair.php | 25 public function equals(object $other) : bool function in Antlr\\Antlr4\\Runtime\\Utils\\Pair 32 && Equality::equals($this->a, $other->a) 33 && Equality::equals($this->b, $other->b);
|
| H A D | Set.php | 153 public function equals(object $other) : bool function in Antlr\\Antlr4\\Runtime\\Utils\\Set 161 || !$this->equivalence->equals($other)) { 173 if (!$value->equals($otherBucket[$index])) {
|
| H A D | Map.php | 119 public function equals(object $other) : bool function in Antlr\\Antlr4\\Runtime\\Utils\\Map 127 || !$this->equivalence->equals($other->equivalence)) { 193 return $left->equals($right);
|
| /template/strap/vendor/antlr/antlr4-php-runtime/src/Atn/Transitions/ |
| H A D | SetTransition.php | 46 public function equals(object $other) : bool function in Antlr\\Antlr4\\Runtime\\Atn\\Transitions\\SetTransition 53 && $this->set->equals($other->set) 54 && $this->target->equals($other->target);
|
| H A D | WildcardTransition.php | 19 public function equals(object $other) : bool function in Antlr\\Antlr4\\Runtime\\Atn\\Transitions\\WildcardTransition 26 && $this->target->equals($other->target);
|
| H A D | NotSetTransition.php | 20 public function equals(object $other) : bool function in Antlr\\Antlr4\\Runtime\\Atn\\Transitions\\NotSetTransition 27 && $this->target->equals($other->target);
|
| H A D | EpsilonTransition.php | 52 public function equals(object $other) : bool function in Antlr\\Antlr4\\Runtime\\Atn\\Transitions\\EpsilonTransition 60 && $this->target->equals($other->target);
|
| H A D | AtomTransition.php | 37 public function equals(object $other) : bool function in Antlr\\Antlr4\\Runtime\\Atn\\Transitions\\AtomTransition 45 && $this->target->equals($other->target);
|
| H A D | PrecedencePredicateTransition.php | 45 public function equals(object $other) : bool function in Antlr\\Antlr4\\Runtime\\Atn\\Transitions\\PrecedencePredicateTransition 53 && $this->target->equals($other->target);
|
| H A D | RuleTransition.php | 57 public function equals(object $other) : bool function in Antlr\\Antlr4\\Runtime\\Atn\\Transitions\\RuleTransition 66 && $this->target->equals($other->target);
|
| H A D | ActionTransition.php | 51 public function equals(object $other) : bool function in Antlr\\Antlr4\\Runtime\\Atn\\Transitions\\ActionTransition 64 && $this->target->equals($other->target);
|
| H A D | PredicateTransition.php | 57 public function equals(object $other) : bool function in Antlr\\Antlr4\\Runtime\\Atn\\Transitions\\PredicateTransition 67 && $this->target->equals($other->target);
|
| H A D | RangeTransition.php | 42 public function equals(object $other) : bool function in Antlr\\Antlr4\\Runtime\\Atn\\Transitions\\RangeTransition 51 && $this->target->equals($other->target);
|
| /template/strap/vendor/antlr/antlr4-php-runtime/src/Atn/Actions/ |
| H A D | LexerIndexedCustomAction.php | 112 public function equals(object $other) : bool function in Antlr\\Antlr4\\Runtime\\Atn\\Actions\\LexerIndexedCustomAction 123 && $this->action->equals($other->action);
|
| /template/strap/vendor/antlr/antlr4-php-runtime/src/Dfa/ |
| H A D | DFAState.php | 115 public function equals(object $other) : bool function in Antlr\\Antlr4\\Runtime\\Dfa\\DFAState 126 return Equality::equals($this->configs, $other->configs);
|
| /template/strap/vendor/antlr/antlr4-php-runtime/src/PredictionContexts/ |
| H A D | SingletonPredictionContext.php | 64 public function equals(object $other) : bool function in Antlr\\Antlr4\\Runtime\\PredictionContexts\\SingletonPredictionContext 78 return Equality::equals($this->parent, $other->parent);
|
| H A D | ArrayPredictionContext.php | 79 public function equals(object $other) : bool function in Antlr\\Antlr4\\Runtime\\PredictionContexts\\ArrayPredictionContext 93 return Equality::equals($this->parents, $other->parents);
|
| /template/strap/vendor/antlr/antlr4-php-runtime/src/Atn/SemanticContexts/ |
| H A D | OrOperator.php | 118 public function equals(object $other) : bool function in Antlr\\Antlr4\\Runtime\\Atn\\SemanticContexts\\OrOperator 128 return Equality::equals($this->operand, $other->operand);
|