Searched defs:hashCode (Results 76 - 100 of 181) sorted by relevance

12345678

/frameworks/base/services/java/com/android/server/am/
H A DReceiverList.java62 public int hashCode() { method in class:ReceiverList
/frameworks/base/services/java/com/android/server/display/
H A DDisplayDeviceInfo.java219 public int hashCode() { method in class:DisplayDeviceInfo
/frameworks/base/telephony/java/android/telephony/
H A DCellIdentityCdma.java139 public int hashCode() { method in class:CellIdentityCdma
H A DCellIdentityGsm.java115 public int hashCode() { method in class:CellIdentityGsm
H A DCellIdentityLte.java119 public int hashCode() { method in class:CellIdentityLte
H A DCellIdentityWcdma.java120 public int hashCode() { method in class:CellIdentityWcdma
H A DCellInfo.java111 public int hashCode() { method in class:CellInfo
H A DCellSignalStrengthGsm.java158 public int hashCode() { method in class:CellSignalStrengthGsm
H A DCellSignalStrengthLte.java202 public int hashCode() { method in class:CellSignalStrengthLte
H A DCellSignalStrengthWcdma.java158 public int hashCode() { method in class:CellSignalStrengthWcdma
/frameworks/base/telephony/java/android/telephony/cdma/
H A DCdmaCellLocation.java159 public int hashCode() { method in class:CdmaCellLocation
/frameworks/base/tests/ActivityTests/src/com/google/android/test/activity/
H A DArrayMapTests.java101 public final int hashCode() { method in class:ArrayMapTests.ControlledHash
149 if (map.entrySet().hashCode() != array.entrySet().hashCode()) {
151 + Integer.toHexString(map.entrySet().hashCode()) + " array=0x"
152 + Integer.toHexString(array.entrySet().hashCode()));
166 if (map.keySet().hashCode() != array.keySet().hashCode()) {
168 + Integer.toHexString(map.keySet().hashCode()) + " array=0x"
169 + Integer.toHexString(array.keySet().hashCode()));
/frameworks/base/tests/SmokeTest/tests/src/com/android/smoketest/
H A DProcessErrorsTest.java357 return obj.hashCode();
362 public int hashCode() { method in class:ProcessErrorsTest.ProcessError
/frameworks/base/wifi/java/android/net/wifi/
H A DBatchedScanSettings.java189 public int hashCode() { method in class:BatchedScanSettings
194 (channelSet.hashCode() * 11);
/frameworks/base/wifi/java/android/net/wifi/p2p/nsd/
H A DWifiP2pServiceRequest.java243 public int hashCode() { method in class:WifiP2pServiceRequest
247 result = 31 * result + (mQuery == null ? 0 : mQuery.hashCode());
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
H A DIntRangeManager.java171 public int hashCode() { method in class:IntRangeManager.ClientRange
172 return (mStartId * 31 + mEndId) * 31 + mClient.hashCode();
/frameworks/support/v7/mediarouter/src/android/support/v7/media/
H A DMediaRouteSelector.java173 public int hashCode() { method in class:MediaRouteSelector
175 return mControlCategories.hashCode();
/frameworks/testing/app-tests/AppLaunchTest/src/com/android/applaunchtest/
H A DAppLaunchTest.java301 return obj.hashCode();
306 public int hashCode() { method in class:AppLaunchTest.ProcessError
/frameworks/base/core/java/android/content/
H A DIntentSender.java296 public int hashCode() { method in class:IntentSender
297 return mTarget.asBinder().hashCode();
H A DRestrictionEntry.java339 public int hashCode() { method in class:RestrictionEntry
341 result = 31 * result + key.hashCode();
343 result = 31 * result + currentValue.hashCode();
347 result = 31 * result + value.hashCode();
/frameworks/base/core/java/android/content/pm/
H A DContainerEncryptionParams.java259 public int hashCode() { method in class:ContainerEncryptionParams
262 hash += 5 * mEncryptionAlgorithm.hashCode();
263 hash += 7 * Arrays.hashCode(mEncryptionSpec.getIV());
264 hash += 11 * mEncryptionKey.hashCode();
265 hash += 13 * mMacAlgorithm.hashCode();
266 hash += 17 * mMacKey.hashCode();
267 hash += 19 * Arrays.hashCode(mMacTag);
/frameworks/base/core/java/android/hardware/usb/
H A DUsbAccessory.java176 public int hashCode() { method in class:UsbAccessory
177 return ((mManufacturer == null ? 0 : mManufacturer.hashCode()) ^
178 (mModel == null ? 0 : mModel.hashCode()) ^
179 (mDescription == null ? 0 : mDescription.hashCode()) ^
180 (mVersion == null ? 0 : mVersion.hashCode()) ^
181 (mUri == null ? 0 : mUri.hashCode()) ^
182 (mSerial == null ? 0 : mSerial.hashCode()));
H A DUsbDevice.java170 public int hashCode() { method in class:UsbDevice
171 return mName.hashCode();
/frameworks/base/core/java/android/net/
H A DNetworkTemplate.java178 public int hashCode() { method in class:NetworkTemplate
179 return Objects.hashCode(mMatchRule, mSubscriberId, mNetworkId);
/frameworks/base/core/java/android/nfc/cardemulation/
H A DApduServiceInfo.java324 public int hashCode() { method in class:ApduServiceInfo
325 return getComponent().hashCode();

Completed in 1517 milliseconds

12345678