Searched defs:other (Results 201 - 225 of 929) sorted by relevance

1234567891011>>

/external/icu/icu4j/main/classes/collate/src/com/ibm/icu/impl/coll/
H A DUTF16CollationIterator.java36 public boolean equals(Object other) { argument
37 if(!super.equals(other)) { return false; }
38 UTF16CollationIterator o = (UTF16CollationIterator)other;
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/lang/
H A DCharSequences.java99 public static final boolean equals(int codepoint, CharSequence other) { argument
100 if (other == null) {
103 switch (other.length()) {
104 case 1: return codepoint == other.charAt(0);
105 case 2: return codepoint > 0xFFFF && codepoint == Character.codePointAt(other, 0);
115 public static final boolean equals(CharSequence other, int codepoint) { argument
116 return equals(codepoint, other);
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
H A DCharsetMatch.java137 * The name will be one that can be used with other APIs on the
166 * Compare to other CharsetMatch objects.
170 * @param other the CharsetMatch object to compare against.
178 public int compareTo (CharsetMatch other) { argument
180 if (this.fConfidence > other.fConfidence) {
182 } else if (this.fConfidence < other.fConfidence) {
H A DUnicodeSetSpanner.java82 public boolean equals(Object other) { argument
83 return other instanceof UnicodeSetSpanner && unicodeSet.equals(((UnicodeSetSpanner) other).unicodeSet);
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/util/
H A DByteArrayWrapper.java172 public final ByteArrayWrapper append(ByteArrayWrapper other)
174 return append(other.bytes, 0, other.size);
209 * @param other the object to compare to.
213 public boolean equals(Object other) { argument
214 if (this == other) return true;
215 if (other == null) return false;
217 ByteArrayWrapper that = (ByteArrayWrapper)other;
244 * @param other the object to compare to.
246 * greater than other
250 compareTo(ByteArrayWrapper other) argument
[all...]
H A DTimeZoneRule.java86 * @param other The <code>TimeZoneRule</code> object to be compared with.
87 * @return true if the other <code>TimeZoneRule</code> is the same as this one.
91 public boolean isEquivalentTo(TimeZoneRule other) { argument
92 if (rawOffset == other.rawOffset && dstSavings == other.dstSavings) {
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/util/
H A DLocaleDataTest.java155 public boolean equals(Object other) { argument
156 ExemplarGroup o = (ExemplarGroup)other;
/external/jetty/src/java/org/eclipse/jetty/security/
H A DRoleInfo.java121 public void combine(RoleInfo other) argument
123 if (other._forbidden)
125 else if (!other._checked) // TODO is this the right way around???
127 else if (other._isAnyRole)
131 for (String r : other._roles)
135 setUserDataConstraint(other._userDataConstraint);
/external/jmonkeyengine/engine/src/core/com/jme3/asset/
H A DAssetKey.java14 * documentation and/or other materials provided with the distribution.
175 public boolean equals(Object other){ argument
176 if (!(other instanceof AssetKey)){
179 return name.equals(((AssetKey)other).name);
/external/jmonkeyengine/engine/src/core/com/jme3/shader/
H A DDefineList.java14 * documentation and/or other materials provided with the distribution.
146 public void addFrom(DefineList other){ argument
147 if (other == null)
151 defines.putAll(other.defines);
/external/jmonkeyengine/engine/src/core/com/jme3/texture/
H A DTexture2D.java14 * documentation and/or other materials provided with the distribution.
185 public boolean equals(Object other) { argument
186 if (!(other instanceof Texture2D)) {
189 Texture2D that = (Texture2D) other;
194 return super.equals(other);
H A DTexture3D.java14 * documentation and/or other materials provided with the distribution.
190 public boolean equals(Object other) { argument
191 if (!(other instanceof Texture3D)) {
194 Texture3D that = (Texture3D) other;
204 return super.equals(other);
H A DTextureCubeMap.java14 * documentation and/or other materials provided with the distribution.
166 public boolean equals(Object other) { argument
167 if (!(other instanceof TextureCubeMap)) {
170 TextureCubeMap that = (TextureCubeMap) other;
177 return super.equals(other);
/external/jmonkeyengine/engine/src/test/jme3test/asset/
H A DTestAssetCache.java14 * documentation and/or other materials provided with the distribution.
91 public boolean equals(Object other){ argument
120 public boolean equals(Object other){ argument
/external/junit/src/org/junit/runners/model/
H A DFrameworkMethod.java62 * <li>returns something other than void, or
77 * <li>returns something other than void, or
99 public boolean isShadowedBy(FrameworkMethod other) { argument
100 if (!other.getName().equals(getName()))
102 if (other.getParameterTypes().length != getParameterTypes().length)
104 for (int i= 0; i < other.getParameterTypes().length; i++)
105 if (!other.getParameterTypes()[i].equals(getParameterTypes()[i]))
/external/ksoap2/ksoap2-base/src/main/java/org/ksoap2/serialization/
H A DAttributeContainer.java132 * @param other
135 protected boolean attributesAreEqual(AttributeContainer other) { argument
137 if (numAttributes != other.getAttributeCount()) {
144 if (!other.hasAttribute(thisAttrib.getName())) {
147 Object otherAttribValue = other.getAttributeSafely(thisAttrib.getName());
/external/libcxx/test/std/containers/
H A Dstack_allocator.h30 template <class U> struct rebind {typedef stack_allocator<U, N> other;}; typedef in struct:stack_allocator::rebind
/external/lldb/include/lldb/DataFormatters/
H A DTypeCategoryMap.h116 bool operator()(const lldb::TypeCategoryImplSP& other) argument
118 return ptr.get() == other.get();
/external/ltrace/sysdeps/linux-gnu/ppc/
H A Dtrace.c95 struct breakpoint *other = address2bpstruct(proc->leader, ip); local
107 if (other != NULL) {
/external/nist-sip/java/gov/nist/core/
H A DHostPort.java83 * @param other Object to set
86 public boolean equals(Object other) { argument
87 if (other == null) return false;
88 if (getClass () != other.getClass ()) {
91 HostPort that = (HostPort) other;
/external/nist-sip/java/gov/nist/javax/sip/header/
H A DCSeq.java84 * @param other Object to compare against.
88 public boolean equals(Object other) { argument
90 if (other instanceof CSeqHeader) {
91 final CSeqHeader o = (CSeqHeader) other;
H A DContentType.java212 public boolean equals(Object other) { argument
213 if (other instanceof ContentTypeHeader) {
214 final ContentTypeHeader o = (ContentTypeHeader) other;
H A DFrom.java160 public boolean equals(Object other) { argument
161 return (other instanceof FromHeader) && super.equals(other);
H A DRequestLine.java187 *@param other object to compare with. We assume that all fields
190 public boolean equals(Object other) { argument
192 if (!other.getClass().equals(this.getClass())) {
195 RequestLine that = (RequestLine) other;
H A DTo.java188 public boolean equals(Object other) { argument
189 return (other instanceof ToHeader) && super.equals(other);

Completed in 630 milliseconds

1234567891011>>