Searched defs:hashCode (Results 1 - 25 of 64) sorted by relevance

123

/packages/apps/Exchange/exchange2/src/com/android/exchange/
H A DMeetingResponseRequest.java37 public int hashCode() { method in class:MeetingResponseRequest
H A DMessageMoveRequest.java37 public int hashCode() { method in class:MessageMoveRequest
H A DRequest.java35 public abstract int hashCode(); method in class:Request
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 DAbstractSource.java124 public int hashCode() { method in class:AbstractSource
125 return getName().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());
H A DAccountWithDataSet.java123 public int hashCode() { method in class:AccountWithDataSet
124 return 31 * super.hashCode()
125 + (dataSet == null ? 0 : dataSet.hashCode());
/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/Gallery2/src/com/android/gallery3d/data/
H A DDownloadEntry.java37 public long hashCode; field in class:DownloadEntry
63 .append("hash_code: ").append(hashCode).append(", ")
H A DBucketHelper.java230 public int hashCode() { method in class:BucketHelper.BucketEntry
/packages/apps/Nfc/tests/src/com/android/nfc/snep/
H A DSnepValidationServerTests.java104 public int hashCode() { method in class:SnepValidationServerTests.ByteArrayWrapper
105 return Arrays.hashCode(data);
/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);
/packages/apps/CellBroadcastReceiver/src/com/android/cellbroadcastreceiver/
H A DCellBroadcastAlertService.java71 public int hashCode() { method in class:CellBroadcastAlertService.MessageIdAndScope
72 return mMessageId * 31 + mLocation.hashCode();
/packages/apps/Email/emailcommon/src/com/android/emailcommon/mail/
H A DAddress.java195 public int hashCode() { method in class:Address
196 return getAddress().hashCode();
/packages/apps/Email/emailcommon/src/com/android/emailcommon/provider/
H A DQuickResponse.java179 public int hashCode() { method in class:QuickResponse
180 return Objects.hashCode(mId, mText, mAccountKey);
/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/Email/src/com/android/email/
H A DMessageListContext.java147 public int hashCode() { method in class:MessageListContext
148 return Objects.hashCode(mAccountId, mMailboxId, mSearchParams);
/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/Launcher2/src/com/android/launcher2/
H A DPagedViewIconCache.java74 public int hashCode() { method in class:PagedViewIconCache.Key
75 return getComponentName().hashCode();
/packages/apps/Settings/src/com/android/settings/bluetooth/
H A DBluetoothDevicePreference.java158 public int hashCode() { method in class:BluetoothDevicePreference
159 return mCachedDevice.hashCode();
/packages/apps/VideoEditor/src/com/android/videoeditor/service/
H A DMovieEffect.java185 public int hashCode() { method in class:MovieEffect
186 return mUniqueId.hashCode();

Completed in 321 milliseconds

123