Searched refs:hashCode (Results 26 - 50 of 391) sorted by relevance

1234567891011>>

/frameworks/base/media/java/android/media/
H A DAudioHandle.java46 public int hashCode() { method in class:AudioHandle
/frameworks/base/opengl/java/com/google/android/gles_jni/
H A DEGLDisplayImpl.java40 public int hashCode() { method in class:EGLDisplayImpl
H A DEGLContextImpl.java47 public int hashCode() { method in class:EGLContextImpl
H A DEGLSurfaceImpl.java45 public int hashCode() { method in class:EGLSurfaceImpl
/frameworks/base/sax/java/android/sax/
H A DChildren.java31 int hash = uri.hashCode() * 31 + localName.hashCode();
66 int hash = uri.hashCode() * 31 + localName.hashCode();
/frameworks/base/core/java/android/accounts/
H A DAccount.java25 * {@link Parcelable} and also overrides {@link #equals} and {@link #hashCode}, making it
39 public int hashCode() { method in class:Account
41 result = 31 * result + name.hashCode();
42 result = 31 * result + type.hashCode();
/frameworks/base/core/java/android/content/res/
H A DResourcesKey.java42 hash = 31 * hash + (mResDir == null ? 0 : mResDir.hashCode());
44 hash = 31 * hash + mOverrideConfiguration.hashCode();
54 public int hashCode() { method in class:ResourcesKey
/frameworks/base/core/java/android/view/
H A DDisplayAdjustments.java75 public int hashCode() { method in class:DisplayAdjustments
77 hash = hash * 31 + mCompatInfo.hashCode();
79 hash = hash * 31 + (mConfiguration == null ? 0 : mConfiguration.hashCode());
/frameworks/base/keystore/java/android/security/keystore/
H A DAndroidKeyStoreKey.java57 public int hashCode() { method in class:AndroidKeyStoreKey
60 result = prime * result + ((mAlgorithm == null) ? 0 : mAlgorithm.hashCode());
61 result = prime * result + ((mAlias == null) ? 0 : mAlias.hashCode());
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/anqp/eap/
H A DCredential.java49 public int hashCode() { method in class:Credential
50 return mAuthInfoID.hashCode() * 31 + mCredType.hashCode();
/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()));
/frameworks/base/telecomm/java/android/telecom/
H A DDisconnectCause.java209 public int hashCode() { method in class:DisconnectCause
210 return Objects.hashCode(mDisconnectCode)
211 + Objects.hashCode(mDisconnectLabel)
212 + Objects.hashCode(mDisconnectDescription)
213 + Objects.hashCode(mDisconnectReason)
214 + Objects.hashCode(mToneToPlay);
H A DStatusHints.java151 public int hashCode() { method in class:StatusHints
152 return Objects.hashCode(mLabel) + Objects.hashCode(mIcon) + Objects.hashCode(mExtras);
/frameworks/base/telephony/java/android/telephony/
H A DPreciseDataConnectionState.java190 public int hashCode() { method in class:PreciseDataConnectionState
195 result = prime * result + ((mAPNType == null) ? 0 : mAPNType.hashCode());
196 result = prime * result + ((mAPN == null) ? 0 : mAPN.hashCode());
197 result = prime * result + ((mReason == null) ? 0 : mReason.hashCode());
198 result = prime * result + ((mLinkProperties == null) ? 0 : mLinkProperties.hashCode());
199 result = prime * result + ((mFailCause == null) ? 0 : mFailCause.hashCode());
H A DCellInfoCdma.java68 public int hashCode() { method in class:CellInfoCdma
69 return super.hashCode() + mCellIdentityCdma.hashCode() + mCellSignalStrengthCdma.hashCode();
H A DCellInfoGsm.java68 public int hashCode() { method in class:CellInfoGsm
69 return super.hashCode() + mCellIdentityGsm.hashCode() + mCellSignalStrengthGsm.hashCode();
H A DCellInfoLte.java72 public int hashCode() { method in class:CellInfoLte
73 return super.hashCode() + mCellIdentityLte.hashCode() + mCellSignalStrengthLte.hashCode();
H A DCellInfoWcdma.java68 public int hashCode() { method in class:CellInfoWcdma
69 return super.hashCode() + mCellIdentityWcdma.hashCode() + mCellSignalStrengthWcdma.hashCode();
/frameworks/base/packages/StatementService/src/com/android/statementservice/retriever/
H A DRelation.java109 // equals() and hashCode() are generated by Android Studio.
132 public int hashCode() { method in class:Relation
133 int result = mKind != null ? mKind.hashCode() : 0;
134 result = 31 * result + (mDetail != null ? mDetail.hashCode() : 0);
/frameworks/base/tools/layoutlib/create/src/com/android/tools/layoutlib/java/
H A DObjects.java83 * Convenience wrapper for {@link Arrays#hashCode}, adding varargs.
88 return Arrays.hashCode(values);
92 * Returns 0 for null or {@code o.hashCode()}.
94 public static int hashCode(Object o) { method in class:Objects
95 return (o == null) ? 0 : o.hashCode();
/frameworks/base/core/java/android/content/pm/
H A DKeySet.java58 public int hashCode() { method in class:KeySet
59 return token.hashCode();
H A DPackageCleanItem.java51 public int hashCode() { method in class:PackageCleanItem
54 result = 31 * result + packageName.hashCode();
/frameworks/base/core/java/android/hardware/camera2/params/
H A DBlackLevelPattern.java123 public int hashCode() { method in class:BlackLevelPattern
124 return Arrays.hashCode(mCfaOffsets);
H A DHighSpeedVideoConfiguration.java161 public int hashCode() { method in class:HighSpeedVideoConfiguration
162 return HashCodeHelpers.hashCode(mWidth, mHeight, mFpsMin, mFpsMax);
H A DStreamConfiguration.java163 public int hashCode() { method in class:StreamConfiguration
164 return HashCodeHelpers.hashCode(mFormat, mWidth, mHeight, mInput ? 1 : 0);

Completed in 1095 milliseconds

1234567891011>>