Home
last modified time | relevance | path

Searched refs:other (Results 51 – 75 of 1386) sorted by relevance

12345678910>>...56

/plugin/combo/vendor/antlr/antlr4-php-runtime/src/Utils/
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 DBitSet.php55 public function equals(object $other) : bool argument
57 if ($this === $other) {
61 return $other instanceof self
62 && $this->data === $other->data;
/plugin/gtime/gtlib/tsp/
H A DGTVerificationResult.php141 * @param GTVerificationResultBase $other other verification result
144 public function update(GTVerifificationResultBase $other) { argument
145 $this->updateStatus($other->getStatusCode());
146 $this->updateErrors($other->getErrorCode());
/plugin/findologicxmlexport/vendor/phpunit/phpunit/src/Framework/Constraint/
H A DTraversableContainsOnly.php56 * @param mixed $other Value or object to evaluate.
64 public function evaluate($other, $description = '', $returnResult = false) argument
68 foreach ($other as $item) {
80 $this->fail($other, $description);
H A DIsNan.php20 * @param mixed $other Value or object to evaluate.
24 protected function matches($other) argument
26 return is_nan($other);
H A DIsNull.php20 * @param mixed $other Value or object to evaluate.
24 protected function matches($other) argument
26 return $other === null;
H A DIsInfinite.php20 * @param mixed $other Value or object to evaluate.
24 protected function matches($other) argument
26 return is_infinite($other);
H A DIsTrue.php20 * @param mixed $other Value or object to evaluate.
24 protected function matches($other) argument
26 return $other === true;
H A DIsFalse.php20 * @param mixed $other Value or object to evaluate.
24 protected function matches($other) argument
26 return $other === false;
H A DIsFinite.php20 * @param mixed $other Value or object to evaluate.
24 protected function matches($other) argument
26 return is_finite($other);
H A DOr.php49 * @param mixed $other Value or object to evaluate.
57 public function evaluate($other, $description = '', $returnResult = false) argument
63 if ($constraint->evaluate($other, $description, true)) {
74 $this->fail($other, $description);
H A DIsEqual.php98 * @param mixed $other Value or object to evaluate.
106 public function evaluate($other, $description = '', $returnResult = false) argument
111 if ($this->value === $other) {
120 $other
125 $other,
H A DObjectHasAttribute.php23 * @param mixed $other Value or object to evaluate.
27 protected function matches($other) argument
29 $object = new ReflectionObject($other);
H A DAnd.php57 * @param mixed $other Value or object to evaluate.
65 public function evaluate($other, $description = '', $returnResult = false) argument
71 if (!$constraint->evaluate($other, $description, true)) {
82 $this->fail($other, $description);
H A DXor.php49 * @param mixed $other Value or object to evaluate.
57 public function evaluate($other, $description = '', $returnResult = false) argument
64 $result = $constraint->evaluate($other, $description, true);
79 $this->fail($other, $description);
H A DStringStartsWith.php35 * @param mixed $other Value or object to evaluate.
39 protected function matches($other) argument
41 return strpos($other, $this->prefix) === 0;
H A DPCREMatch.php40 * @param mixed $other Value or object to evaluate.
44 protected function matches($other) argument
46 return preg_match($this->pattern, $other) > 0;
/plugin/combo/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);
H A DArrayPredictionContext.php79 public function equals(object $other) : bool argument
81 if ($this === $other) {
85 if (!$other instanceof self) {
89 if ($this->returnStates === $other->returnStates) {
93 return Equality::equals($this->parents, $other->parents);
/plugin/schulzevote/
H A Dhelper.php181 foreach ($this->candys as $other) {
182 if ($candy == $other) continue;
183 if ($get[$candy][$other] < $get[$other][$candy]) {
191 foreach ($this->candys as $other) {
192 if ($candy == $other) continue;
193 if ($get[$candy][$other] <= $get[$other][$candy]) {
/plugin/combo/vendor/antlr/antlr4-php-runtime/src/Atn/Actions/
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;
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;
/plugin/combo/vendor/antlr/antlr4-php-runtime/src/Atn/SemanticContexts/
H A DPrecedencePredicate.php40 public function equals(object $other) : bool argument
42 if ($this === $other) {
46 if (!$other instanceof self) {
50 return $this->precedence === $other->precedence;

12345678910>>...56