| /template/strap/vendor/antlr/antlr4-php-runtime/src/ |
| H A D | Interval.php | 43 public function equals(object $other) : bool argument 45 if ($this === $other) { 49 return $other instanceof self 50 && $this->start === $other->start 51 && $this->stop === $other->stop; 57 public function startsBeforeDisjoint(Interval $other) : bool argument 59 return $this->start < $other->start && $this->stop < $other->start; 65 public function startsBeforeNonDisjoint(Interval $other) : bool argument 67 return $this->start <= $other->start && $this->stop >= $other->start; 73 public function startsAfter(Interval $other) : bool argument [all …]
|
| /template/strap/vendor/antlr/antlr4-php-runtime/src/Atn/Transitions/ |
| H A D | ActionTransition.php | 51 public function equals(object $other) : bool argument 53 if ($this === $other) { 57 if (!$other instanceof self) { 61 return $this->ruleIndex === $other->ruleIndex 62 && $this->actionIndex === $other->actionIndex 63 && $this->isCtxDependent === $other->isCtxDependent 64 && $this->target->equals($other->target);
|
| H A D | PredicateTransition.php | 57 public function equals(object $other) : bool argument 59 if ($this === $other) { 63 return $other instanceof self 64 && $this->ruleIndex === $other->ruleIndex 65 && $this->predIndex === $other->predIndex 66 && $this->isCtxDependent === $other->isCtxDependent 67 && $this->target->equals($other->target);
|
| H A D | RuleTransition.php | 57 public function equals(object $other) : bool argument 59 if ($this === $other) { 63 return $other instanceof self 64 && $this->ruleIndex === $other->ruleIndex 65 && $this->precedence === $other->precedence 66 && $this->target->equals($other->target);
|
| H A D | RangeTransition.php | 42 public function equals(object $other) : bool argument 44 if ($this === $other) { 48 return $other instanceof self 49 && $this->from === $other->from 50 && $this->to === $other->to 51 && $this->target->equals($other->target);
|
| H A D | EpsilonTransition.php | 52 public function equals(object $other) : bool argument 54 if ($this === $other) { 58 return $other instanceof self 59 && $this->outermostPrecedenceReturn === $other->outermostPrecedenceReturn 60 && $this->target->equals($other->target);
|
| H A D | AtomTransition.php | 37 public function equals(object $other) : bool argument 39 if ($this === $other) { 43 return $other instanceof self 44 && $this->label === $other->label 45 && $this->target->equals($other->target);
|
| H A D | PrecedencePredicateTransition.php | 45 public function equals(object $other) : bool argument 47 if ($this === $other) { 51 return $other instanceof self 52 && $this->precedence === $other->precedence 53 && $this->target->equals($other->target);
|
| H A D | SetTransition.php | 46 public function equals(object $other) : bool argument 48 if ($this === $other) { 52 return $other instanceof self 53 && $this->set->equals($other->set) 54 && $this->target->equals($other->target);
|
| H A D | WildcardTransition.php | 19 public function equals(object $other) : bool argument 21 if ($this === $other) { 25 return $other instanceof self 26 && $this->target->equals($other->target);
|
| H A D | NotSetTransition.php | 20 public function equals(object $other) : bool argument 22 if ($this === $other) { 26 return $other instanceof self 27 && $this->target->equals($other->target);
|
| /template/strap/vendor/antlr/antlr4-php-runtime/src/Atn/SemanticContexts/ |
| H A D | Predicate.php | 41 public function equals(object $other) : bool argument 43 if ($this === $other) { 47 if (!$other instanceof self) { 51 return $this->ruleIndex === $other->ruleIndex 52 && $this->predIndex === $other->predIndex 53 && $this->isCtxDependent === $other->isCtxDependent;
|
| /template/strap/vendor/antlr/antlr4-php-runtime/src/Utils/ |
| H A D | Pair.php | 25 public function equals(object $other) : bool argument 27 if ($other === $this) { 31 return $other instanceof self 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 argument 155 if ($this === $other) { 159 if (!$other instanceof self 160 || $this->size !== $other->size 161 || !$this->equivalence->equals($other)) { 166 if (!isset($other->table[$hash]) || \count($bucket) !== \count($other->table[$hash])) { 170 $otherBucket = $other->table[$hash];
|
| H A D | Map.php | 119 public function equals(object $other) : bool argument 121 if ($this === $other) { 125 if (!$other instanceof self 126 || $this->size !== $other->size 127 || !$this->equivalence->equals($other->equivalence)) { 132 if (!isset($other->table[$hash]) || \count($bucket) !== \count($other->table[$hash])) { 136 $otherBucket = $other->table[$hash];
|
| /template/strap/vendor/antlr/antlr4-php-runtime/src/Atn/ |
| H A D | LexerATNConfig.php | 58 public function equals(object $other) : bool argument 60 if ($this === $other) { 64 if (!$other instanceof self) { 68 if (!parent::equals($other)) { 72 if ($this->passedThroughNonGreedyDecision !== $other->passedThroughNonGreedyDecision) { 76 return Equality::equals($this->lexerActionExecutor, $other->lexerActionExecutor);
|
| H A D | ATNConfig.php | 133 public function equals(object $other) : bool argument 135 if ($this === $other) { 139 return $other instanceof self 140 && $this->alt === $other->alt 141 && $this->isPrecedenceFilterSuppressed() === $other->isPrecedenceFilterSuppressed() 142 && $this->semanticContext->equals($other->semanticContext) 143 && Equality::equals($this->state, $other->state) 144 && Equality::equals($this->context, $other->context);
|
| H A D | ATNConfigSet.php | 119 public function equals(object $other) : bool argument 121 return $other instanceof self; 282 public function equals(object $other) : bool argument 284 if ($this === $other) { 288 if (!$other instanceof self) { 292 return $this->fullCtx === $other->fullCtx 293 && $this->uniqueAlt === $other->uniqueAlt 294 && $this->hasSemanticContext === $other->hasSemanticContext 295 && $this->dipsIntoOuterContext === $other->dipsIntoOuterContext 296 && Equality::equals($this->configs, $other->configs) [all …]
|
| /template/strap/vendor/antlr/antlr4-php-runtime/src/Atn/Actions/ |
| H A D | LexerCustomAction.php | 107 public function equals(object $other) : bool argument 109 if ($this === $other) { 113 if (!$other instanceof self) { 117 return $this->ruleIndex === $other->ruleIndex 118 && $this->actionIndex === $other->actionIndex;
|
| H A D | LexerIndexedCustomAction.php | 112 public function equals(object $other) : bool argument 114 if ($this === $other) { 118 if (!$other instanceof self) { 122 return $this->offset === $other->offset 123 && $this->action->equals($other->action);
|
| H A D | LexerTypeAction.php | 77 public function equals(object $other) : bool argument 79 if ($this === $other) { 83 if (!$other instanceof self) { 87 return $this->type === $other->type;
|
| H A D | LexerChannelAction.php | 77 public function equals(object $other) : bool argument 79 if ($this === $other) { 83 if (!$other instanceof self) { 87 return $this->channel === $other->channel;
|
| H A D | LexerModeAction.php | 71 public function equals(object $other) : bool argument 73 if ($this === $other) { 77 if (!$other instanceof self) { 81 return $this->mode === $other->mode;
|
| H A D | LexerPushModeAction.php | 72 public function equals(object $other) : bool argument 74 if ($this === $other) { 78 if (!$other instanceof self) { 82 return $this->mode === $other->mode;
|
| /template/strap/vendor/antlr/antlr4-php-runtime/src/PredictionContexts/ |
| H A D | SingletonPredictionContext.php | 64 public function equals(object $other) : bool argument 66 if ($this === $other) { 70 if (!$other instanceof static) { 74 if ($this->returnState !== $other->returnState) { 78 return Equality::equals($this->parent, $other->parent);
|