Home
last modified time | relevance | path

Searched refs:other (Results 26 – 50 of 1386) sorted by relevance

12345678910>>...56

/plugin/combo/vendor/antlr/antlr4-php-runtime/src/Atn/Transitions/
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);
/plugin/sequencediagram/bower_components/lodash/dist/
H A Dlodash.core.js620 return value > other;
658 if (value === other) {
662 return value !== value && other !== other;
719 othUnwrapped = othIsWrapped ? other.value() : other;
772 return value < other;
938 if (value !== other) {
946 othIsReflexive = other === other,
1253 return object.name == other.name && object.message == other.message;
1292 if (!(isPartial ? key in other : hasOwnProperty.call(other, key))) {
1664 if ((isReflexive ? other === value : other !== other)) {
[all …]
/plugin/findologicxmlexport/vendor/phpunit/phpunit/src/Framework/Constraint/
H A DAttribute.php39 * @param mixed $other Value or object to evaluate.
47 public function evaluate($other, $description = '', $returnResult = false) argument
51 $other,
76 * @param mixed $other Evaluated value or object.
80 protected function failureDescription($other) argument
H A DStringMatches.php37 protected function failureDescription($other) argument
42 protected function additionalFailureDescription($other) argument
45 $to = preg_split('(\r\n|\r|\n)', $other);
58 $other = implode("\n", $to);
62 return $differ->diff($this->string, $other);
H A DComposite.php37 * @param mixed $other Value or object to evaluate.
45 public function evaluate($other, $description = '', $returnResult = false) argument
49 $other,
54 $this->fail($other, $description);
H A DStringContains.php48 * @param mixed $other Value or object to evaluate.
52 protected function matches($other) argument
55 return mb_stripos($other, $this->string) !== false;
57 return mb_strpos($other, $this->string) !== false;
/plugin/combo/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;
/plugin/statdisplay/pchart/
H A DPoint.php20 public function distanceFrom(Point $other) { argument
21 return sqrt((($other->x - $this->x) * ($other->x - $this->x))
22 + (($other->y - $this->y) * ($other->y - $this->y)));
/plugin/statistics/inc/pchart/
H A DPoint.php20 public function distanceFrom(Point $other) { argument
22 (($other->x - $this->x) * ($other->x - $this->x))
23 + (($other->y - $this->y) * ($other->y - $this->y))
/plugin/combo/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 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];
/plugin/zotero/
H A DZoteroEntry.php101 public function equals(ZoteroEntry $other) argument
103 return $this->getZoteroId() === $other->getZoteroId()
104 && $this->getCiteKey() === $other->getCiteKey()
105 && $this->getAuthor() === $other->getAuthor()
106 && $this->getDate() === $other->getDate()
107 && $this->getTitle() === $other->getTitle();
/plugin/combo/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.php27 * the sets and they must not change. This does not protect the other
93 * The other solution is to use a hash table that lets us specify the
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
[all...]
/plugin/combo/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.php15 * position-dependent lexer actions which appear at a location other than the
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);

12345678910>>...56