Searched defs:mHashCode (Results 1 - 12 of 12) sorted by relevance

/frameworks/base/core/java/android/security/net/config/
H A DPin.java26 private final int mHashCode; field in class:Pin
31 mHashCode = Arrays.hashCode(digest) ^ digestAlgorithm.hashCode();
55 return mHashCode;
67 if (other.hashCode() != mHashCode) {
/frameworks/base/location/java/android/location/
H A DCountry.java61 private int mHashCode; field in class:Country
176 int hash = mHashCode;
181 mHashCode = hash;
183 return mHashCode;
/frameworks/base/media/java/android/media/tv/
H A DTvContentRating.java783 private final int mHashCode; field in class:TvContentRating
865 mHashCode = 31 * Objects.hash(mDomain, mRating) + Arrays.hashCode(mSubRatings);
964 if (mHashCode != other.mHashCode) {
981 return mHashCode;
/frameworks/base/packages/SystemUI/src/com/android/systemui/util/leak/
H A DWeakIdentityHashMap.java72 private final int mHashCode; field in class:WeakIdentityHashMap.CmpWeakReference
76 mHashCode = System.identityHashCode(key);
81 mHashCode = System.identityHashCode(key);
98 return mHashCode;
/frameworks/base/core/java/android/content/pm/
H A DSignature.java43 private int mHashCode; field in class:Signature
218 return mHashCode;
220 mHashCode = Arrays.hashCode(mSignature);
222 return mHashCode;
/frameworks/base/core/java/android/hardware/camera2/params/
H A DTonemapCurve.java277 return mHashCode;
280 mHashCode = HashCodeHelpers.hashCodeGeneric(mRed, mGreen, mBlue);
283 return mHashCode;
349 private int mHashCode; field in class:TonemapCurve
/frameworks/base/core/java/android/text/style/
H A DSuggestionSpan.java100 private final int mHashCode; field in class:SuggestionSpan
167 mHashCode = hashCodeInternal(mSuggestions, mLanguageTag, mLocaleStringForCompatibility,
216 mHashCode = src.readInt();
297 dest.writeInt(mHashCode);
319 return ((SuggestionSpan)o).hashCode() == mHashCode;
326 return mHashCode;
/frameworks/base/packages/SystemUI/shared/src/com/android/systemui/shared/recents/model/
H A DTask.java66 private int mHashCode; field in class:Task.TaskKey
108 return mHashCode;
118 mHashCode = Objects.hash(id, windowingMode, userId);
/frameworks/base/core/java/android/view/inputmethod/
H A DCursorAnchorInfo.java43 private final int mHashCode; field in class:CursorAnchorInfo
132 mHashCode = source.readInt();
154 dest.writeInt(mHashCode);
170 return mHashCode;
240 return "CursorAnchorInfo{mHashCode=" + mHashCode
438 mHashCode = hash;
/frameworks/base/core/java/android/content/res/
H A DResources.java1697 private int mHashCode = 0; field in class:Resources.ThemeKey
1712 mHashCode = 31 * (31 * mHashCode + resId) + (force ? 1 : 0);
1728 return mHashCode;
1765 other.mHashCode = mHashCode;
/frameworks/opt/vcard/java/com/android/vcard/
H A DVCardEntry.java983 private Integer mHashCode = null; field in class:VCardEntry.PhotoData
1026 if (mHashCode != null) {
1027 return mHashCode;
1039 mHashCode = hash;
/frameworks/base/core/java/android/content/
H A DIntent.java9450 private final int mHashCode; field in class:Intent.FilterComparison
9454 mHashCode = intent.filterHashCode();
9477 return mHashCode;

Completed in 820 milliseconds