Home
last modified time | relevance | path

Searched refs:other (Results 76 – 100 of 1386) sorted by relevance

12345678910>>...56

/plugin/findologicxmlexport/vendor/phpunit/phpunit/src/Framework/Constraint/
H A DCallback.php41 * @param mixed $other Value or object to evaluate.
45 protected function matches($other) argument
47 return call_user_func($this->callback, $other);
H A DStringEndsWith.php35 * @param mixed $other Value or object to evaluate.
39 protected function matches($other) argument
41 return substr($other, 0 - strlen($this->suffix)) == $this->suffix;
H A DClassHasStaticAttribute.php23 * @param mixed $other Value or object to evaluate.
27 protected function matches($other) argument
29 $class = new ReflectionClass($other);
H A DLessThan.php35 * @param mixed $other Value or object to evaluate.
39 protected function matches($other) argument
41 return $this->value > $other;
H A DGreaterThan.php35 * @param mixed $other Value or object to evaluate.
39 protected function matches($other) argument
41 return $this->value < $other;
H A DJsonMatches.php38 * @param mixed $other Value or object to evaluate.
42 protected function matches($other) argument
44 $decodedOther = json_decode($other);
H A DIsAnything.php26 * @param mixed $other Value or object to evaluate.
34 public function evaluate($other, $description = '', $returnResult = false) argument
/plugin/authgooglesheets/vendor/google/apiclient-services/src/GamesConfiguration/
H A DGamesNumberAffixConfiguration.php80 public function setOther(LocalizedStringBundle $other) argument
82 $this->other = $other;
89 return $this->other;
/plugin/combo/vendor/antlr/antlr4-php-runtime/src/Dfa/
H A DDFAState.php111 * {@see ParserATNSimulator::addDFAState()} we need to know if any other state
115 public function equals(object $other) : bool argument
117 if ($this === $other) {
121 if (!$other instanceof self) {
125 // Compare set of ATN configurations in this set with other
126 return Equality::equals($this->configs, $other->configs);
/plugin/page4release/
H A Dinfo.txt7 desc Display "Page for <version>" and linked other page in other namespaces for other versions.
/plugin/findologicxmlexport/vendor/phpunit/phpunit/tests/Framework/Constraint/
H A DArraySubsetTest.php16 * @param array|Traversable $other
20 public function testEvaluate($expected, $subset, $other, $strict) argument
24 $this->assertSame($expected, $constraint->evaluate($other, '', true));
/plugin/combo/vendor/antlr/antlr4-php-runtime/src/Atn/Actions/
H A DLexerMoreAction.php65 public function equals(object $other) : bool argument
67 if ($this === $other) {
71 return $other instanceof self;
H A DLexerPopModeAction.php65 public function equals(object $other) : bool argument
67 if ($this === $other) {
71 return $other instanceof self;
H A DLexerSkipAction.php65 public function equals(object $other) : bool argument
67 if ($this === $other) {
71 return $other instanceof self;
/plugin/combo/vendor/antlr/antlr4-php-runtime/src/Atn/
H A DLexerActionExecutor.php199 public function equals(object $other) : bool argument
201 if ($this === $other) {
205 return $other instanceof self
206 && $this->hashCode() === $other->hashCode()
207 && Equality::equals($this->lexerActions, $other->lexerActions);
/plugin/combo/vendor/antlr/antlr4-php-runtime/src/
H A DIntervalSet.php72 public function orSet(IntervalSet $other) : self argument
77 $result->addSet($other);
216 // next to each other, make a single larger interval
257 public function addSet(IntervalSet $other) : self argument
259 if ($other->intervals !== null) {
260 foreach ($other->intervals as $i) {
492 public function equals(object $other) : bool argument
494 if ($this === $other) {
498 if (!$other instanceof self) {
502 return $this->readOnly === $other
[all...]
/plugin/combo/vendor/antlr/antlr4-php-runtime/src/Atn/States/
H A DATNState.php80 public function equals(object $other) : bool argument
82 if ($this === $other) {
86 return $other instanceof static
87 && $this->stateNumber === $other->stateNumber;
/plugin/openid/Auth/OpenID/
H A DAssociation.php167 * @param object $other
171 function equal($other) argument
173 return ((gettype($this) == gettype($other))
174 && ($this->handle == $other->handle)
175 && ($this->secret == $other->secret)
176 && ($this->issued == $other->issued)
177 && ($this->lifetime == $other->lifetime)
178 && ($this->assoc_type == $other->assoc_type));
/plugin/fedauth/Auth/OpenID/
H A DAssociation.php170 function equal($other) argument
172 return ((gettype($this) == gettype($other))
173 && ($this->handle == $other->handle)
174 && ($this->secret == $other->secret)
175 && ($this->issued == $other->issued)
176 && ($this->lifetime == $other->lifetime)
177 && ($this->assoc_type == $other->assoc_type));
/plugin/combo/vendor/antlr/antlr4-php-runtime/src/Atn/SemanticContexts/
H A DOrOperator.php118 public function equals(object $other) : bool argument
120 if ($this === $other) {
124 if (!$other instanceof self) {
128 return Equality::equals($this->operand, $other->operand);
H A DAndOperator.php116 public function equals(object $other) : bool argument
118 if ($this === $other) {
122 if (!$other instanceof self) {
126 return Equality::equals($this->operands, $other->operands);
/plugin/creole/helper/
H A Deventhandler.php40 public function equal ($other) { argument
41 if ($other == NULL ) {
44 $otherState = $other->getState();
45 $otherClazz = $other->getClazz();
46 $otherTag = $other->getTag();
/plugin/combo/vendor/antlr/antlr4-php-runtime/src/Comparison/
H A DDefaultEquivalence.php19 public function equals(object $other) : bool argument
21 return $other instanceof self;
/plugin/combo/vendor/antlr/antlr4-php-runtime/src/PredictionContexts/
H A DEmptyPredictionContext.php29 public function equals(object $other) : bool argument
31 return $other instanceof self;
/plugin/sync/lang/en/
H A Dintro.txt3 This tool allows you to synchronize the contents of your wiki with other wikis. Multiple other wiki…

12345678910>>...56