HomeSort by relevance Sort by last modified time
    Searched refs:hashCode (Results 151 - 175 of 6226) sorted by null

1 2 3 4 5 67 8 91011>>

  /external/robolectric-shadows/utils/src/main/java/org/robolectric/util/
Pair.java 44 public int hashCode() {
45 return (first == null ? 0 : first.hashCode()) ^ (second == null ? 0 : second.hashCode());
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/base/value/
BaseLongEncodedValue.java 45 public int hashCode() {
47 int hashCode = (int)value;
48 return hashCode*31 + (int)(value>>>32);
  /external/snakeyaml/src/main/java/org/yaml/snakeyaml/introspector/
Property.java 73 public int hashCode() {
74 return name.hashCode() + type.hashCode();
  /external/vogar/src/vogar/
Outcome.java 168 @Override public int hashCode() {
169 int hashCode = 17;
170 hashCode = 37 * hashCode + outcomeName.hashCode();
171 hashCode = 37 * hashCode + result.hashCode();
172 hashCode = 37 * hashCode + output.hashCode()
    [all...]
  /external/volley/src/main/java/com/android/volley/
Header.java 50 public int hashCode() {
51 int result = mName.hashCode();
52 result = 31 * result + mValue.hashCode();
  /frameworks/base/core/java/android/util/
Pair.java 61 * @return a hashcode of the Pair
64 public int hashCode() {
65 return (first == null ? 0 : first.hashCode()) ^ (second == null ? 0 : second.hashCode());
  /frameworks/base/keystore/java/android/security/keystore/
AndroidKeyStorePublicKey.java 47 public int hashCode() {
49 int result = super.hashCode();
50 result = prime * result + Arrays.hashCode(mEncoded);
  /frameworks/base/media/java/android/media/
DrmInitData.java 83 public int hashCode() {
84 return mimeType.hashCode() + 31 * Arrays.hashCode(data);
  /frameworks/support/compat/src/main/java/androidx/core/util/
ObjectsCompat.java 62 * @see Object#hashCode
64 public static int hashCode(@Nullable Object o) {
65 return o != null ? o.hashCode() : 0;
71 * {@link Arrays#hashCode(Object[])}.
73 * <p>This method is useful for implementing {@link Object#hashCode()} on objects containing
78 * &#064;Override public int hashCode() {
85 * {@link #hashCode(Object)}.
89 * @see Arrays#hashCode(Object[])
95 return Arrays.hashCode(values);
  /frameworks/support/room/integration-tests/testapp/src/androidTest/java/androidx/room/integration/testapp/vo/
NameAndLastName.java 50 public int hashCode() {
51 int result = mName != null ? mName.hashCode() : 0;
52 result = 31 * result + (mLastName != null ? mLastName.hashCode() : 0);
  /libcore/ojluni/src/main/java/java/security/spec/
ECPoint.java 110 public int hashCode() {
112 return x.hashCode() << 5 + y.hashCode();
  /packages/apps/Dialer/java/com/android/dialer/app/contactinfo/
NumberWithCountryIso.java 51 public int hashCode() {
52 int numberHashCode = number == null ? 0 : number.hashCode();
53 int countryHashCode = countryIso == null ? 0 : countryIso.hashCode();
  /packages/apps/TV/src/com/android/tv/data/epg/
AutoValue_EpgReader_EpgChannel.java 76 public int hashCode() {
79 h ^= this.channel.hashCode();
81 h ^= this.epgChannelId.hashCode();
  /tools/tradefederation/core/src/com/android/tradefed/util/
Pair.java 64 * Return a hashcode using hash codes from the inner objects
67 public int hashCode() {
68 return (first == null ? 0 : first.hashCode()) ^ (second == null ? 0 : second.hashCode());
  /dalvik/dx/tests/098-dex-jsr-ret-throw/
ViewDebug$ViewServer.class 
  /external/guava/guava-tests/test/com/google/common/collect/
MultisetsImmutableEntryTest.java 72 assertEquals(control("foo", 1).hashCode(), entry("foo", 1).hashCode());
73 assertEquals(control("bar", 2).hashCode(), entry("bar", 2).hashCode());
77 assertEquals(control(NE, 1).hashCode(), entry(NE, 1).hashCode());
  /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/proguard/src/proguard/classfile/attribute/preverification/
MoreZeroFrame.java 133 public int hashCode()
135 int hashCode = super.hashCode();
139 hashCode ^= additionalVariables[index].hashCode();
142 return hashCode;
  /external/protobuf/java/core/src/main/java/com/google/protobuf/
AbstractProtobufList.java 92 public int hashCode() {
94 int hashCode = 1;
96 hashCode = (31 * hashCode) + get(i).hashCode();
98 return hashCode;
  /external/robolectric-shadows/robolectric/src/test/java/org/robolectric/internal/bytecode/
ShadowMapTest.java 46 assertThat(a.hashCode()).isEqualTo(b.hashCode());
50 assertThat(c.hashCode()).isEqualTo(b.hashCode());
54 assertThat(d.hashCode()).isNotEqualTo(b.hashCode());
  /libcore/ojluni/src/main/java/sun/security/x509/
DistributionPointName.java 92 // Cached hashCode value
93 private volatile int hashCode;
213 public int hashCode() {
214 int hash = hashCode;
218 hash += fullName.hashCode();
221 hash += relativeName.hashCode();
223 hashCode = hash;
  /cts/tests/tests/net/src/android/net/wifi/aware/cts/
TestUtils.java 65 public int hashCode() {
66 return Arrays.hashCode(mMac);
  /cts/tools/dasm/src/java_cup/
production_part.java 76 public int hashCode()
78 return label()==null ? 0 : label().hashCode();
reduce_action.java 69 public int hashCode()
72 return reduce_with().hashCode();
shift_action.java 69 public int hashCode()
72 return shift_to().hashCode();

Completed in 603 milliseconds

1 2 3 4 5 67 8 91011>>