Searched defs:hashCode (Results 126 - 150 of 257) sorted by relevance

1234567891011

/frameworks/base/telephony/java/android/telephony/
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
H A DPreciseCallState.java269 public int hashCode() { method in class:PreciseCallState
H A DPreciseDataConnectionState.java192 public int hashCode() { method in class:PreciseDataConnectionState
197 result = prime * result + ((mAPNType == null) ? 0 : mAPNType.hashCode());
198 result = prime * result + ((mAPN == null) ? 0 : mAPN.hashCode());
199 result = prime * result + ((mReason == null) ? 0 : mReason.hashCode());
200 result = prime * result + ((mLinkProperties == null) ? 0 : mLinkProperties.hashCode());
201 result = prime * result + ((mFailCause == null) ? 0 : mFailCause.hashCode());
H A DVoLteServiceState.java165 public int hashCode() { method in class:VoLteServiceState
/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.java368 return obj.hashCode();
373 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.java175 public int hashCode() { method in class:MediaRouteSelector
177 return mControlCategories.hashCode();
/frameworks/base/core/java/android/bluetooth/le/
H A DScanFilter.java385 public int hashCode() { method in class:ScanFilter
/frameworks/base/core/java/android/content/
H A DIntentSender.java296 public int hashCode() { method in class:IntentSender
297 return mTarget.asBinder().hashCode();
/frameworks/base/core/java/android/content/pm/
H A DContainerEncryptionParams.java263 public int hashCode() { method in class:ContainerEncryptionParams
266 hash += 5 * mEncryptionAlgorithm.hashCode();
267 hash += 7 * Arrays.hashCode(mEncryptionSpec.getIV());
268 hash += 11 * mEncryptionKey.hashCode();
269 hash += 13 * mMacAlgorithm.hashCode();
270 hash += 17 * mMacKey.hashCode();
271 hash += 19 * Arrays.hashCode(mMacTag);
/frameworks/base/core/java/android/hardware/camera2/params/
H A DStreamConfigurationMap.java817 public int hashCode() { method in class:StreamConfigurationMap
819 return HashCodeHelpers.hashCode(
H A DTonemapCurve.java274 public int hashCode() { method in class:TonemapCurve
280 mHashCode = HashCodeHelpers.hashCode(mRed, mGreen, mBlue);
/frameworks/base/core/java/android/hardware/display/
H A DDisplayManagerInternal.java248 public int hashCode() { method in class:DisplayManagerInternal.DisplayPowerRequest
/frameworks/base/core/java/android/hardware/usb/
H A DUsbAccessory.java174 public int hashCode() { method in class:UsbAccessory
175 return ((mManufacturer == null ? 0 : mManufacturer.hashCode()) ^
176 (mModel == null ? 0 : mModel.hashCode()) ^
177 (mDescription == null ? 0 : mDescription.hashCode()) ^
178 (mVersion == null ? 0 : mVersion.hashCode()) ^
179 (mUri == null ? 0 : mUri.hashCode()) ^
180 (mSerial == null ? 0 : mSerial.hashCode()));
H A DUsbDevice.java255 public int hashCode() { method in class:UsbDevice
256 return mName.hashCode();
/frameworks/base/core/java/android/net/
H A DNetwork.java370 public int hashCode() { method in class:Network
H A DNetworkTemplate.java216 public int hashCode() { method in class:NetworkTemplate
H A DRouteInfo.java447 public int hashCode() { method in class:RouteInfo
448 return (mDestination.hashCode() * 41)
449 + (mGateway == null ? 0 :mGateway.hashCode() * 47)
450 + (mInterface == null ? 0 :mInterface.hashCode() * 67)
/frameworks/base/core/java/android/nfc/cardemulation/
H A DApduServiceInfo.java394 public int hashCode() { method in class:ApduServiceInfo
395 return getComponent().hashCode();

Completed in 557 milliseconds

1234567891011