Home
last modified time | relevance | path

Searched refs:other (Results 1 – 25 of 574) sorted by relevance

12345678910>>...23

/template/strap/vendor/antlr/antlr4-php-runtime/src/
H A DInterval.php43 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 DActionTransition.php51 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 DPredicateTransition.php57 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 DRuleTransition.php57 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 DRangeTransition.php42 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 DEpsilonTransition.php52 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 DAtomTransition.php37 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 DPrecedencePredicateTransition.php45 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 DSetTransition.php46 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 DWildcardTransition.php19 public function equals(object $other) : bool argument
21 if ($this === $other) {
25 return $other instanceof self
26 && $this->target->equals($other->target);
H A DNotSetTransition.php20 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 DPredicate.php41 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 DPair.php25 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 DSet.php153 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 DMap.php119 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 DLexerATNConfig.php58 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 DATNConfig.php133 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 DATNConfigSet.php119 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 DLexerCustomAction.php107 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 DLexerIndexedCustomAction.php112 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 DLexerTypeAction.php77 public function equals(object $other) : bool argument
79 if ($this === $other) {
83 if (!$other instanceof self) {
87 return $this->type === $other->type;
H A DLexerChannelAction.php77 public function equals(object $other) : bool argument
79 if ($this === $other) {
83 if (!$other instanceof self) {
87 return $this->channel === $other->channel;
H A DLexerModeAction.php71 public function equals(object $other) : bool argument
73 if ($this === $other) {
77 if (!$other instanceof self) {
81 return $this->mode === $other->mode;
H A DLexerPushModeAction.php72 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 DSingletonPredictionContext.php64 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);

12345678910>>...23