Home
last modified time | relevance | path

Searched refs:equals (Results 1 – 25 of 59) sorted by relevance

123

/template/strap/vendor/antlr/antlr4-php-runtime/src/Atn/
H A DATNConfig.php133 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 DATNConfigSet.php110 && $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 DLexerATNConfig.php58 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 DLexerActionExecutor.php199 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 DEquality.php17 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 DDefaultEquivalence.php11 return $left->equals($right);
19 public function equals(object $other) : bool function in Antlr\\Antlr4\\Runtime\\Comparison\\DefaultEquivalence
H A DEquatable.php9 public function equals(object $other) : bool; function
/template/strap/vendor/antlr/antlr4-php-runtime/src/Utils/
H A DPair.php25 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 DSet.php153 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 DMap.php119 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 DSetTransition.php46 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 DWildcardTransition.php19 public function equals(object $other) : bool function in Antlr\\Antlr4\\Runtime\\Atn\\Transitions\\WildcardTransition
26 && $this->target->equals($other->target);
H A DNotSetTransition.php20 public function equals(object $other) : bool function in Antlr\\Antlr4\\Runtime\\Atn\\Transitions\\NotSetTransition
27 && $this->target->equals($other->target);
H A DEpsilonTransition.php52 public function equals(object $other) : bool function in Antlr\\Antlr4\\Runtime\\Atn\\Transitions\\EpsilonTransition
60 && $this->target->equals($other->target);
H A DAtomTransition.php37 public function equals(object $other) : bool function in Antlr\\Antlr4\\Runtime\\Atn\\Transitions\\AtomTransition
45 && $this->target->equals($other->target);
H A DPrecedencePredicateTransition.php45 public function equals(object $other) : bool function in Antlr\\Antlr4\\Runtime\\Atn\\Transitions\\PrecedencePredicateTransition
53 && $this->target->equals($other->target);
H A DRuleTransition.php57 public function equals(object $other) : bool function in Antlr\\Antlr4\\Runtime\\Atn\\Transitions\\RuleTransition
66 && $this->target->equals($other->target);
H A DActionTransition.php51 public function equals(object $other) : bool function in Antlr\\Antlr4\\Runtime\\Atn\\Transitions\\ActionTransition
64 && $this->target->equals($other->target);
H A DPredicateTransition.php57 public function equals(object $other) : bool function in Antlr\\Antlr4\\Runtime\\Atn\\Transitions\\PredicateTransition
67 && $this->target->equals($other->target);
H A DRangeTransition.php42 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 DLexerIndexedCustomAction.php112 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 DDFAState.php115 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 DSingletonPredictionContext.php64 public function equals(object $other) : bool function in Antlr\\Antlr4\\Runtime\\PredictionContexts\\SingletonPredictionContext
78 return Equality::equals($this->parent, $other->parent);
H A DArrayPredictionContext.php79 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 DOrOperator.php118 public function equals(object $other) : bool function in Antlr\\Antlr4\\Runtime\\Atn\\SemanticContexts\\OrOperator
128 return Equality::equals($this->operand, $other->operand);

123