Searched defs:equals (Results 101 - 125 of 969) sorted by relevance

1234567891011>>

/external/guava/guava/src/com/google/common/base/
H A DPairwiseEquivalence.java60 public boolean equals(@Nullable Object object) { method in class:PairwiseEquivalence
63 return this.elementEquivalence.equals(that.elementEquivalence);
/external/guava/guava/src/com/google/common/collect/
H A DAbstractMapEntry.java27 * Implementation of the {@code equals}, {@code hashCode}, and {@code toString}
46 @Override public boolean equals(@Nullable Object object) { method in class:AbstractMapEntry
H A DByFunctionOrdering.java49 @Override public boolean equals(@Nullable Object object) { method in class:ByFunctionOrdering
55 return this.function.equals(that.function)
56 && this.ordering.equals(that.ordering);
H A DForwardingMapEntry.java37 * {@link #equals}, which can lead to unexpected behavior. In this case, you
38 * should override {@code equals} as well, either providing your own
45 * not consistent with {@code equals}.
79 @Override public boolean equals(@Nullable Object object) { method in class:ForwardingMapEntry
80 return delegate().equals(object);
88 * A sensible definition of {@link #equals(Object)} in terms of {@link
90 * methods, you may wish to override {@link #equals(Object)} to forward to
120 * methods, you may wish to override {@link #equals} to forward to this
H A DForwardingSet.java56 @Override public boolean equals(@Nullable Object object) { method in class:ForwardingSet
57 return object == this || delegate().equals(object);
65 * A sensible definition of {@link #equals} in terms of {@link #size} and
67 * to override {@link #equals} to forward to this implementation.
77 * If you override {@link #iterator}, you may wish to override {@link #equals}
H A DLexicographicalOrdering.java58 @Override public boolean equals(@Nullable Object object) { method in class:LexicographicalOrdering
64 return this.elementOrder.equals(that.elementOrder);
H A DListMultimap.java90 boolean equals(@Nullable Object obj); method in interface:ListMultimap
H A DSetMultimap.java103 boolean equals(@Nullable Object obj); method in interface:SetMultimap
/external/guava/guava/src/com/google/common/eventbus/
H A DEventHandler.java90 @Override public boolean equals(Object obj) { method in class:EventHandler
105 return method.equals(other.method) && target == other.target;
/external/guava/guava/src/com/google/common/net/
H A DHostSpecifier.java149 public boolean equals(@Nullable Object other) { method in class:HostSpecifier
156 return this.canonicalForm.equals(that.canonicalForm);
/external/guava/guava-testlib/src/com/google/common/collect/testing/
H A DBaseComparable.java37 @Override public boolean equals(Object other) { method in class:BaseComparable
41 return s.equals(((BaseComparable) other).s);
H A DMinimalSet.java64 * equals() and hashCode() are more specific in the Set contract.
67 @Override public boolean equals(Object object) { method in class:MinimalSet
H A DUnhashableObject.java33 @Override public boolean equals(Object object) { method in class:UnhashableObject
/external/guava/guava-tests/test/com/google/common/collect/
H A DLegacyComparable.java56 @Override public boolean equals(Object object) { method in class:LegacyComparable
59 return this.value.equals(that.value);
/external/jdiff/src/jdiff/
H A DConstructorAPI.java61 public boolean equals(Object o) { method in class:ConstructorAPI
/external/jsilver/src/com/google/clearsilver/jsilver/precompiler/
H A DPrecompiledTemplateMapKey.java41 public boolean equals(Object o) { method in class:PrecompiledTemplateMapKey
52 return templateName.equals(that.templateName) && (escapeMode == that.escapeMode);
/external/ksoap2/ksoap2-base/src/main/java/org/ksoap2/serialization/
H A DSoapPrimitive.java47 public boolean equals(Object o) { method in class:SoapPrimitive
52 boolean varsEqual = name.equals(p.name)
53 && (namespace == null ? p.namespace == null : namespace.equals(p.namespace))
54 && (value == null ? (p.value == null) : value.equals(p.value));
/external/libphonenumber/java/src/com/android/i18n/phonenumbers/
H A DPhoneNumberMatch.java43 * "+1 425 882-8080".equals(m.rawString());
51 * util.parse(m.rawString(), country).equals(m.number());
107 public boolean equals(Object obj) { method in class:PhoneNumberMatch
115 return rawString.equals(other.rawString) && (start == other.start) &&
116 number.equals(other.number);
/external/mockito/cglib-and-asm/src/org/mockito/asm/tree/analysis/
H A DSourceValue.java84 public boolean equals(final Object value) { method in class:SourceValue
89 return size == v.size && insns.equals(v.insns);
/external/mockito/cglib-and-asm/src/org/mockito/cglib/core/
H A DClassInfo.java31 public boolean equals(Object o) { method in class:ClassInfo
36 return getType().equals(((ClassInfo)o).getType());
H A DMethodInfo.java31 public boolean equals(Object o) { method in class:MethodInfo
36 return getSignature().equals(((MethodInfo)o).getSignature());
H A DNamingPolicy.java39 * correctly implement <code>equals</code> and <code>hashCode</code>
42 boolean equals(Object o); method in interface:NamingPolicy
/external/mockito/src/org/mockito/internal/creation/
H A DDelegatingMethod.java50 public boolean equals(Object obj) { method in class:DelegatingMethod
51 return method.equals(obj);
/external/mockito/src/org/mockito/internal/listeners/
H A DNotifiedMethodInvocationReport.java65 public boolean equals(Object o) { method in class:NotifiedMethodInvocationReport
71 if (invocation != null ? !invocation.equals(that.invocation) : that.invocation != null) return false;
72 if (returnedValue != null ? !returnedValue.equals(that.returnedValue) : that.returnedValue != null)
74 if (throwable != null ? !throwable.equals(that.throwable) : that.throwable != null) return false;
/external/mockito/src/org/mockito/internal/util/collections/
H A DHashCodeAndEqualsMockWrapper.java10 * hashCode and equals safe mock wrapper.
13 * It doesn't use the actual mock {@link Object#hashCode} and {@link Object#equals} method as they might
21 * <li>For equals : <strong>use the object reference equality</strong></li>
40 public boolean equals(Object o) { method in class:HashCodeAndEqualsMockWrapper

Completed in 239 milliseconds

1234567891011>>