/frameworks/base/core/java/android/security/net/config/ |
D | Pin.java | 26 private final int mHashCode; field in Pin 31 mHashCode = Arrays.hashCode(digest) ^ digestAlgorithm.hashCode(); in Pin() 55 return mHashCode; in hashCode() 67 if (other.hashCode() != mHashCode) { in equals()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/util/leak/ |
D | WeakIdentityHashMap.java | 72 private final int mHashCode; field in WeakIdentityHashMap.CmpWeakReference 76 mHashCode = System.identityHashCode(key); in CmpWeakReference() 81 mHashCode = System.identityHashCode(key); in CmpWeakReference() 98 return mHashCode; in hashCode()
|
/frameworks/base/location/java/android/location/ |
D | Country.java | 62 private int mHashCode; field in Country 180 int hash = mHashCode; in hashCode() 185 mHashCode = hash; in hashCode() 187 return mHashCode; in hashCode()
|
/frameworks/base/media/java/android/media/tv/ |
D | TvContentRating.java | 783 private final int mHashCode; field in TvContentRating 865 mHashCode = 31 * Objects.hash(mDomain, mRating) + Arrays.hashCode(mSubRatings); in TvContentRating() 964 if (mHashCode != other.mHashCode) { in equals() 981 return mHashCode; in hashCode()
|
/frameworks/base/core/java/android/text/style/ |
D | SuggestionSpan.java | 126 private final int mHashCode; field in SuggestionSpan 185 mHashCode = hashCodeInternal(mSuggestions, mLanguageTag, mLocaleStringForCompatibility); in SuggestionSpan() 231 mHashCode = src.readInt(); in SuggestionSpan() 309 dest.writeInt(mHashCode); in writeToParcelInternal() 331 return ((SuggestionSpan)o).hashCode() == mHashCode; in equals() 338 return mHashCode; in hashCode()
|
/frameworks/base/core/java/android/hardware/camera2/params/ |
D | TonemapCurve.java | 275 return mHashCode; in hashCode() 278 mHashCode = HashCodeHelpers.hashCodeGeneric(mRed, mGreen, mBlue); in hashCode() 281 return mHashCode; in hashCode() 347 private int mHashCode; field in TonemapCurve
|
/frameworks/base/core/java/android/view/inputmethod/ |
D | CursorAnchorInfo.java | 44 private final int mHashCode; field in CursorAnchorInfo 133 mHashCode = source.readInt(); in CursorAnchorInfo() 155 dest.writeInt(mHashCode); in writeToParcel() 171 return mHashCode; in hashCode() 241 return "CursorAnchorInfo{mHashCode=" + mHashCode in toString() 456 mHashCode = hashCode; in CursorAnchorInfo()
|
/frameworks/base/core/java/android/content/pm/ |
D | Signature.java | 44 private int mHashCode; field in Signature 250 return mHashCode; in hashCode() 252 mHashCode = Arrays.hashCode(mSignature); in hashCode() 254 return mHashCode; in hashCode()
|
/frameworks/base/packages/SystemUI/shared/src/com/android/systemui/shared/recents/model/ |
D | Task.java | 76 private int mHashCode; field in Task.TaskKey 147 return mHashCode; in hashCode() 157 mHashCode = Objects.hash(id, windowingMode, userId); in updateHashCode()
|
/frameworks/base/core/java/android/content/res/ |
D | Resources.java | 1803 private int mHashCode = 0; field in Resources.ThemeKey 1818 mHashCode = 31 * (31 * mHashCode + resId) + (force ? 1 : 0); in append() 1834 return mHashCode; in hashCode() 1871 other.mHashCode = mHashCode; in clone()
|
/frameworks/base/services/core/java/com/android/server/power/batterysaver/ |
D | BatterySaverPolicy.java | 573 private final int mHashCode; field in BatterySaverPolicy.Policy 625 mHashCode = Objects.hash( in Policy() 804 return mHashCode; in hashCode()
|
/frameworks/opt/vcard/java/com/android/vcard/ |
D | VCardEntry.java | 983 private Integer mHashCode = null; field in VCardEntry.PhotoData 1026 if (mHashCode != null) { in hashCode() 1027 return mHashCode; in hashCode() 1039 mHashCode = hash; in hashCode()
|
/frameworks/base/services/core/java/com/android/server/job/controllers/ |
D | QuotaController.java | 1504 private final int mHashCode; field in QuotaController.TimingSession 1515 mHashCode = hashCode; in TimingSession() 1538 return mHashCode; in hashCode()
|
/frameworks/base/core/java/android/content/ |
D | Intent.java | 9952 private final int mHashCode; field in Intent.FilterComparison 9956 mHashCode = intent.filterHashCode(); in FilterComparison() 9979 return mHashCode; in hashCode()
|