Searched refs:hashCode (Results 1 - 25 of 86) sorted by relevance

1234

/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/internal/
H A DMoreKeySpec.java52 public int hashCode() { method in class:MoreKeySpec
53 int hashCode = 1;
54 hashCode = 31 + mCode;
55 hashCode = hashCode * 31 + mIconId;
56 hashCode = hashCode * 31 + (mLabel == null ? 0 : mLabel.hashCode());
57 hashCode = hashCode * 3
[all...]
/packages/apps/Exchange/exchange2/src/com/android/exchange/
H A DRequest.java35 public abstract int hashCode(); method in class:Request
H A DMeetingResponseRequest.java37 public int hashCode() { method in class:MeetingResponseRequest
H A DMessageMoveRequest.java37 public int hashCode() { method in class:MessageMoveRequest
H A DPartRequest.java48 public int hashCode() { method in class:PartRequest
/packages/apps/QuickSearchBox/src/com/android/quicksearchbox/
H A DAbstractCorpus.java63 public int hashCode() { method in class:AbstractCorpus
64 return getName().hashCode();
H A DSuggestionData.java221 public int hashCode() { method in class:SuggestionData
224 result = prime * result + ((mFormat == null) ? 0 : mFormat.hashCode());
225 result = prime * result + ((mIcon1 == null) ? 0 : mIcon1.hashCode());
226 result = prime * result + ((mIcon2 == null) ? 0 : mIcon2.hashCode());
227 result = prime * result + ((mIntentAction == null) ? 0 : mIntentAction.hashCode());
228 result = prime * result + ((mIntentData == null) ? 0 : mIntentData.hashCode());
229 result = prime * result + ((mIntentExtraData == null) ? 0 : mIntentExtraData.hashCode());
230 result = prime * result + ((mLogType == null) ? 0 : mLogType.hashCode());
231 result = prime * result + ((mShortcutId == null) ? 0 : mShortcutId.hashCode());
232 result = prime * result + ((mSource == null) ? 0 : mSource.hashCode());
[all...]
H A DAbstractSource.java124 public int hashCode() { method in class:AbstractSource
125 return getName().hashCode();
H A DSuggestions.java82 Log.d(TAG, "new Suggestions [" + hashCode() + "] query \"" + query
201 Log.d(TAG, "addCorpusResult["+ hashCode() + "] corpus:" +
254 if (DBG) Log.d(TAG, "close() [" + hashCode() + "]");
361 return "Suggestions@" + hashCode() + "{expectedCorpora=" + mExpectedCorpora
/packages/providers/ContactsProvider/src/com/android/providers/contacts/aggregation/util/
H A DCommonNicknameCache.java79 int hashCode = normalizedName.hashCode();
80 mNicknameBloomFilter.set(hashCode & NICKNAME_BLOOM_FILTER_SIZE);
95 int hashCode = normalizedName.hashCode();
96 if (!mNicknameBloomFilter.get(hashCode & NICKNAME_BLOOM_FILTER_SIZE)) {
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/makedict/
H A DWord.java52 return Arrays.hashCode(new Object[] {
55 word.mShortcutTargets.hashCode(),
56 word.mBigrams.hashCode(),
94 public int hashCode() { method in class:Word
/packages/providers/ContactsProvider/src/com/android/providers/contacts/
H A DAccountWithDataSet.java80 public int hashCode() { method in class:AccountWithDataSet
81 int result = mAccountName != null ? mAccountName.hashCode() : 0;
82 result = 31 * result + (mAccountType != null ? mAccountType.hashCode() : 0);
83 result = 31 * result + (mDataSet != null ? mDataSet.hashCode() : 0);
H A DContactLookupKey.java64 return (accountTypeWithDataSet.hashCode() ^ accountName.hashCode()) & 0xFFF;
125 int hashCode = 0;
135 hashCode = 0;
141 hashCode = hashCode * 10 + (c - '0');
246 segment.accountHashCode = hashCode;
/packages/apps/Contacts/src/com/android/contacts/calllog/
H A DContactInfo.java43 public int hashCode() { method in class:ContactInfo
49 result = prime * result + ((lookupUri == null) ? 0 : lookupUri.hashCode());
50 result = prime * result + ((name == null) ? 0 : name.hashCode());
/packages/apps/Contacts/src/com/android/contacts/model/account/
H A DAccountTypeWithDataSet.java90 public int hashCode() { method in class:AccountTypeWithDataSet
91 return (accountType == null ? 0 : accountType.hashCode())
92 ^ (dataSet == null ? 0 : dataSet.hashCode());
/packages/apps/Calendar/src/com/android/calendar/
H A DCalendarEventModel.java49 public int hashCode() { method in class:CalendarEventModel.Attendee
50 return (mEmail == null) ? 0 : mEmail.hashCode();
137 public int hashCode() { method in class:CalendarEventModel.ReminderEntry
467 public int hashCode() { method in class:CalendarEventModel
471 result = prime * result + ((mAttendeesList == null) ? 0 : getAttendeesString().hashCode());
473 result = prime * result + ((mDescription == null) ? 0 : mDescription.hashCode());
474 result = prime * result + ((mDuration == null) ? 0 : mDuration.hashCode());
487 result = prime * result + ((mLocation == null) ? 0 : mLocation.hashCode());
488 result = prime * result + ((mOrganizer == null) ? 0 : mOrganizer.hashCode());
489 result = prime * result + ((mOriginalAllDay == null) ? 0 : mOriginalAllDay.hashCode());
[all...]
/packages/apps/Gallery2/src/com/android/gallery3d/data/
H A DDownloadEntry.java37 public long hashCode; field in class:DownloadEntry
63 .append("hash_code: ").append(hashCode).append(", ")
/packages/apps/Settings/src/com/android/settings/inputmethod/
H A DInputMethodAndSubtypeUtil.java108 private static void putSelectedInputMethodSubtype(ContentResolver resolver, int hashCode) { argument
109 Settings.Secure.putInt(resolver, Settings.Secure.SELECTED_INPUT_METHOD_SUBTYPE, hashCode);
214 final String subtypeHashCodeStr = String.valueOf(subtype.hashCode());
221 // Because of system change, hashCode value could have been changed.
230 if (selectedInputMethodSubtype == subtype.hashCode()) {
337 id + subtype.hashCode());
357 String hashCode = String.valueOf(subtype.hashCode());
359 Log.d(TAG, "--- Set checked state: " + "id" + ", " + hashCode + ", "
360 + enabledSubtypesSet.contains(hashCode));
[all...]
/packages/apps/Email/emailcommon/src/com/android/emailcommon/service/
H A DSearchParams.java85 public int hashCode() { method in class:SearchParams
86 return Objects.hashCode(mMailboxId, mFilter, mOffset);
/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/QuickSearchBox/tests/src/com/android/quicksearchbox/
H A DMockCorpus.java114 public int hashCode() { method in class:MockCorpus
115 return mName.hashCode();
/packages/apps/VideoEditor/src/com/android/videoeditor/service/
H A DMovieEffect.java185 public int hashCode() { method in class:MovieEffect
186 return mUniqueId.hashCode();
/packages/apps/Phone/src/com/android/phone/
H A DAnimationUtils.java221 + "(" + Integer.toHexString(from.hashCode()) + " -> "
222 + Integer.toHexString(to.hashCode()) + ")");
234 + Integer.toHexString(from.hashCode()) + " -> "
235 + Integer.toHexString(to.hashCode()) + ")");
243 + Integer.toHexString(from.hashCode()) + " -> "
244 + Integer.toHexString(to.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/Contacts/src/com/android/contacts/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();

Completed in 540 milliseconds

1234