/packages/apps/DeskClock/src/com/android/deskclock/alarms/ |
D | AlarmNotifications.java | 51 PendingIntent viewIntent = PendingIntent.getActivity(context, instance.hashCode(), in registerNextAlarmWithAlarmManager() 80 notification.setDeleteIntent(PendingIntent.getBroadcast(context, instance.hashCode(), in showLowPriorityNotification() 88 PendingIntent.getBroadcast(context, instance.hashCode(), in showLowPriorityNotification() 93 notification.setContentIntent(PendingIntent.getActivity(context, instance.hashCode(), in showLowPriorityNotification() 96 nm.cancel(instance.hashCode()); in showLowPriorityNotification() 97 nm.notify(instance.hashCode(), notification.build()); in showLowPriorityNotification() 120 PendingIntent.getBroadcast(context, instance.hashCode(), in showHighPriorityNotification() 125 notification.setContentIntent(PendingIntent.getActivity(context, instance.hashCode(), in showHighPriorityNotification() 128 nm.cancel(instance.hashCode()); in showHighPriorityNotification() 129 nm.notify(instance.hashCode(), notification.build()); in showHighPriorityNotification() [all …]
|
/packages/apps/Calendar/src/com/android/calendar/ |
D | CalendarEventModel.java | 50 public int hashCode() { in hashCode() method in CalendarEventModel.Attendee 51 return (mEmail == null) ? 0 : mEmail.hashCode(); in hashCode() 138 public int hashCode() { in hashCode() method in CalendarEventModel.ReminderEntry 482 public int hashCode() { in hashCode() method in CalendarEventModel 486 result = prime * result + ((mAttendeesList == null) ? 0 : getAttendeesString().hashCode()); in hashCode() 488 result = prime * result + ((mDescription == null) ? 0 : mDescription.hashCode()); in hashCode() 489 result = prime * result + ((mDuration == null) ? 0 : mDuration.hashCode()); in hashCode() 502 result = prime * result + ((mLocation == null) ? 0 : mLocation.hashCode()); in hashCode() 503 result = prime * result + ((mOrganizer == null) ? 0 : mOrganizer.hashCode()); in hashCode() 504 result = prime * result + ((mOriginalAllDay == null) ? 0 : mOriginalAllDay.hashCode()); in hashCode() [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 …]
|
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/internal/ |
D | MoreKeySpec.java | 78 public int hashCode() { in hashCode() method in MoreKeySpec 79 int hashCode = 1; in hashCode() local 80 hashCode = 31 + mCode; in hashCode() 81 hashCode = hashCode * 31 + mIconId; in hashCode() 82 hashCode = hashCode * 31 + (mLabel == null ? 0 : mLabel.hashCode()); in hashCode() 83 hashCode = hashCode * 31 + (mOutputText == null ? 0 : mOutputText.hashCode()); in hashCode() 84 return hashCode; in hashCode()
|
/packages/apps/Settings/src/com/android/settings/inputmethod/ |
D | InputMethodAndSubtypeUtil.java | 97 private static void putSelectedInputMethodSubtype(ContentResolver resolver, int hashCode) { in putSelectedInputMethodSubtype() argument 98 Settings.Secure.putInt(resolver, Settings.Secure.SELECTED_INPUT_METHOD_SUBTYPE, hashCode); in putSelectedInputMethodSubtype() 197 final String subtypeHashCodeStr = String.valueOf(subtype.hashCode()); in saveInputMethodSubtypeList() 215 if (selectedInputMethodSubtype == subtype.hashCode()) { in saveInputMethodSubtypeList() 321 .findPreference(id + subtype.hashCode()); in setSubtypesPreferenceEnabled() 344 final String hashCode = String.valueOf(subtype.hashCode()); in updateSubtypesPreferenceChecked() local 346 Log.d(TAG, "--- Set checked state: " + "id" + ", " + hashCode + ", " in updateSubtypesPreferenceChecked() 347 + enabledSubtypesSet.contains(hashCode)); in updateSubtypesPreferenceChecked() 350 .findPreference(id + hashCode); in updateSubtypesPreferenceChecked() 352 pref.setChecked(enabledSubtypesSet.contains(hashCode)); in updateSubtypesPreferenceChecked()
|
/packages/providers/ContactsProvider/src/com/android/providers/contacts/ |
D | ContactLookupKey.java | 64 return (accountTypeWithDataSet.hashCode() ^ accountName.hashCode()) & 0xFFF; in getAccountHashCode() 125 int hashCode = 0; in parse() local 135 hashCode = 0; in parse() 141 hashCode = hashCode * 10 + (c - '0'); in parse() 246 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/apps/InCallUI/src/com/android/incallui/ |
D | InCallAnimationUtils.java | 123 + "(" + Integer.toHexString(from.hashCode()) + " -> " in startCrossFade() 124 + Integer.toHexString(to.hashCode()) + ")"); in startCrossFade() 136 + Integer.toHexString(from.hashCode()) + " -> " in startCrossFade() 137 + Integer.toHexString(to.hashCode()) + ")"); in startCrossFade() 145 + Integer.toHexString(from.hashCode()) + " -> " in startCrossFade() 146 + Integer.toHexString(to.hashCode()) + ")"); in startCrossFade()
|
/packages/providers/ContactsProvider/src/com/android/providers/contacts/aggregation/util/ |
D | CommonNicknameCache.java | 79 int hashCode = normalizedName.hashCode(); in preloadNicknameBloomFilter() local 80 mNicknameBloomFilter.set(hashCode & NICKNAME_BLOOM_FILTER_SIZE); in preloadNicknameBloomFilter() 95 int hashCode = normalizedName.hashCode(); in getCommonNicknameClusters() local 96 if (!mNicknameBloomFilter.get(hashCode & NICKNAME_BLOOM_FILTER_SIZE)) { in getCommonNicknameClusters()
|
/packages/apps/UnifiedEmail/src/com/android/mail/providers/ |
D | Attachment.java | 594 public int hashCode() { in hashCode() method in Attachment 595 int result = partId != null ? partId.hashCode() : 0; in hashCode() 596 result = 31 * result + (name != null ? name.hashCode() : 0); in hashCode() 598 result = 31 * result + (uri != null ? uri.hashCode() : 0); in hashCode() 599 result = 31 * result + (contentType != null ? contentType.hashCode() : 0); in hashCode() 603 result = 31 * result + (contentUri != null ? contentUri.hashCode() : 0); in hashCode() 604 result = 31 * result + (thumbnailUri != null ? thumbnailUri.hashCode() : 0); in hashCode() 605 result = 31 * result + (previewIntentUri != null ? previewIntentUri.hashCode() : 0); in hashCode() 607 result = 31 * result + (providerData != null ? providerData.hashCode() : 0); in hashCode()
|
/packages/apps/Email/emailcommon/src/com/android/emailcommon/provider/ |
D | HostAuth.java | 509 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/Settings/src/com/android/settings/location/ |
D | InjectedSetting.java | 120 public int hashCode() { in hashCode() method in InjectedSetting 121 int result = packageName.hashCode(); in hashCode() 122 result = 31 * result + className.hashCode(); in hashCode() 123 result = 31 * result + title.hashCode(); in hashCode() 125 result = 31 * result + settingsActivity.hashCode(); in hashCode()
|
/packages/apps/UnifiedEmail/src/com/android/mail/bitmap/ |
D | ContactRequest.java | 73 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/apps/UnifiedEmail/src/com/android/mail/providers/protos/mock/ |
D | MockUiProvider.java | 93 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/Bluetooth/src/com/android/bluetooth/map/ |
D | BluetoothMapEmailSettingsItem.java | 84 public int hashCode() { in hashCode() method in BluetoothMapEmailSettingsItem 87 result = prime * result + ((mId == null) ? 0 : mId.hashCode()); in hashCode() 88 result = prime * result + ((mName == null) ? 0 : mName.hashCode()); in hashCode() 90 + ((mPackageName == null) ? 0 : mPackageName.hashCode()); in hashCode() 92 + ((mProviderAuthority == null) ? 0 : mProviderAuthority.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/apps/Calendar/src/com/android/calendar/alerts/ |
D | GlobalDismissManager.java | 94 public int hashCode() { in hashCode() method in GlobalDismissManager.GlobalDismissId 95 int result = mAccountName.hashCode(); in hashCode() 96 result = 31 * result + mSyncId.hashCode(); in hashCode() 150 public int hashCode() { in hashCode() method in GlobalDismissManager.LocalDismissId 151 int result = mAccountType.hashCode(); in hashCode() 152 result = 31 * result + mAccountName.hashCode(); in hashCode()
|
/packages/apps/UnifiedEmail/src/com/android/mail/utils/ |
D | VeiledAddressMatcher.java | 103 final int hashCode = pattern.hashCode(); in loadPattern() local 104 if (hashCode != mProfilePatternLastHash) { in loadPattern() 105 mProfilePatternLastHash = hashCode; in loadPattern()
|
/packages/apps/UnifiedEmail/src/com/android/mail/lib/html/parser/ |
D | HTML.java | 141 public int hashCode() { in hashCode() method in HTML.Element 142 return this.name.hashCode(); in hashCode() 233 public int hashCode() { in hashCode() method in HTML.Attribute 234 return this.name.hashCode(); in hashCode()
|
/packages/apps/UnifiedEmail/src/com/google/android/mail/common/html/parser/ |
D | HTML.java | 142 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/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/ |
D | PrevWordsInfo.java | 65 public int hashCode() { in hashCode() method in PrevWordsInfo.WordInfo 66 return Arrays.hashCode(new Object[] { mWord, mIsBeginningOfSentence } ); in hashCode() 133 public int hashCode() { in hashCode() method in PrevWordsInfo 134 return Arrays.hashCode(mPrevWordsInfo); in hashCode()
|
/packages/apps/UnifiedEmail/src/com/android/mail/browse/ |
D | MessageCursor.java | 138 int hashCode = 17; in getStateHashCode() local 142 hashCode = 31 * hashCode + getMessage().getStateHashCode(); in getStateHashCode() 144 return hashCode; in getStateHashCode()
|
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/makedict/ |
D | WordProperty.java | 110 return Arrays.hashCode(new Object[] { in computeHashCode() 113 word.mShortcutTargets.hashCode(), in computeHashCode() 114 word.mBigrams.hashCode(), in computeHashCode() 151 public int hashCode() { in hashCode() method in WordProperty
|
/packages/apps/ContactsCommon/src/com/android/contacts/common/list/ |
D | ContactListFilter.java | 125 public int hashCode() { in hashCode() method in ContactListFilter 128 code = code * 31 + accountType.hashCode(); in hashCode() 129 code = code * 31 + accountName.hashCode(); in hashCode() 132 code = code * 31 + dataSet.hashCode(); in hashCode()
|
/packages/apps/Dialer/src/com/android/dialer/calllog/ |
D | CallLogAdapter.java | 127 public int hashCode() { in hashCode() method in CallLogAdapter.NumberWithCountryIso 128 return (number == null ? 0 : number.hashCode()) in hashCode() 129 ^ (countryIso == null ? 0 : countryIso.hashCode()); in hashCode() 217 public int hashCode() { in hashCode() method in CallLogAdapter.ContactInfoRequest 220 result = prime * result + ((callLogInfo == null) ? 0 : callLogInfo.hashCode()); in hashCode() 221 result = prime * result + ((countryIso == null) ? 0 : countryIso.hashCode()); in hashCode() 222 result = prime * result + ((number == null) ? 0 : number.hashCode()); in hashCode()
|