Home
last modified time | relevance | path

Searched refs:other (Results 126 – 150 of 1386) sorted by last modified time

12345678910>>...56

/plugin/combo/vendor/antlr/antlr4-php-runtime/src/
H A DInterval.php43 public function equals(object $other) : bool argument
45 if ($this === $other) {
49 return $other instanceof self
50 && $this->start === $other->start
51 && $this->stop === $other->stop;
55 * Does this start completely before other? Disjoint.
57 public function startsBeforeDisjoint(Interval $other) : bool argument
59 return $this->start < $other->start && $this->stop < $other->start;
63 * Does this start at or before other
65 startsBeforeNonDisjoint(Interval $other) global() argument
73 startsAfter(Interval $other) global() argument
81 startsAfterDisjoint(Interval $other) global() argument
89 startsAfterNonDisjoint(Interval $other) global() argument
98 disjoint(Interval $other) global() argument
106 adjacent(Interval $other) global() argument
114 union(Interval $other) global() argument
122 intersection(Interval $other) global() argument
[all...]
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/
H A DLICENSE16 Foundation's software and to any other program whose authors commit to
17 using it. (Some other Free Software Foundation software is covered by
62 0. This License applies to any program or other work which contains
72 Activities other than copying, distribution and modification are not
84 and give any other recipients of the Program a copy of this License
121 this License, whose permissions for other licensees extend to the
131 a storage or distribution medium does not bring the other work under
198 infringement or for any other reason (not limited to patent issues),
203 License and any other pertinent obligations, then as a consequence you
212 apply and the section as a whole is intended to apply in other
[all...]
/plugin/combo/vendor/antlr/antlr4-php-runtime/src/Atn/
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);
/plugin/combo/vendor/salesforce/handlebars-php/
H A DCODE_OF_CONDUCT.md13 other similar personal characteristics.
31 socioeconomic status, or other similar personal characteristics.
42 * Showing empathy toward other community members
63 reject comments, commits, code, wiki edits, issues, and other contributions
65 permanently any contributor for other behaviors that they deem inappropriate,
88 faith may face temporary or permanent repercussions as determined by other
H A DREADME.md642 Partials are other templates you can include inside of the main template.
656 Block helpers make it possible to define custom iterators and other helpers that can invoke the passed block with a new context.
/plugin/combo/vendor/antlr/antlr4-php-runtime/src/Atn/Actions/
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/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/combo/vendor/antlr/antlr4-php-runtime/src/Atn/Transitions/
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 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 DWildcardTransition.php19 public function equals(object $other) : bool argument
21 if ($this === $other) {
25 return $other instanceof self
26 && $this->target->equals($other->target);
/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;
H A DEquatable.php9 public function equals(object $other) : bool; argument
/plugin/combo/vendor/antlr/antlr4-php-runtime/src/PredictionContexts/
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);
H A DEmptyPredictionContext.php29 public function equals(object $other) : bool argument
31 return $other instanceof self;
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);
/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 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];
/plugin/data/lang/en/
H A Dadmin_intro.txt5 The aliased types can be used like any other type of the plugin, but all data will be prefixed or postfixed with the values you provided for the alias here. This is usually used for linking certain field types to special namespaces.
H A Dintro_clean.txt3 When pages with attached data entries are deleted, their stored meta data is deleted as well. However this is only true when the page was deleted through normal wiki editing. If the page was deleted by other means, eg. by removing it on the file system, its meta data remains in the database.
/plugin/adhoctags/
H A DLICENSE16 Foundation's software and to any other program whose authors commit to
17 using it. (Some other Free Software Foundation software is covered by
62 0. This License applies to any program or other work which contains
72 Activities other than copying, distribution and modification are not
84 and give any other recipients of the Program a copy of this License
121 this License, whose permissions for other licensees extend to the
131 a storage or distribution medium does not bring the other work under
198 infringement or for any other reason (not limited to patent issues),
203 License and any other pertinent obligations, then as a consequence you
212 apply and the section as a whole is intended to apply in other
[all...]
H A DREADME.md86 - `classname` – anything that does matches a valid CSS class name (and none of the other formats) will be treated as a class name.
88 - `[name=value]` – extended format for all other allowed attributes. For example, `[style=color:red]`, or `[dir=ltr]` to override the text direction set by the `:lang` attribute, etc.
119 If needed, similar searches can also be used for other attributes (e.g. ` style="([^\"]*)"` -> ` [style=$1]` for style), but it is probably a good idea to manually update these, rather than relying on automatisms.
/plugin/adhoctags/images/
H A DREADME21 Some of the icons are redistributed under the Apache 2.0 license. All other
28 2.0 license. All other icons are either redistributed under their respective
/plugin/dwtimeline/
H A DLICENSE16 Foundation's software and to any other program whose authors commit to
17 using it. (Some other Free Software Foundation software is covered by
62 0. This License applies to any program or other work which contains
72 Activities other than copying, distribution and modification are not
84 and give any other recipients of the Program a copy of this License
121 this License, whose permissions for other licensees extend to the
131 a storage or distribution medium does not bring the other work under
198 infringement or for any other reason (not limited to patent issues),
212 apply and the section as a whole is intended to apply in other
216 patents or other property right claims or to contest validity of any
[all …]
/plugin/mobiletable/
H A DREADME.md5 …d representation of a table, where all columns are stacked on top of each other, which is only sho…

12345678910>>...56