Searched refs:hashCode (Results 176 - 200 of 391) sorted by relevance

1234567891011>>

/frameworks/support/v7/appcompat/src/android/support/v7/internal/widget/
H A DTintManager.java559 int hashCode = 1;
560 hashCode = 31 * hashCode + color;
561 hashCode = 31 * hashCode + mode.hashCode();
562 return hashCode;
/frameworks/base/core/java/android/net/
H A DLinkProperties.java1096 public int hashCode() { method in class:LinkProperties
1097 return ((null == mIfaceName) ? 0 : mIfaceName.hashCode()
1100 + ((null == mDomains) ? 0 : mDomains.hashCode())
1102 + ((null == mHttpProxy) ? 0 : mHttpProxy.hashCode())
1103 + mStackedLinks.hashCode() * 47)
1105 + ((null == mTcpBufferSizes) ? 0 : mTcpBufferSizes.hashCode());
H A DRssiCurve.java186 public int hashCode() { method in class:RssiCurve
/frameworks/base/wifi/java/android/net/wifi/passpoint/
H A DWifiPasspointCredential.java645 public int hashCode() { method in class:WifiPasspointCredential
648 hash += mType.hashCode();
651 hash += mRealm.hashCode();
654 hash += mHomeSpFqdn.hashCode();
657 hash += mUsername.hashCode();
660 hash += mPasswd.hashCode();
/frameworks/base/core/java/android/view/textservice/
H A DSpellCheckerSession.java287 + " session.hashCode()=#" + Integer.toHexString(session.hashCode())
344 + " session" + (mISpellCheckerSession != null ? ".hashCode()=#"
345 + Integer.toHexString(mISpellCheckerSession.hashCode()) : "=null")
407 Log.d(TAG, "processed onServiceConnected: mISpellCheckerSession.hashCode()=#"
408 + Integer.toHexString(mISpellCheckerSession.hashCode())
/frameworks/base/core/java/android/bluetooth/le/
H A DScanResult.java127 public int hashCode() { method in class:ScanResult
/frameworks/base/core/java/android/content/pm/
H A DVerifierDeviceIdentity.java189 public int hashCode() { method in class:VerifierDeviceIdentity
H A DSignature.java216 public int hashCode() { method in class:Signature
220 mHashCode = Arrays.hashCode(mSignature);
/frameworks/base/core/java/android/hardware/display/
H A DDisplayManagerInternal.java269 public int hashCode() { method in class:DisplayManagerInternal.DisplayPowerRequest
/frameworks/base/core/java/android/util/
H A DDisplayMetrics.java312 public int hashCode() { method in class:DisplayMetrics
/frameworks/base/core/java/android/view/
H A DViewTreeObserver.java272 public int hashCode() { method in class:ViewTreeObserver.InternalInsetsInfo
273 int result = contentInsets.hashCode();
274 result = 31 * result + visibleInsets.hashCode();
275 result = 31 * result + touchableRegion.hashCode();
/frameworks/base/location/java/android/location/
H A DGeofence.java147 public int hashCode() { method in class:Geofence
/frameworks/base/media/java/android/media/
H A DAudioFocusInfo.java123 public int hashCode() { method in class:AudioFocusInfo
/frameworks/base/media/java/android/media/audiopolicy/
H A DAudioMix.java155 public int hashCode() { method in class:AudioMix
/frameworks/base/telephony/java/android/telephony/
H A DCellIdentityGsm.java117 public int hashCode() { method in class:CellIdentityGsm
H A DCellIdentityWcdma.java122 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 DCellSignalStrengthWcdma.java158 public int hashCode() { method in class:CellSignalStrengthWcdma
H A DPreciseCallState.java267 public int hashCode() { method in class:PreciseCallState
/frameworks/base/telephony/java/android/telephony/cdma/
H A DCdmaCellLocation.java159 public int hashCode() { method in class:CdmaCellLocation
/frameworks/support/v4/java/android/support/v4/util/
H A DSimpleArrayMap.java283 return key == null ? indexOfNull() : indexOf(key, key.hashCode());
380 hash = key.hashCode();
568 public int hashCode() { method in class:SimpleArrayMap
574 result += hashes[i] ^ (value == null ? 0 : value.hashCode());
/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/hardware/usb/
H A DUsbDevice.java267 public int hashCode() { method in class:UsbDevice
268 return mName.hashCode();
/frameworks/base/core/java/android/net/nsd/
H A DDnsSdTxtRecord.java298 public int hashCode() { method in class:DnsSdTxtRecord
299 return Arrays.hashCode(mData);

Completed in 7335 milliseconds

1234567891011>>