Home
last modified time | relevance | path

Searched refs:equals (Results 51 – 75 of 223) sorted by last modified time

123456789

/plugin/combo/vendor/antlr/antlr4-php-runtime/src/Dfa/
H A DDFASerializer.php63 if ($state->equals(ATNSimulator::error())) {
H A DDFAState.php115 public function equals(object $other) : bool function in Antlr\\Antlr4\\Runtime\\Dfa\\DFAState
126 return Equality::equals($this->configs, $other->configs);
/plugin/combo/vendor/antlr/antlr4-php-runtime/src/
H A DInterval.php43 public function equals(object $other) : bool function in Antlr\\Antlr4\\Runtime\\Interval
H A DIntervalSet.php211 if ($addition->equals($resilt)) {
492 public function equals(object $other) : bool function in Antlr\\Antlr4\\Runtime\\IntervalSet
503 && Equality::equals($this->intervals, $other->intervals);
H A DLL1Analyzer.php190 if ($stopState !== null && $s->equals($stopState)) {
/plugin/combo/ComboStrap/Xml/
H A DXmlSystems.php209 $leftUrl->equals($rightUrl);
/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 DATNDeserializer.php565 if ($excludeTransition !== null && $transition->equals($excludeTransition)) {
569 if ($endState !== null && $transition->target->equals($endState)) {
/plugin/combo/vendor/antlr/antlr4-php-runtime/src/Atn/Actions/
H A DLexerModeAction.php71 public function equals(object $other) : bool function in Antlr\\Antlr4\\Runtime\\Atn\\Actions\\LexerModeAction
/plugin/combo/vendor/antlr/antlr4-php-runtime/src/Atn/States/
H A DATNState.php80 public function equals(object $other) : bool function in Antlr\\Antlr4\\Runtime\\Atn\\States\\ATNState
/plugin/combo/vendor/antlr/antlr4-php-runtime/src/Atn/Transitions/
H A DRangeTransition.php42 public function equals(object $other) : bool function in Antlr\\Antlr4\\Runtime\\Atn\\Transitions\\RangeTransition
51 && $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 DWildcardTransition.php19 public function equals(object $other) : bool function in Antlr\\Antlr4\\Runtime\\Atn\\Transitions\\WildcardTransition
26 && $this->target->equals($other->target);
/plugin/combo/vendor/antlr/antlr4-php-runtime/src/Comparison/
H A DDefaultEquivalence.php11 return $left->equals($right);
19 public function equals(object $other) : bool function in Antlr\\Antlr4\\Runtime\\Comparison\\DefaultEquivalence
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 DEquatable.php9 public function equals(object $other) : bool; function
/plugin/combo/ComboStrap/
H A DHtml.php125 * @throws ExceptionNotEquals - not equals
183 $url->equals($urlActual);
/plugin/combo/vendor/antlr/antlr4-php-runtime/src/PredictionContexts/
H A DArrayPredictionContext.php79 public function equals(object $other) : bool function in Antlr\\Antlr4\\Runtime\\PredictionContexts\\ArrayPredictionContext
93 return Equality::equals($this->parents, $other->parents);
H A DEmptyPredictionContext.php29 public function equals(object $other) : bool function in Antlr\\Antlr4\\Runtime\\PredictionContexts\\EmptyPredictionContext
H A DPredictionContext.php135 if ($a->equals($b)) {
442 $ax_ax = ($a_parent !== null && $b_parent !== null && $a_parent->equals($b_parent));// ax+ax
594 if ($changed || ($parentContext !== null && !$parent->equals($parentContext))) {
H A DSingletonPredictionContext.php64 public function equals(object $other) : bool function in Antlr\\Antlr4\\Runtime\\PredictionContexts\\SingletonPredictionContext
78 return Equality::equals($this->parent, $other->parent);
/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);
H A DSet.php153 public function equals(object $other) : bool function in Antlr\\Antlr4\\Runtime\\Utils\\Set
161 || !$this->equivalence->equals($other)) {
173 if (!$value->equals($otherBucket[$index])) {
/plugin/openid/Auth/OpenID/
H A DServer.php907 function equals($other) function in Auth_OpenID_CheckIDRequest
/plugin/ckgedit/ckeditor/
H A Dckeditor.js.unc1768 a.equals = function(a) {
1902 return !a.equals(c)
1922 return !a.equals(c)
3002 … !a.equals(C)) && (a.type != CKEDITOR.NODE_ELEMENT || !b || !a.equals(c.root))
3009 …return (!b || !k.equals(a)) && (!q || !a.equals(q)) && (a.type != CKEDITOR.NODE_ELEMENT || !b || !…
4328 return !(a.equals(c) || a.equals(f))
8518 return !a.equals(e.block) && !a.equals(e.blockLimit)
8565 a.mergeList = g && h && g.getParent().equals(h.getParent()) && !g.equals(h);
10391 return b.equals(a)
12711 equals: function(a, b) {
[all …]

123456789