Home
last modified time | relevance | path

Searched refs:hashCode (Results 1 – 25 of 340) sorted by relevance

12345678910>>...14

/packages/apps/ThemePicker/src/com/android/customization/module/
DStatsLogUserEventLogger.java55 StatsLogCompat.write(StyleEnums.WALLPAPER_EXPLORE, 0, 0, 0, 0, 0, collectionId.hashCode(), in logActionClicked()
62 collectionId.hashCode(), 0, 0); in logIndividualWallpaperSelected()
69 collectionId.hashCode(), in logCategorySelected()
77 collectionId.hashCode(), in logWallpaperSet()
90 Objects.hashCode(getThemePackage(theme, OVERLAY_CATEGORY_COLOR)), in logThemeSelected()
91 Objects.hashCode(getThemePackage(theme,OVERLAY_CATEGORY_FONT)), in logThemeSelected()
92 Objects.hashCode(getThemePackage(theme, OVERLAY_CATEGORY_SHAPE)), in logThemeSelected()
99 Objects.hashCode(getThemePackage(theme, OVERLAY_CATEGORY_COLOR)), in logThemeApplied()
100 Objects.hashCode(getThemePackage(theme,OVERLAY_CATEGORY_FONT)), in logThemeApplied()
101 Objects.hashCode(getThemePackage(theme, OVERLAY_CATEGORY_SHAPE)), in logThemeApplied()
[all …]
/packages/apps/QuickSearchBox/src/com/android/quicksearchbox/
DSuggestionData.java221 public int hashCode() { in hashCode() method in SuggestionData
224 result = prime * result + ((mFormat == null) ? 0 : mFormat.hashCode()); in hashCode()
225 result = prime * result + ((mIcon1 == null) ? 0 : mIcon1.hashCode()); in hashCode()
226 result = prime * result + ((mIcon2 == null) ? 0 : mIcon2.hashCode()); in hashCode()
227 result = prime * result + ((mIntentAction == null) ? 0 : mIntentAction.hashCode()); in hashCode()
228 result = prime * result + ((mIntentData == null) ? 0 : mIntentData.hashCode()); in hashCode()
229 result = prime * result + ((mIntentExtraData == null) ? 0 : mIntentExtraData.hashCode()); in hashCode()
230 result = prime * result + ((mLogType == null) ? 0 : mLogType.hashCode()); in hashCode()
231 result = prime * result + ((mShortcutId == null) ? 0 : mShortcutId.hashCode()); in hashCode()
232 result = prime * result + ((mSource == null) ? 0 : mSource.hashCode()); in hashCode()
[all …]
/packages/apps/Bluetooth/src/com/android/bluetooth/pbapclient/
DPhonebookEntry.java53 public int hashCode() { in hashCode() method in PhonebookEntry.Name
54 int result = 23 * (family == null ? 0 : family.hashCode()); in hashCode()
55 result = 23 * result + (given == null ? 0 : given.hashCode()); in hashCode()
56 result = 23 * result + (middle == null ? 0 : middle.hashCode()); in hashCode()
57 result = 23 * result + (prefix == null ? 0 : prefix.hashCode()); in hashCode()
58 result = 23 * result + (suffix == null ? 0 : suffix.hashCode()); in hashCode()
96 public int hashCode() { in hashCode() method in PhonebookEntry.Phone
97 return 23 * type + number.hashCode(); in hashCode()
153 public int hashCode() { in hashCode() method in PhonebookEntry
154 return name.hashCode() + 23 * phones.hashCode(); in hashCode()
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/internal/
DMoreKeySpec.java88 public int hashCode() { in hashCode() method in MoreKeySpec
89 int hashCode = 1; in hashCode() local
90 hashCode = 31 + mCode; in hashCode()
91 hashCode = hashCode * 31 + mIconId; in hashCode()
93 hashCode = hashCode * 31 + (label == null ? 0 : label.hashCode()); in hashCode()
95 hashCode = hashCode * 31 + (outputText == null ? 0 : outputText.hashCode()); in hashCode()
96 return hashCode; in hashCode()
/packages/providers/ContactsProvider/src/com/android/providers/contacts/
DContactLookupKey.java62 return (accountTypeWithDataSet.hashCode() ^ accountName.hashCode()) & 0xFFF; in getAccountHashCode()
123 int hashCode = 0; in parse() local
133 hashCode = 0; in parse()
139 hashCode = hashCode * 10 + (c - '0'); in parse()
247 segment.accountHashCode = hashCode; in parse()
DAccountWithDataSet.java80 public int hashCode() { in hashCode() method in AccountWithDataSet
81 int result = mAccountName != null ? mAccountName.hashCode() : 0; in hashCode()
82 result = 31 * result + (mAccountType != null ? mAccountType.hashCode() : 0); in hashCode()
83 result = 31 * result + (mDataSet != null ? mDataSet.hashCode() : 0); in hashCode()
/packages/providers/ContactsProvider/src/com/android/providers/contacts/aggregation/util/
DCommonNicknameCache.java80 int hashCode = normalizedName.hashCode(); in preloadNicknameBloomFilter() local
81 mNicknameBloomFilter.set(hashCode & NICKNAME_BLOOM_FILTER_SIZE); in preloadNicknameBloomFilter()
99 int hashCode = normalizedName.hashCode(); in getCommonNicknameClusters() local
100 if (!mNicknameBloomFilter.get(hashCode & NICKNAME_BLOOM_FILTER_SIZE)) { in getCommonNicknameClusters()
/packages/apps/UnifiedEmail/src/com/android/mail/bitmap/
DContactRequest.java73 public int hashCode() { in hashCode() method in ContactRequest
76 return mEmail != null ? mEmail.hashCode() : 0; in hashCode()
148 public int hashCode() { in hashCode() method in ContactRequest.ContactRequestHolder
149 int result = contactRequest != null ? contactRequest.hashCode() : 0; in hashCode()
150 result = 31 * result + (destination != null ? destination.hashCode() : 0); in hashCode()
/packages/services/BuiltInPrintService/src/com/android/bips/discovery/
DDiscoveredPrinter.java178 public int hashCode() { in hashCode() method in DiscoveredPrinter
180 result = 31 * result + name.hashCode(); in hashCode()
181 result = 31 * result + (uuid != null ? uuid.hashCode() : 0); in hashCode()
182 result = 31 * result + paths.hashCode(); in hashCode()
183 result = 31 * result + (location != null ? location.hashCode() : 0); in hashCode()
/packages/apps/UnifiedEmail/src/com/android/mail/utils/
DVeiledAddressMatcher.java103 final int hashCode = pattern.hashCode(); in loadPattern() local
104 if (hashCode != mProfilePatternLastHash) { in loadPattern()
105 mProfilePatternLastHash = hashCode; in loadPattern()
/packages/apps/Bluetooth/src/com/android/bluetooth/map/
DBluetoothMapAccountItem.java141 public int hashCode() { in hashCode() method in BluetoothMapAccountItem
144 result = prime * result + ((mId == null) ? 0 : mId.hashCode()); in hashCode()
145 result = prime * result + ((mName == null) ? 0 : mName.hashCode()); in hashCode()
146 result = prime * result + ((mPackageName == null) ? 0 : mPackageName.hashCode()); in hashCode()
148 prime * result + ((mProviderAuthority == null) ? 0 : mProviderAuthority.hashCode()); in hashCode()
/packages/apps/Settings/tests/robotests/src/com/android/settings/slices/
DSliceDataTest.java235 assertThat(dataOne.hashCode()).isEqualTo(dataTwo.hashCode()); in testEquality_identicalObjects()
263 assertThat(dataOne.hashCode()).isEqualTo(dataTwo.hashCode()); in testEquality_matchingKey_EqualObjects()
284 assertThat(dataOne.hashCode()).isNotEqualTo(dataTwo.hashCode()); in testEquality_differentKey_differentObjects()
/packages/apps/UnifiedEmail/src/com/google/android/mail/common/html/parser/
DHTML.java142 public int hashCode() { in hashCode() method in HTML.Element
143 return this.name.hashCode(); in hashCode()
234 public int hashCode() { in hashCode() method in HTML.Attribute
235 return this.name.hashCode(); in hashCode()
/packages/apps/WallpaperPicker2/src/com/android/wallpaper/asset/
DResourceAsset.java73 public int hashCode() { in hashCode() method in ResourceAsset
74 return getKey().hashCode(); in hashCode()
133 public int hashCode() { in hashCode() method in ResourceAsset.PackageResourceKey
134 return getCacheKey().hashCode(); in hashCode()
/packages/apps/Email/emailcommon/src/com/android/emailcommon/provider/
DHostAuth.java509 public int hashCode() { in hashCode() method in HostAuth
510 int hashCode = 29; in hashCode() local
512 hashCode += mPassword.hashCode(); in hashCode()
515 hashCode += (mClientCertAlias.hashCode() << 8); in hashCode()
517 return (hashCode << 8) + mFlags; in hashCode()
/packages/apps/UnifiedEmail/src/com/android/mail/providers/
DAttachment.java615 public int hashCode() { in hashCode() method in Attachment
616 int result = partId != null ? partId.hashCode() : 0; in hashCode()
617 result = 31 * result + (name != null ? name.hashCode() : 0); in hashCode()
619 result = 31 * result + (uri != null ? uri.hashCode() : 0); in hashCode()
620 result = 31 * result + (contentType != null ? contentType.hashCode() : 0); in hashCode()
624 result = 31 * result + (contentUri != null ? contentUri.hashCode() : 0); in hashCode()
625 result = 31 * result + (thumbnailUri != null ? thumbnailUri.hashCode() : 0); in hashCode()
626 result = 31 * result + (previewIntentUri != null ? previewIntentUri.hashCode() : 0); in hashCode()
628 result = 31 * result + (providerData != null ? providerData.hashCode() : 0); in hashCode()
/packages/apps/UnifiedEmail/src/com/android/mail/browse/
DMessageCursor.java138 int hashCode = 17; in getStateHashCode() local
142 hashCode = 31 * hashCode + getMessage().getStateHashCode(); in getStateHashCode()
144 return hashCode; in getStateHashCode()
/packages/services/Car/car-lib/src/android/car/content/pm/
DAppBlockingPackageInfo.java160 public int hashCode() { in hashCode() method in AppBlockingPackageInfo
163 result = prime * result + Arrays.hashCode(activities); in hashCode()
167 result = prime * result + ((packageName == null) ? 0 : packageName.hashCode()); in hashCode()
168 result = prime * result + Arrays.hashCode(signatures); in hashCode()
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/makedict/
DNgramProperty.java31 public int hashCode() { in hashCode() method in NgramProperty
32 return mTargetWord.hashCode() ^ mNgramContext.hashCode(); in hashCode()
DProbabilityInfo.java64 public int hashCode() { in hashCode() method in ProbabilityInfo
66 return Arrays.hashCode(new Object[] { mProbability, mTimestamp, mLevel, mCount }); in hashCode()
68 return Arrays.hashCode(new Object[] { mProbability }); in hashCode()
/packages/inputmethods/LatinIME/tools/dicttool/compat/android/util/
DPair.java31 public int hashCode() { in hashCode() method in Pair
32 return (mFirst == null ? 0 : mFirst.hashCode()) in hashCode()
33 ^ (mSecond == null ? 0 : mSecond.hashCode()); in hashCode()
/packages/apps/Dialer/java/com/android/dialer/app/contactinfo/
DNumberWithCountryIso.java51 public int hashCode() { in hashCode() method in NumberWithCountryIso
52 int numberHashCode = number == null ? 0 : number.hashCode(); in hashCode()
53 int countryHashCode = countryIso == null ? 0 : countryIso.hashCode(); in hashCode()
/packages/apps/Calendar/src/com/android/calendar/widget/
DCalendarAppWidgetModel.java122 public int hashCode() { in hashCode() method in CalendarAppWidgetModel.EventInfo
129 result = prime * result + ((title == null) ? 0 : title.hashCode()); in hashCode()
133 result = prime * result + ((when == null) ? 0 : when.hashCode()); in hashCode()
134 result = prime * result + ((where == null) ? 0 : where.hashCode()); in hashCode()
214 public int hashCode() { in hashCode() method in CalendarAppWidgetModel.DayInfo
217 result = prime * result + ((mDayLabel == null) ? 0 : mDayLabel.hashCode()); in hashCode()
/packages/apps/UnifiedEmail/src/com/android/mail/providers/protos/mock/
DMockUiProvider.java93 conversations.add(createConversationDetailsMap(accountId, name.hashCode(), in initializeAccount()
100 createMessageDetailsMap(accountId, "zeroConv0".hashCode(), "zeroConv0", 1, false); in initializeAccount()
107 createMessageDetailsMap(accountId, "zeroConv1".hashCode(), "zeroConv1", 1, false); in initializeAccount()
110 createMessageDetailsMap(accountId, "zeroConv1a".hashCode(), "zeroConv1a", 2, false); in initializeAccount()
139 createConversationDetailsMap(accountId, "zeroConv3".hashCode(), "zeroConv3", in initializeAccount()
144 createConversationDetailsMap(accountId, "zeroConv4".hashCode(), "zeroConv4", in initializeAccount()
152 createMessageDetailsMap(accountId, "zeroConv3".hashCode(), "zeroConv3", 0, true); in initializeAccount()
157 createMessageDetailsMap(accountId, "zeroConv4".hashCode(), "zeroConv4", 0, true); in initializeAccount()
/packages/apps/WallpaperPicker2/src/com/android/wallpaper/model/
DCategory.java147 public int hashCode() { in hashCode() method in Category
148 return mCollectionId == null ? super.hashCode() : mCollectionId.hashCode(); in hashCode()

12345678910>>...14