/packages/apps/ThemePicker/src/com/android/customization/module/ |
D | StatsLogUserEventLogger.java | 57 collectionId.hashCode(), 0, 0, 0); in logActionClicked() 63 collectionId.hashCode(), 0, 0); in logIndividualWallpaperSelected() 70 collectionId.hashCode(), in logCategorySelected() 78 collectionId.hashCode(), in logWallpaperSet() 79 wallpaperId != null ? wallpaperId.hashCode() : 0, in logWallpaperSet() 92 Objects.hashCode(getThemePackage(theme, OVERLAY_CATEGORY_COLOR)), in logThemeSelected() 93 Objects.hashCode(getThemePackage(theme,OVERLAY_CATEGORY_FONT)), in logThemeSelected() 94 Objects.hashCode(getThemePackage(theme, OVERLAY_CATEGORY_SHAPE)), in logThemeSelected() 101 Objects.hashCode(getThemePackage(theme, OVERLAY_CATEGORY_COLOR)), in logThemeApplied() 102 Objects.hashCode(getThemePackage(theme,OVERLAY_CATEGORY_FONT)), in logThemeApplied() [all …]
|
/packages/apps/QuickSearchBox/src/com/android/quicksearchbox/ |
D | SuggestionData.java | 221 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 …]
|
D | Suggestions.java | 95 Log.d(TAG, "addResults["+ hashCode() + "] source:" + in addResults() 137 if (DBG) Log.d(TAG, "close() [" + hashCode() + "]"); in close() 189 return "Suggestions@" + hashCode() + "{source=" + mSource in toString()
|
/packages/apps/Bluetooth/src/com/android/bluetooth/pbapclient/ |
D | PhonebookEntry.java | 53 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/ |
D | MoreKeySpec.java | 88 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/ |
D | ContactLookupKey.java | 62 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()
|
D | AccountWithDataSet.java | 80 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/ |
D | CommonNicknameCache.java | 80 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/services/BuiltInPrintService/src/com/android/bips/discovery/ |
D | DiscoveredPrinter.java | 178 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/Bluetooth/src/com/android/bluetooth/map/ |
D | BluetoothMapAccountItem.java | 141 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/ |
D | SliceDataTest.java | 235 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/WallpaperPicker2/src/com/android/wallpaper/asset/ |
D | ResourceAsset.java | 73 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/services/Car/car-lib/src/android/car/content/pm/ |
D | AppBlockingPackageInfo.java | 160 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/ |
D | NgramProperty.java | 31 public int hashCode() { in hashCode() method in NgramProperty 32 return mTargetWord.hashCode() ^ mNgramContext.hashCode(); in hashCode()
|
D | ProbabilityInfo.java | 64 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/ |
D | Pair.java | 31 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/ |
D | NumberWithCountryIso.java | 51 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/ |
D | CalendarAppWidgetModel.java | 122 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/modules/IPsec/tests/iketests/src/java/com/android/internal/net/utils/ |
D | LogTest.java | 37 assertEquals(Integer.toString(PII.hashCode()), result); in testPii() 40 assertEquals(Integer.toString(PII.hashCode()), result); in testPii() 43 assertEquals(Integer.toString(PII.hashCode()), result); in testPii()
|
/packages/apps/WallpaperPicker2/src/com/android/wallpaper/model/ |
D | Category.java | 147 public int hashCode() { in hashCode() method in Category 148 return mCollectionId == null ? super.hashCode() : mCollectionId.hashCode(); in hashCode()
|
/packages/apps/Dialer/java/com/android/contacts/common/model/account/ |
D | AccountWithDataSet.java | 213 public int hashCode() { in hashCode() method in AccountWithDataSet 215 result = 31 * result + (name != null ? name.hashCode() : 0); in hashCode() 216 result = 31 * result + (type != null ? type.hashCode() : 0); in hashCode() 217 result = 31 * result + (dataSet != null ? dataSet.hashCode() : 0); in hashCode()
|
D | AccountTypeWithDataSet.java | 94 public int hashCode() { in hashCode() method in AccountTypeWithDataSet 95 return (accountType == null ? 0 : accountType.hashCode()) in hashCode() 96 ^ (dataSet == null ? 0 : dataSet.hashCode()); in hashCode()
|
/packages/modules/IPsec/tests/iketests/src/java/com/android/internal/net/eap/message/ |
D | EapDataTest.java | 83 assertNotEquals(0, eapData.hashCode()); in testHashCode() 84 assertEquals(eapData.hashCode(), eapDataCopy.hashCode()); in testHashCode()
|
/packages/apps/WallpaperPicker2/tests/src/com/android/wallpaper/testing/ |
D | TestWallpaperPreferences.java | 181 public void setHomeWallpaperHashCode(long hashCode) { in setHomeWallpaperHashCode() argument 182 mHomeScreenBitmapHashCode = hashCode; in setHomeWallpaperHashCode() 288 public void setLockWallpaperHashCode(long hashCode) { in setLockWallpaperHashCode() argument 289 mLockScreenBitmapHashCode = hashCode; in setLockWallpaperHashCode()
|
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/ |
D | NgramContext.java | 82 public int hashCode() { in hashCode() method in NgramContext.WordInfo 83 return Arrays.hashCode(new Object[] { mWord, mIsBeginningOfSentence } ); in hashCode() 227 public int hashCode() { in hashCode() method in NgramContext 233 hashValue ^= wordInfo.hashCode(); in hashCode()
|