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

1234

/packages/inputmethods/LatinIME/tools/dicttool/compat/android/util/
H A DPair.java31 public int hashCode() { method in class:Pair
32 return Arrays.hashCode(new Object[] { mFirst, mSecond });
/packages/apps/Bluetooth/src/com/android/bluetooth/gatt/
H A DAdvertiseClient.java73 public int hashCode() { method in class:AdvertiseClient
H A DScanClient.java86 public int hashCode() { method in class:ScanClient
/packages/apps/Settings/src/com/android/settings/location/
H A DInjectedSetting.java120 public int hashCode() { method in class:InjectedSetting
121 int result = packageName.hashCode();
122 result = 31 * result + className.hashCode();
123 result = 31 * result + title.hashCode();
125 result = 31 * result + settingsActivity.hashCode();
/packages/apps/UnifiedEmail/src/com/android/mail/utils/
H A DFolderUri.java60 public int hashCode() { method in class:FolderUri
61 return getComparisonUri().hashCode();
/packages/experimental/TestBack/src/foo/bar/testback/
H A DFoo.java8 public int hashCode() { method in class:Foo
11 result = prime * result + ((mValue == null) ? 0 : mValue.hashCode());
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/makedict/
H A DWeightedString.java51 public int hashCode() { method in class:WeightedString
52 return Arrays.hashCode(new Object[] { mWord, mProbabilityInfo});
H A DProbabilityInfo.java67 public int hashCode() { method in class:ProbabilityInfo
69 return Arrays.hashCode(new Object[] { mProbability, mTimestamp, mLevel, mCount });
71 return Arrays.hashCode(new Object[] { mProbability });
/packages/apps/ContactsCommon/src/com/android/contacts/common/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/apps/Gallery2/src/com/android/gallery3d/ingest/data/
H A DDateBucket.java33 public int hashCode() { method in class:DateBucket
34 return date.hashCode();
H A DIngestObjectInfo.java78 public int hashCode() { method in class:IngestObjectInfo
H A DSimpleDate.java59 public int hashCode() { method in class:SimpleDate
/packages/apps/Launcher3/src/com/android/launcher3/compat/
H A DUserHandleCompat.java77 public int hashCode() { method in class:UserHandleCompat
79 return mUser.hashCode();
/packages/apps/UnifiedEmail/src/com/android/mail/providers/
H A DParticipantInfo.java54 public int hashCode() { method in class:ParticipantInfo
55 return Objects.hashCode(name, email, priority, readConversation);
H A DFolderList.java92 public int hashCode() { method in class:FolderList
93 return folders.hashCode();
/packages/apps/Dialer/src/com/android/dialer/calllog/
H A DContactInfo.java51 public int hashCode() { method in class:ContactInfo
57 result = prime * result + ((lookupUri == null) ? 0 : lookupUri.hashCode());
58 result = prime * result + ((name == null) ? 0 : name.hashCode());
/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/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/apps/UnifiedEmail/src/com/android/mail/bitmap/
H A DContactRequest.java73 public int hashCode() { method in class:ContactRequest
76 return mEmail != null ? mEmail.hashCode() : 0;
148 public int hashCode() { method in class:ContactRequest.ContactRequestHolder
149 int result = contactRequest != null ? contactRequest.hashCode() : 0;
150 result = 31 * result + (destination != null ? destination.hashCode() : 0);
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
H A DPrevWordsInfo.java65 public int hashCode() { method in class:PrevWordsInfo.WordInfo
66 return Arrays.hashCode(new Object[] { mWord, mIsBeginningOfSentence } );
133 public int hashCode() { method in class:PrevWordsInfo
134 return Arrays.hashCode(mPrevWordsInfo);
/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/providers/TvProvider/tests/src/com/android/providers/tv/
H A DEpgDataCleanupServiceTests.java109 public int hashCode() { method in class:EpgDataCleanupServiceTests.Program
/packages/apps/Bluetooth/src/com/android/bluetooth/map/
H A DBluetoothMapEmailSettingsItem.java84 public int hashCode() { method in class:BluetoothMapEmailSettingsItem
87 result = prime * result + ((mId == null) ? 0 : mId.hashCode());
88 result = prime * result + ((mName == null) ? 0 : mName.hashCode());
90 + ((mPackageName == null) ? 0 : mPackageName.hashCode());
92 + ((mProviderAuthority == null) ? 0 : mProviderAuthority.hashCode());
/packages/apps/CellBroadcastReceiver/src/com/android/cellbroadcastreceiver/
H A DCellBroadcastAlertService.java74 public int hashCode() { method in class:CellBroadcastAlertService.MessageServiceCategoryAndScope
75 return mLocation.hashCode() + 5 * mServiceCategory + 7 * mSerialNumber;

Completed in 2239 milliseconds

1234