Home
last modified time | relevance | path

Searched refs:equals (Results 1 – 25 of 242) sorted by relevance

12345678910

/plugin/diagramsnet/lib/js/diagramly/vsdx/
Dimporter.js723 … if (m.entries[i].key.equals != null && m.entries[i].key.equals(k) || m.entries[i].key === k) {
736 … if (m.entries[i].key.equals != null && m.entries[i].key.equals(k) || m.entries[i].key === k) {
792 … if (m.entries[i].key.equals != null && m.entries[i].key.equals(k) || m.entries[i].key === k) {
867 if (type != null && ((function (o1, o2) { if (o1 && o1.equals) {
868 return o1.equals(o2);
872 …ype, com.mxgraph.io.vsdx.mxVsdxConstants.TYPE_SHAPE) || (function (o1, o2) { if (o1 && o1.equals) {
873 return o1.equals(o2);
877 …ype, com.mxgraph.io.vsdx.mxVsdxConstants.TYPE_GROUP) || (function (o1, o2) { if (o1 && o1.equals) {
878 return o1.equals(o2);
894 … if (m.entries[i].key.equals != null && m.entries[i].key.equals(k) || m.entries[i].key === k) {
[all …]
/plugin/combo/vendor/antlr/antlr4-php-runtime/src/Atn/
H A DATNConfig.php133 public function equals(object $other) : bool function in Antlr\\Antlr4\\Runtime\\Atn\\ATNConfig
142 && $this->semanticContext->equals($other->semanticContext)
143 && Equality::equals($this->state, $other->state)
144 && Equality::equals($this->context, $other->context);
169 if ($this->semanticContext->equals(SemanticContext::none())) {
189 … $this->semanticContext !== null && $this->semanticContext->equals(SemanticContext::none()) ?
H A DATNConfigSet.php110 && $left->semanticContext->equals($right->semanticContext)
111 && Equality::equals($left->state, $right->state);
119 public function equals(object $other) : bool function in Antlr\\Antlr4\\Runtime\\Atn\\ATNConfigSet::__construct::AnonymousClassfc9deb370100
160 if ($existing->equals($config)) {
282 public function equals(object $other) : bool function in Antlr\\Antlr4\\Runtime\\Atn\\ATNConfigSet
296 && Equality::equals($this->configs, $other->configs)
297 && Equality::equals($this->conflictingAlts, $other->conflictingAlts);
H A DLexerATNConfig.php58 public function equals(object $other) : bool function in Antlr\\Antlr4\\Runtime\\Atn\\LexerATNConfig
68 if (!parent::equals($other)) {
76 return Equality::equals($this->lexerActionExecutor, $other->lexerActionExecutor);
/plugin/combo/vendor/antlr/antlr4-php-runtime/src/Comparison/
H A DEquality.php17 public static function equals($left, $right) : bool function in Antlr\\Antlr4\\Runtime\\Comparison\\Equality
20 return $left->equals($right);
49 if (!self::equals($value, $right[$key])) {
H A DDefaultEquivalence.php11 return $left->equals($right);
19 public function equals(object $other) : bool function in Antlr\\Antlr4\\Runtime\\Comparison\\DefaultEquivalence
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Math/PrimeField/
DInteger.php145 public function equals(self $x) function in phpseclib3\\Math\\PrimeField\\Integer
149 return $this->value->equals($x->value);
256 for ($z = $one; !$z->equals(static::$modulo[$this->instanceID]); $z = $z->add($one)) {
258 if ($temp->equals($p_1)) {
269 while (!$t->equals($one)) {
272 while (!$t->powMod($two->pow($i), static::$modulo[$this->instanceID])->equals($one)) {
380 …$shift = !$d->equals(static::$zero[static::class]) && $d->bitwise_and($mask)->equals(static::$zero…
/plugin/combo/vendor/antlr/antlr4-php-runtime/src/Utils/
H A DPair.php25 public function equals(object $other) : bool function in Antlr\\Antlr4\\Runtime\\Utils\\Pair
32 && Equality::equals($this->a, $other->a)
33 && Equality::equals($this->b, $other->b);
/plugin/combo/vendor/antlr/antlr4-php-runtime/src/Atn/Transitions/
H A DSetTransition.php46 public function equals(object $other) : bool function in Antlr\\Antlr4\\Runtime\\Atn\\Transitions\\SetTransition
53 && $this->set->equals($other->set)
54 && $this->target->equals($other->target);
H A DWildcardTransition.php19 public function equals(object $other) : bool function in Antlr\\Antlr4\\Runtime\\Atn\\Transitions\\WildcardTransition
26 && $this->target->equals($other->target);
H A DNotSetTransition.php20 public function equals(object $other) : bool function in Antlr\\Antlr4\\Runtime\\Atn\\Transitions\\NotSetTransition
27 && $this->target->equals($other->target);
H A DEpsilonTransition.php52 public function equals(object $other) : bool function in Antlr\\Antlr4\\Runtime\\Atn\\Transitions\\EpsilonTransition
60 && $this->target->equals($other->target);
H A DAtomTransition.php37 public function equals(object $other) : bool function in Antlr\\Antlr4\\Runtime\\Atn\\Transitions\\AtomTransition
45 && $this->target->equals($other->target);
H A DPrecedencePredicateTransition.php45 public function equals(object $other) : bool function in Antlr\\Antlr4\\Runtime\\Atn\\Transitions\\PrecedencePredicateTransition
53 && $this->target->equals($other->target);
H A DActionTransition.php51 public function equals(object $other) : bool function in Antlr\\Antlr4\\Runtime\\Atn\\Transitions\\ActionTransition
64 && $this->target->equals($other->target);
H A DRuleTransition.php57 public function equals(object $other) : bool function in Antlr\\Antlr4\\Runtime\\Atn\\Transitions\\RuleTransition
66 && $this->target->equals($other->target);
H A DRangeTransition.php42 public function equals(object $other) : bool function in Antlr\\Antlr4\\Runtime\\Atn\\Transitions\\RangeTransition
51 && $this->target->equals($other->target);
/plugin/jdraw/src/com/mxgraph/examples/swing/editor/
DBasicGraphEditor.java846 if (ident.equals("verticalHierarchical"))
850 else if (ident.equals("horizontalHierarchical"))
854 else if (ident.equals("verticalTree"))
858 else if (ident.equals("horizontalTree"))
862 else if (ident.equals("parallelEdges"))
866 else if (ident.equals("placeEdgeLabels"))
870 else if (ident.equals("organicLayout"))
874 if (ident.equals("verticalPartition"))
888 else if (ident.equals("horizontalPartition"))
902 else if (ident.equals("verticalStack"))
[all …]
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Crypt/EC/Curves/
DEd25519.php117 if ($x2->equals($this->zero)) {
137 if (!$x->multiply($x)->subtract($x2)->equals($this->zero)) {
142 if (!$x->multiply($x)->subtract($x2)->equals($this->zero)) {
308 if ($p[0]->equals($q[0])) {
309 return !$p[1]->equals($q[1]) ? [] : $this->doublePoint($p);
DEd448.php73 if ($x2->equals($this->zero)) {
84 if (!$x->multiply($x)->subtract($x2)->equals($this->zero)) {
246 if ($p[0]->equals($q[0])) {
247 return !$p[1]->equals($q[1]) ? [] : $this->doublePoint($p);
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Crypt/EC/BaseCurves/
DBinary.php180 if ($p[0]->equals($q[0])) {
181 return !$p[1]->equals($q[1]) ? [] : $this->doublePoint($p);
192 if ($z2->equals($this->one)) {
254 if ($z1->equals($this->one)) {
306 return $lhs->equals($rhs);
DPrime.php196 if ($u1->equals($u2)) {
197 if (!$s1->equals($s2)) {
233 if ($u1->equals($u2)) {
234 if (!$s1->equals($s2)) {
272 if ($u1->equals($u2)) {
273 if (!$s1->equals($s2)) {
333 if ($p[0]->equals($q[0])) {
334 if (!$p[1]->equals($q[1])) {
484 return $lhs->equals($rhs);
/plugin/zotero/tests/
DZoteroRepositoryTest.php40 $this->assertTrue($expected->equals($actual));
57 $this->assertTrue($expected->equals($actual));
/plugin/combo/vendor/antlr/antlr4-php-runtime/src/Atn/Actions/
H A DLexerIndexedCustomAction.php112 public function equals(object $other) : bool function in Antlr\\Antlr4\\Runtime\\Atn\\Actions\\LexerIndexedCustomAction
123 && $this->action->equals($other->action);
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Math/BigInteger/Engines/
DEngine.php330 if (!$gcd->equals(static::$one[static::class])) {
878 if ($min->equals($max)) {
896 if ($x->equals(static::$two[static::class])) {
902 if ($x->equals($initial_x)) {
962 if (!$y->equals(static::$one[static::class]) && !$y->equals($n_1)) {
963 for ($j = 1; $j < $s && !$y->equals($n_1); ++$j) {
965 if ($y->equals(static::$one[static::class])) {
970 if (!$y->equals($n_1)) {
1040 if ($g->pow($n)->equals($this) > 0) {
1177 while (!$v->equals($zero)) {
[all …]

12345678910