HomeSort by relevance Sort by last modified time
    Searched defs:hashCode (Results 226 - 250 of 5552) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
ForwardingImmutableSet.java 73 @Override public int hashCode() {
74 return delegate.hashCode();
  /external/guava/guava-testlib/src/com/google/common/collect/testing/
BaseComparable.java 36 @Override public int hashCode() { // delegate to 's'
37 return s.hashCode();
MinimalSet.java 65 * equals() and hashCode() are more specific in the Set contract.
76 @Override public int hashCode() {
79 hashCodeSum += (o == null) ? 0 : o.hashCode();
UnhashableObject.java 42 @Override public int hashCode() {
46 // needed because otherwise Object.toString() calls hashCode()
  /external/guava/guava-tests/test/com/google/common/collect/
ConstraintsTest.java 70 /* equals and hashCode aren't defined for Collection */
102 assertEquals(set.hashCode(), constrained.hashCode());
133 assertEquals(sortedSet.hashCode(), constrained.hashCode());
183 assertEquals(list.hashCode(), constrained.hashCode());
LegacyComparable.java 64 @Override public int hashCode() {
65 return value.hashCode();
  /external/guava/guava-tests/test/com/google/common/net/
HostAndPortTest.java 201 assertEquals(hp1.hashCode(), hp1.hashCode());
202 assertEquals(hp1.hashCode(), hp2.hashCode());
203 assertFalse(hp1.hashCode() == hp3.hashCode());
204 assertFalse(hp3.hashCode() == hp4.hashCode());
205 assertEquals(hp4.hashCode(), hp5.hashCode());
    [all...]
  /external/guice/core/src/com/google/inject/internal/
UniqueAnnotations.java 61 @Override public int hashCode() {
62 return (127 * "value".hashCode()) ^ value;
UntargettedBindingImpl.java 75 public int hashCode() {
76 return Objects.hashCode(getKey(), getScoping());
  /external/guice/core/src/com/google/inject/matcher/
AbstractMatcher.java 54 @Override public int hashCode() {
55 return 41 * (a.hashCode() ^ b.hashCode());
83 @Override public int hashCode() {
84 return 37 * (a.hashCode() ^ b.hashCode());
  /external/guice/core/src/com/google/inject/name/
NamedImpl.java 36 public int hashCode() {
38 return (127 * "value".hashCode()) ^ value.hashCode();
  /external/guice/extensions/assistedinject/src/com/google/inject/assistedinject/
BindingCollector.java 53 public int hashCode() {
54 return bindings.hashCode();
ParameterListKey.java 58 public int hashCode() {
59 return paramList.hashCode();
  /external/guice/extensions/grapher/src/com/google/inject/grapher/
DependencyEdge.java 53 @Override public int hashCode() {
54 return 31 * super.hashCode() + Objects.hashCode(injectionPoint);
Edge.java 52 @Override public int hashCode() {
53 return Objects.hashCode(fromId, toId);
ImplementationNode.java 52 @Override public int hashCode() {
53 return 31 * super.hashCode() + Objects.hashCode(members);
InstanceNode.java 55 @Override public int hashCode() {
56 return 31 * super.hashCode() + Objects.hashCode(instance, members);
Node.java 29 * When set to true, the source object is ignored in {@link #equals} and {@link #hashCode}.
59 @Override public int hashCode() {
60 return ignoreSourceInComparisons ? id.hashCode() : Objects.hashCode(id, source);
  /external/guice/extensions/multibindings/src/com/google/inject/multibindings/
RealElement.java 79 @Override public int hashCode() {
80 return ((127 * "setName".hashCode()) ^ setName.hashCode())
81 + ((127 * "uniqueId".hashCode()) ^ uniqueId)
82 + ((127 * "type".hashCode()) ^ type.hashCode())
83 + ((127 * "keyType".hashCode()) ^ keyType.hashCode());
  /external/guice/extensions/persist/test/com/google/inject/persist/jpa/
JpaTestEntity.java 68 public int hashCode() {
69 int result = id != null ? id.hashCode() : 0;
70 result = 31 * result + (text != null ? text.hashCode() : 0);
  /external/icu/android_icu4j/src/main/java/android/icu/util/
CaseInsensitiveString.java 17 * hashCode() methods ignore case.
75 * Returns the hashCode of this object
76 * @return int hashcode
78 public int hashCode() {
82 hash = folded.hashCode();
DateInterval.java 68 * Override hashcode
70 public int hashCode() {
Measure.java 85 * Returns a hashcode for this object.
89 public int hashCode() {
90 return 31 * Double.valueOf(number.doubleValue()).hashCode() + unit.hashCode();
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/util/
ImmutableEntry.java 46 public int hashCode() {
47 return ((k==null ? 0 : k.hashCode()) ^ (v==null ? 0 : v.hashCode()));
  /external/icu/icu4c/source/test/intltest/
sfwdchit.cpp 94 int32_t SimpleFwdCharIterator::hashCode(void) const {

Completed in 1309 milliseconds

1 2 3 4 5 6 7 8 91011>>