Searched refs:hashCode (Results 101 - 125 of 592) sorted by relevance

1234567891011>>

/frameworks/opt/net/wifi/service/java/com/android/server/wifi/hotspot2/anqp/
H A DDomainNameElement.java83 public int hashCode() { method in class:DomainNameElement
84 return mDomains.hashCode();
H A DHSConnectionCapabilityElement.java77 public int hashCode() { method in class:HSConnectionCapabilityElement
78 return mStatusList.hashCode();
H A DHSFriendlyNameElement.java84 public int hashCode() { method in class:HSFriendlyNameElement
85 return mNames.hashCode();
H A DNAIRealmElement.java85 public int hashCode() { method in class:NAIRealmElement
86 return mRealmDataList.hashCode();
H A DThreeGPPNetworkElement.java107 public int hashCode() { method in class:ThreeGPPNetworkElement
108 return mNetworks.hashCode();
H A DVenueNameElement.java106 public int hashCode() { method in class:VenueNameElement
107 return mNames.hashCode();
H A DNAIRealmData.java114 public int hashCode() { method in class:NAIRealmData
115 return mRealms.hashCode() * 31 + mEAPMethods.hashCode();
/frameworks/support/room/integration-tests/testapp/src/androidTest/java/android/arch/persistence/room/integration/testapp/vo/
H A DPet.java68 public int hashCode() { method in class:Pet
71 result = 31 * result + (mName != null ? mName.hashCode() : 0);
H A DToy.java69 public int hashCode() { method in class:Toy
71 result = 31 * result + (mName != null ? mName.hashCode() : 0);
H A DUser.java136 public int hashCode() { method in class:User
138 result = 31 * result + (mName != null ? mName.hashCode() : 0);
139 result = 31 * result + (mLastName != null ? mLastName.hashCode() : 0);
143 result = 31 * result + (mBirthday != null ? mBirthday.hashCode() : 0);
144 result = 31 * result + (mCustomField != null ? mCustomField.hashCode() : 0);
/frameworks/support/v7/mediarouter/src/android/support/v7/media/
H A DMediaRouteDiscoveryRequest.java100 public int hashCode() { method in class:MediaRouteDiscoveryRequest
101 return getSelector().hashCode() ^ (isActiveScan() ? 1 : 0);
/frameworks/base/core/java/android/net/
H A DStaticIpConfiguration.java139 public int hashCode() { method in class:StaticIpConfiguration
141 result = 47 * result + (ipAddress == null ? 0 : ipAddress.hashCode());
142 result = 47 * result + (gateway == null ? 0 : gateway.hashCode());
143 result = 47 * result + (domains == null ? 0 : domains.hashCode());
144 result = 47 * result + dnsServers.hashCode();
/frameworks/base/core/java/android/util/
H A DSparseBooleanArray.java241 public int hashCode() { method in class:SparseBooleanArray
242 int hashCode = mSize;
244 hashCode = 31 * hashCode + mKeys[i] | (mValues[i] ? 1 : 0);
246 return hashCode;
/frameworks/support/room/runtime/src/main/java/android/arch/persistence/room/util/
H A DTableInfo.java184 public int hashCode() { method in class:TableInfo
185 int result = name.hashCode();
186 result = 31 * result + columns.hashCode();
187 result = 31 * result + foreignKeys.hashCode();
268 public int hashCode() { method in class:TableInfo.Column
269 int result = name.hashCode();
270 result = 31 * result + (type != null ? type.hashCode() : 0);
331 public int hashCode() { method in class:TableInfo.ForeignKey
332 int result = referenceTable.hashCode();
333 result = 31 * result + onDelete.hashCode();
[all...]
/frameworks/base/core/tests/coretests/src/android/net/
H A DStaticIpConfigurationTest.java104 assertTrue(hashCodes.add(s.hashCode()));
107 assertTrue(hashCodes.add(s.hashCode()));
110 assertTrue(hashCodes.add(s.hashCode()));
113 assertTrue(hashCodes.add(s.hashCode()));
116 assertTrue(hashCodes.add(s.hashCode()));
119 assertTrue(hashCodes.add(s.hashCode()));
122 assertTrue(hashCodes.add(s.hashCode()));
/frameworks/opt/bitmap/src/com/android/bitmap/
H A DContiguousFIFOAggregator.java100 final int hash = key.hashCode();
138 mTasks.delete(key.hashCode());
167 final int hash = key.hashCode();
201 final int hash = first.hashCode();
224 final int hash = key.hashCode();
240 return mTasks.get(key.hashCode()) != null;
257 final int hash = key.hashCode();
/frameworks/base/core/java/android/accounts/
H A DAccount.java35 * {@link Parcelable} and also overrides {@link #equals} and {@link #hashCode}, making it
55 public int hashCode() { method in class:Account
57 result = 31 * result + name.hashCode();
58 result = 31 * result + type.hashCode();
/frameworks/base/packages/Osu/src/com/android/anqp/
H A DI18Name.java72 public int hashCode() { method in class:I18Name
73 int result = mLanguage.hashCode();
74 result = 31 * result + mText.hashCode();
/frameworks/base/packages/StatementService/src/com/android/statementservice/retriever/
H A DWebAsset.java100 public int hashCode() { method in class:WebAsset
101 return toJson().hashCode();
106 return toJson().hashCode();
/frameworks/base/services/core/java/com/android/server/location/
H A DLocationRequestStatistics.java84 public int hashCode() { method in class:LocationRequestStatistics.PackageProviderKey
85 return packageName.hashCode() + 31 * providerName.hashCode();
/frameworks/base/test-runner/src/android/test/suitebuilder/
H A DTestMethod.java139 public int hashCode() { method in class:TestMethod
141 result = (enclosingClassname != null ? enclosingClassname.hashCode() : 0);
142 result = 31 * result + (testMethodName != null ? testMethodName.hashCode() : 0);
/frameworks/support/frameworks/support/samples/SupportLeanbackDemos/src/com/example/android/leanback/
H A DPhotoItem.java111 public int hashCode() { method in class:PhotoItem
113 result = 31 * result + (mTitle != null ? mTitle.hashCode() : 0);
114 result = 31 * result + (mContent != null ? mContent.hashCode() : 0);
/frameworks/support/samples/SupportLeanbackDemos/src/com/example/android/leanback/
H A DPhotoItem.java111 public int hashCode() { method in class:PhotoItem
113 result = 31 * result + (mTitle != null ? mTitle.hashCode() : 0);
114 result = 31 * result + (mContent != null ? mContent.hashCode() : 0);
/frameworks/base/core/java/android/content/om/
H A DOverlayInfo.java217 public int hashCode() { method in class:OverlayInfo
222 result = prime * result + ((packageName == null) ? 0 : packageName.hashCode());
223 result = prime * result + ((targetPackageName == null) ? 0 : targetPackageName.hashCode());
224 result = prime * result + ((baseCodePath == null) ? 0 : baseCodePath.hashCode());
/frameworks/base/core/java/android/content/pm/
H A DVerificationParams.java152 public int hashCode() { method in class:VerificationParams
155 hash += 5 * (mVerificationURI == null ? 1 : mVerificationURI.hashCode());
156 hash += 7 * (mOriginatingURI == null ? 1 : mOriginatingURI.hashCode());
157 hash += 11 * (mReferrer == null ? 1 : mReferrer.hashCode());

Completed in 712 milliseconds

1234567891011>>