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

1234567891011>>

/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/makedict/
H A DNgramProperty.java31 public int hashCode() { method in class:NgramProperty
32 return mTargetWord.hashCode() ^ mNgramContext.hashCode();
H A DWeightedString.java51 public int hashCode() { method in class:WeightedString
52 return Arrays.hashCode(new Object[] { mWord, mProbabilityInfo});
H A DProbabilityInfo.java64 public int hashCode() { method in class:ProbabilityInfo
66 return Arrays.hashCode(new Object[] { mProbability, mTimestamp, mLevel, mCount });
68 return Arrays.hashCode(new Object[] { mProbability });
/packages/inputmethods/LatinIME/tools/dicttool/compat/android/util/
H A DPair.java31 public int hashCode() { method in class:Pair
32 return (mFirst == null ? 0 : mFirst.hashCode())
33 ^ (mSecond == null ? 0 : mSecond.hashCode());
/packages/apps/Dialer/java/com/android/dialer/app/contactinfo/
H A DNumberWithCountryIso.java51 public int hashCode() { method in class:NumberWithCountryIso
52 int numberHashCode = number == null ? 0 : number.hashCode();
53 int countryHashCode = countryIso == null ? 0 : countryIso.hashCode();
/packages/apps/TV/src/com/android/tv/data/epg/
H A DAutoValue_EpgReader_EpgChannel.java76 public int hashCode() { method in class:AutoValue_EpgReader_EpgChannel
79 h ^= this.channel.hashCode();
81 h ^= this.epgChannelId.hashCode();
/packages/apps/Settings/tests/robotests/src/com/android/settings/testutils/shadow/
H A DSettingsShadowBluetoothDevice.java41 public int hashCode() { method in class:SettingsShadowBluetoothDevice
42 return mAddress.hashCode();
/packages/apps/TV/partner_support/src/com/google/android/tv/partner/support/
H A DAutoValue_Lineup.java101 public int hashCode() { method in class:AutoValue_Lineup
104 h$ ^= id.hashCode();
108 h$ ^= (name == null) ? 0 : name.hashCode();
110 h$ ^= channels.hashCode();
H A DAutoValue_EpgInput.java86 public int hashCode() { method in class:AutoValue_EpgInput
91 h$ ^= inputId.hashCode();
93 h$ ^= lineupId.hashCode();
/packages/apps/UnifiedEmail/src/com/android/mail/utils/
H A DVeiledAddressMatcher.java103 final int hashCode = pattern.hashCode();
104 if (hashCode != mProfilePatternLastHash) {
105 mProfilePatternLastHash = hashCode;
H A DFolderUri.java60 public int hashCode() { method in class:FolderUri
61 return getComparisonUri().hashCode();
/packages/providers/ContactsProvider/src/com/android/providers/contacts/aggregation/util/
H A DCommonNicknameCache.java80 int hashCode = normalizedName.hashCode();
81 mNicknameBloomFilter.set(hashCode & NICKNAME_BLOOM_FILTER_SIZE);
99 int hashCode = normalizedName.hashCode();
100 if (!mNicknameBloomFilter.get(hashCode & NICKNAME_BLOOM_FILTER_SIZE)) {
/packages/apps/QuickSearchBox/src/com/android/quicksearchbox/
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...]
/packages/apps/Camera2/src/com/android/camera/one/v2/camera2proxy/
H A DCaptureRequestProxy.java56 public int hashCode() { method in class:CaptureRequestProxy
57 return mRequest.hashCode();
/packages/apps/Car/Launcher/src/com/android/car/carlauncher/
H A DAppMetaData.java78 public int hashCode() { method in class:AppMetaData
79 return mPackageName.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();
/packages/apps/Launcher3/src/com/android/launcher3/util/
H A DComponentKey.java36 mHashCode = Arrays.hashCode(new Object[] {componentName, user});
41 public int hashCode() { method in class:ComponentKey
/packages/apps/TV/common/src/com/android/tv/common/feature/
H A DGServiceFeature.java41 return "GService[hash=" + mKey.hashCode() + "]";
/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.java62 return (accountTypeWithDataSet.hashCode() ^ accountName.hashCode()) & 0xFFF;
123 int hashCode = 0;
133 hashCode = 0;
139 hashCode = hashCode * 10 + (c - '0');
247 segment.accountHashCode = hashCode;
/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/apps/Bluetooth/src/com/android/bluetooth/pbapclient/
H A DPhonebookEntry.java53 public int hashCode() { method in class:PhonebookEntry.Name
54 int result = 23 * (family == null ? 0 : family.hashCode());
55 result = 23 * result + (given == null ? 0 : given.hashCode());
56 result = 23 * result + (middle == null ? 0 : middle.hashCode());
57 result = 23 * result + (prefix == null ? 0 : prefix.hashCode());
58 result = 23 * result + (suffix == null ? 0 : suffix.hashCode());
96 public int hashCode() { method in class:PhonebookEntry.Phone
97 return 23 * type + number.hashCode();
153 public int hashCode() { method in class:PhonebookEntry
154 return name.hashCode()
[all...]
/packages/apps/Settings/src/com/android/settings/location/
H A DInjectedSetting.java123 public int hashCode() { method in class:InjectedSetting
124 int result = packageName.hashCode();
125 result = 31 * result + className.hashCode();
126 result = 31 * result + title.hashCode();
128 result = 31 * result + (mUserHandle == null ? 0 : mUserHandle.hashCode());
129 result = 31 * result + settingsActivity.hashCode();
130 result = 31 * result + (userRestriction == null ? 0 : userRestriction.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/Dialer/java/com/android/contacts/common/model/account/
H A DAccountTypeWithDataSet.java94 public int hashCode() { method in class:AccountTypeWithDataSet
95 return (accountType == null ? 0 : accountType.hashCode())
96 ^ (dataSet == null ? 0 : dataSet.hashCode());

Completed in 5203 milliseconds

1234567891011>>