/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/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/internal/ |
D | MoreKeySpec.java | 52 public int hashCode() { in hashCode() method in MoreKeySpec 53 int hashCode = 1; in hashCode() local 54 hashCode = 31 + mCode; in hashCode() 55 hashCode = hashCode * 31 + mIconId; in hashCode() 56 hashCode = hashCode * 31 + (mLabel == null ? 0 : mLabel.hashCode()); in hashCode() 57 hashCode = hashCode * 31 + (mOutputText == null ? 0 : mOutputText.hashCode()); in hashCode() 58 return hashCode; in hashCode()
|
/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 | 82 Log.d(TAG, "new Suggestions [" + hashCode() + "] query \"" + query in Suggestions() 201 Log.d(TAG, "addCorpusResult["+ hashCode() + "] corpus:" + in addCorpusResults() 254 if (DBG) Log.d(TAG, "close() [" + hashCode() + "]"); in close() 361 return "Suggestions@" + hashCode() + "{expectedCorpora=" + mExpectedCorpora in toString()
|
/packages/apps/Settings/src/com/android/settings/inputmethod/ |
D | InputMethodAndSubtypeUtil.java | 108 private static void putSelectedInputMethodSubtype(ContentResolver resolver, int hashCode) { in putSelectedInputMethodSubtype() argument 109 Settings.Secure.putInt(resolver, Settings.Secure.SELECTED_INPUT_METHOD_SUBTYPE, hashCode); in putSelectedInputMethodSubtype() 214 final String subtypeHashCodeStr = String.valueOf(subtype.hashCode()); in saveInputMethodSubtypeList() 230 if (selectedInputMethodSubtype == subtype.hashCode()) { in saveInputMethodSubtypeList() 337 id + subtype.hashCode()); in setSubtypesPreferenceEnabled() 357 String hashCode = String.valueOf(subtype.hashCode()); in updateSubtypesPreferenceChecked() local 359 Log.d(TAG, "--- Set checked state: " + "id" + ", " + hashCode + ", " in updateSubtypesPreferenceChecked() 360 + enabledSubtypesSet.contains(hashCode)); in updateSubtypesPreferenceChecked() 363 id + hashCode); in updateSubtypesPreferenceChecked() 365 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/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/Phone/src/com/android/phone/ |
D | AnimationUtils.java | 221 + "(" + Integer.toHexString(from.hashCode()) + " -> " in startCrossFade() 222 + Integer.toHexString(to.hashCode()) + ")"); in startCrossFade() 234 + Integer.toHexString(from.hashCode()) + " -> " in startCrossFade() 235 + Integer.toHexString(to.hashCode()) + ")"); in startCrossFade() 243 + Integer.toHexString(from.hashCode()) + " -> " in startCrossFade() 244 + Integer.toHexString(to.hashCode()) + ")"); in startCrossFade()
|
/packages/apps/Email/emailcommon/src/com/android/emailcommon/provider/ |
D | HostAuth.java | 385 public int hashCode() { in hashCode() method in HostAuth 386 int hashCode = 29; in hashCode() local 388 hashCode += mPassword.hashCode(); in hashCode() 391 hashCode += (mClientCertAlias.hashCode() << 8); in hashCode() 393 return (hashCode << 8) + mFlags; 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/Dialer/src/com/android/dialer/calllog/ |
D | CallLogAdapter.java | 81 public int hashCode() { in hashCode() method in CallLogAdapter.NumberWithCountryIso 82 return (number == null ? 0 : number.hashCode()) in hashCode() 83 ^ (countryIso == null ? 0 : countryIso.hashCode()); in hashCode() 141 public int hashCode() { in hashCode() method in CallLogAdapter.ContactInfoRequest 144 result = prime * result + ((callLogInfo == null) ? 0 : callLogInfo.hashCode()); in hashCode() 145 result = prime * result + ((countryIso == null) ? 0 : countryIso.hashCode()); in hashCode() 146 result = prime * result + ((number == null) ? 0 : number.hashCode()); in hashCode()
|
D | ContactInfo.java | 43 public int hashCode() { in hashCode() method in ContactInfo 49 result = prime * result + ((lookupUri == null) ? 0 : lookupUri.hashCode()); in hashCode() 50 result = prime * result + ((name == null) ? 0 : name.hashCode()); in hashCode()
|
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/makedict/ |
D | Word.java | 52 return Arrays.hashCode(new Object[] { in computeHashCode() 55 word.mShortcutTargets.hashCode(), in computeHashCode() 56 word.mBigrams.hashCode(), in computeHashCode() 94 public int hashCode() { in hashCode() method in Word
|
/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/Contacts/src/com/android/contacts/model/ |
D | RawContact.java | 108 public int hashCode() { in hashCode() method in RawContact.NamedDataItem 109 return Objects.hashCode(mUri, mContentValues); in hashCode() 365 public int hashCode() { in hashCode() method in RawContact 366 return Objects.hashCode(mValues, mDataItems); in hashCode()
|
/packages/apps/ContactsCommon/src/com/android/contacts/common/model/account/ |
D | AccountTypeWithDataSet.java | 90 public int hashCode() { in hashCode() method in AccountTypeWithDataSet 91 return (accountType == null ? 0 : accountType.hashCode()) in hashCode() 92 ^ (dataSet == null ? 0 : dataSet.hashCode()); in hashCode()
|
D | AccountWithDataSet.java | 123 public int hashCode() { in hashCode() method in AccountWithDataSet 124 return 31 * super.hashCode() in hashCode() 125 + (dataSet == null ? 0 : dataSet.hashCode()); in hashCode()
|
/packages/providers/CalendarProvider/src/com/android/providers/calendar/ |
D | CalendarDatabaseHelper.java | 1036 CalendarCache.KEY_TIMEZONE_DATABASE_VERSION.hashCode() + "," + in initCalendarCacheTable() 1048 CalendarCache.KEY_TIMEZONE_TYPE.hashCode() + "," + in updateCalendarCacheTable() 1060 CalendarCache.KEY_TIMEZONE_INSTANCES.hashCode() + "," + in updateCalendarCacheTable() 1070 CalendarCache.KEY_TIMEZONE_INSTANCES_PREVIOUS.hashCode() + "," + in updateCalendarCacheTable() 1085 "timezoneDatabaseVersion".hashCode() + "," + in initCalendarCacheTable203() 1095 "timezoneType".hashCode() + "," + in updateCalendarCacheTableTo203() 1105 "timezoneInstances".hashCode() + "," + in updateCalendarCacheTableTo203() 1113 "timezoneInstancesPrevious".hashCode() + "," + in updateCalendarCacheTableTo203()
|
/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/imageshow/ |
D | GeometryMetadata.java | 220 public int hashCode() { in hashCode() method in GeometryMetadata 225 result = 31 * result + mFlip.hashCode(); in hashCode() 226 result = 31 * result + mCropBounds.hashCode(); in hashCode() 227 result = 31 * result + mPhotoBounds.hashCode(); in hashCode()
|
/packages/apps/Settings/src/com/android/settings/widget/ |
D | ChartDataUsageView.java | 468 public int hashCode() { in hashCode() method in ChartDataUsageView.TimeAxis 469 return Objects.hashCode(mMin, mMax, mSize); in hashCode() 550 public int hashCode() { in hashCode() method in ChartDataUsageView.DataAxis 551 return Objects.hashCode(mMin, mMax, mSize); in hashCode()
|
/packages/apps/Mms/src/com/android/mms/data/ |
D | Conversation.java | 693 public synchronized int hashCode() { in hashCode() method in Conversation 694 return mRecipients.hashCode(); in hashCode() 998 Log.d(TAG, "Conversation.Cache.put: conv= " + c + ", hash: " + c.hashCode()); in put() 1024 LogTag.debug("Conversation.Cache.put: conv= " + c + ", hash: " + c.hashCode()); in replace() 1063 LogTag.debug(" conv: " + c.toString() + " hash: " + c.hashCode()); in dumpCache()
|
/packages/apps/Gallery2/gallerycommon/src/com/android/gallery3d/common/ |
D | FileCache.java | 105 entry.hashCode = Utils.crc64Long(downloadUrl); in store() 262 public long hashCode; field in FileCache.FileEntry 279 .append("hash_code: ").append(hashCode).append(", ") in toString()
|
/packages/apps/Gallery2/src/com/android/gallery3d/ingest/ |
D | MtpDeviceIndex.java | 66 public int hashCode() { in hashCode() method in MtpDeviceIndex 347 public int hashCode() { in hashCode() method in MtpDeviceIndex.DateBucket 348 return bucket.hashCode(); in hashCode()
|
/packages/apps/Settings/src/com/android/settings/wifi/ |
D | AccessPoint.java | 256 public int hashCode() { in hashCode() method in AccessPoint 258 if (mInfo != null) result += 13 * mInfo.hashCode(); in hashCode() 261 result += 29 * ssid.hashCode(); in hashCode()
|