Searched defs:hashCode (Results 26 - 50 of 98) sorted by relevance

1234

/packages/apps/DeskClock/src/com/android/deskclock/provider/
H A DCity.java181 public int hashCode() { method in class:City
182 return mCityId.hashCode();
H A DAlarm.java336 public int hashCode() { method in class:Alarm
337 return Long.valueOf(id).hashCode();
/packages/apps/Gallery/src/com/android/camera/gallery/
H A DVideoObject.java60 public int hashCode() { method in class:VideoObject
61 return fullSizeImageUri().toString().hashCode();
/packages/apps/Gallery2/gallerycommon/src/com/android/gallery3d/common/
H A DFingerprint.java166 public int hashCode() { method in class:Fingerprint
167 return Arrays.hashCode(mMd5Digest);
/packages/apps/Gallery2/src/com/android/gallery3d/data/
H A DBucketHelper.java230 public int hashCode() { method in class:BucketHelper.BucketEntry
/packages/apps/Launcher2/src/com/android/launcher2/
H A DIconCache.java61 public int hashCode() { method in class:IconCache.CacheKey
62 return componentName.hashCode() + user.hashCode();
H A DPagedViewIconCache.java74 public int hashCode() { method in class:PagedViewIconCache.Key
75 return getComponentName().hashCode();
/packages/apps/QuickSearchBox/src/com/android/quicksearchbox/
H A DAbstractSource.java124 public int hashCode() { method in class:AbstractSource
125 return getName().hashCode();
/packages/apps/Settings/src/com/android/settings/bluetooth/
H A DBluetoothDevicePreference.java165 public int hashCode() { method in class:BluetoothDevicePreference
166 return mCachedDevice.hashCode();
/packages/apps/UnifiedEmail/src/com/android/emailcommon/service/
H A DSearchParams.java103 public int hashCode() { method in class:SearchParams
104 return Objects.hashCode(mMailboxId, mFilter, mStartDate, mEndDate, mLimit, mOffset);
/packages/apps/UnifiedEmail/src/com/android/mail/lib/html/parser/
H A DHTML.java141 public int hashCode() { method in class:HTML.Element
142 return this.name.hashCode();
233 public int hashCode() { method in class:HTML.Attribute
234 return this.name.hashCode();
/packages/apps/UnifiedEmail/src/com/android/mail/providers/
H A DConversationInfo.java148 public int hashCode() { method in class:ConversationInfo
149 return Objects.hashCode(messageCount, draftCount, participantInfos, firstSnippet,
/packages/apps/UnifiedEmail/src/com/google/android/mail/common/html/parser/
H A DHTML.java142 public int hashCode() { method in class:HTML.Element
143 return this.name.hashCode();
234 public int hashCode() { method in class:HTML.Attribute
235 return this.name.hashCode();
/packages/apps/VoiceDialer/src/com/android/voicedialer/
H A DVoiceContact.java81 public int hashCode() { method in class:VoiceContact
91 return mName.hashCode() + hash;
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/
H A DKeyboardTheme.java91 public int hashCode() { method in class:KeyboardTheme
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/internal/
H A DMoreKeySpec.java78 public int hashCode() { method in class:MoreKeySpec
79 int hashCode = 1;
80 hashCode = 31 + mCode;
81 hashCode = hashCode * 31 + mIconId;
82 hashCode = hashCode * 31 + (mLabel == null ? 0 : mLabel.hashCode());
83 hashCode = hashCode * 3
[all...]
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/makedict/
H A DWordProperty.java110 return Arrays.hashCode(new Object[] {
113 word.mShortcutTargets.hashCode(),
114 word.mBigrams.hashCode(),
151 public int hashCode() { method in class:WordProperty
/packages/providers/DownloadProvider/src/com/android/providers/downloads/
H A DStorageUtils.java246 public int hashCode() { method in class:StorageUtils.ConcreteFile
/packages/apps/Bluetooth/src/com/android/bluetooth/gatt/
H A DScanFilterQueue.java64 public int hashCode() { method in class:ScanFilterQueue.Entry
/packages/apps/Calendar/src/com/android/calendar/alerts/
H A DGlobalDismissManager.java94 public int hashCode() { method in class:GlobalDismissManager.GlobalDismissId
95 int result = mAccountName.hashCode();
96 result = 31 * result + mSyncId.hashCode();
150 public int hashCode() { method in class:GlobalDismissManager.LocalDismissId
151 int result = mAccountType.hashCode();
152 result = 31 * result + mAccountName.hashCode();
/packages/apps/Calendar/src/com/android/calendar/widget/
H A DCalendarAppWidgetModel.java122 public int hashCode() { method in class:CalendarAppWidgetModel.EventInfo
129 result = prime * result + ((title == null) ? 0 : title.hashCode());
133 result = prime * result + ((when == null) ? 0 : when.hashCode());
134 result = prime * result + ((where == null) ? 0 : where.hashCode());
214 public int hashCode() { method in class:CalendarAppWidgetModel.DayInfo
217 result = prime * result + ((mDayLabel == null) ? 0 : mDayLabel.hashCode());
/packages/apps/ContactsCommon/src/com/android/contacts/common/list/
H A DContactListFilter.java125 public int hashCode() { method in class:ContactListFilter
128 code = code * 31 + accountType.hashCode();
129 code = code * 31 + accountName.hashCode();
132 code = code * 31 + dataSet.hashCode();
/packages/apps/ContactsCommon/src/com/android/contacts/common/model/
H A DRawContact.java108 public int hashCode() { method in class:RawContact.NamedDataItem
109 return Objects.hashCode(mUri, mContentValues);
350 public int hashCode() { method in class:RawContact
351 return Objects.hashCode(mValues, mDataItems);
/packages/apps/Email/emailcommon/src/com/android/emailcommon/provider/
H A DCredential.java155 public int hashCode() { method in class:Credential
156 return Objects.hashCode(mAccessToken, mRefreshToken, mExpiration);
/packages/apps/Email/src/com/android/email/
H A DAttachmentInfo.java228 public int hashCode() { method in class:AttachmentInfo

Completed in 473 milliseconds

1234