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

123456

/packages/experimental/TestBack/src/foo/bar/testback/
H A DFoo.java8 public int hashCode() { method in class:Foo
11 result = prime * result + ((mValue == null) ? 0 : mValue.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/apps/DeskClock/src/com/android/deskclock/alarms/
H A DAlarmNotifications.java51 PendingIntent viewIntent = PendingIntent.getActivity(context, instance.hashCode(),
80 notification.setDeleteIntent(PendingIntent.getBroadcast(context, instance.hashCode(),
88 PendingIntent.getBroadcast(context, instance.hashCode(),
93 notification.setContentIntent(PendingIntent.getActivity(context, instance.hashCode(),
96 nm.cancel(instance.hashCode());
97 nm.notify(instance.hashCode(), notification.build());
120 PendingIntent.getBroadcast(context, instance.hashCode(),
125 notification.setContentIntent(PendingIntent.getActivity(context, instance.hashCode(),
128 nm.cancel(instance.hashCode());
129 nm.notify(instance.hashCode(), notificatio
[all...]
/packages/providers/ContactsProvider/src/com/android/providers/contacts/aggregation/util/
H A DCommonNicknameCache.java79 int hashCode = normalizedName.hashCode();
80 mNicknameBloomFilter.set(hashCode & NICKNAME_BLOOM_FILTER_SIZE);
95 int hashCode = normalizedName.hashCode();
96 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...]
H A DSuggestions.java95 Log.d(TAG, "addResults["+ hashCode() + "] source:" +
137 if (DBG) Log.d(TAG, "close() [" + hashCode() + "]");
189 return "Suggestions@" + hashCode() + "{source=" + mSource
/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/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/makedict/
H A DWeightedString.java51 public int hashCode() { method in class:WeightedString
52 return Arrays.hashCode(new Object[] { mWord, mProbabilityInfo});
H A DProbabilityInfo.java67 public int hashCode() { method in class:ProbabilityInfo
69 return Arrays.hashCode(new Object[] { mProbability, mTimestamp, mLevel, mCount });
71 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 Arrays.hashCode(new Object[] { mFirst, mSecond });
/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.java64 return (accountTypeWithDataSet.hashCode() ^ accountName.hashCode()) & 0xFFF;
125 int hashCode = 0;
135 hashCode = 0;
141 hashCode = hashCode * 10 + (c - '0');
246 segment.accountHashCode = hashCode;
/packages/apps/Settings/src/com/android/settings/location/
H A DInjectedSetting.java120 public int hashCode() { method in class:InjectedSetting
121 int result = packageName.hashCode();
122 result = 31 * result + className.hashCode();
123 result = 31 * result + title.hashCode();
125 result = 31 * result + settingsActivity.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/InCallUI/src/com/android/incallui/
H A DInCallAnimationUtils.java123 + "(" + Integer.toHexString(from.hashCode()) + " -> "
124 + Integer.toHexString(to.hashCode()) + ")");
136 + Integer.toHexString(from.hashCode()) + " -> "
137 + Integer.toHexString(to.hashCode()) + ")");
145 + Integer.toHexString(from.hashCode()) + " -> "
146 + Integer.toHexString(to.hashCode()) + ")");
/packages/apps/ContactsCommon/src/com/android/contacts/common/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/src/com/android/dialer/calllog/
H A DContactInfo.java51 public int hashCode() { method in class:ContactInfo
57 result = prime * result + ((lookupUri == null) ? 0 : lookupUri.hashCode());
58 result = prime * result + ((name == null) ? 0 : name.hashCode());
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/internal/
H A DMoreKeySpec.java78 public int hashCode() { method in class:MoreKeySpec
79 int hashCode = 1;
80 hashCode = 31 + mCode;
81 hashCode = hashCode * 31 + mIconId;
82 hashCode = hashCode * 31 + (mLabel == null ? 0 : mLabel.hashCode());
83 hashCode = hashCode * 3
[all...]
/packages/apps/UnifiedEmail/src/com/android/mail/lib/html/parser/
H A DHTML.java141 public int hashCode() { method in class:HTML.Element
142 return this.name.hashCode();
233 public int hashCode() { method in class:HTML.Attribute
234 return this.name.hashCode();
/packages/apps/UnifiedEmail/src/com/google/android/mail/common/html/parser/
H A DHTML.java142 public int hashCode() { method in class:HTML.Element
143 return this.name.hashCode();
234 public int hashCode() { method in class:HTML.Attribute
235 return this.name.hashCode();
/packages/apps/Gallery2/src/com/android/gallery3d/data/
H A DDownloadEntry.java37 public long hashCode; field in class:DownloadEntry
63 .append("hash_code: ").append(hashCode).append(", ")
/packages/apps/Launcher3/src/com/android/launcher3/compat/
H A DUserHandleCompat.java77 public int hashCode() { method in class:UserHandleCompat
79 return mUser.hashCode();
/packages/apps/UnifiedEmail/src/com/android/mail/providers/
H A DParticipantInfo.java54 public int hashCode() { method in class:ParticipantInfo
55 return Objects.hashCode(name, email, priority, readConversation);
/packages/apps/Bluetooth/src/com/android/bluetooth/map/
H A DBluetoothMapEmailSettingsItem.java84 public int hashCode() { method in class:BluetoothMapEmailSettingsItem
87 result = prime * result + ((mId == null) ? 0 : mId.hashCode());
88 result = prime * result + ((mName == null) ? 0 : mName.hashCode());
90 + ((mPackageName == null) ? 0 : mPackageName.hashCode());
92 + ((mProviderAuthority == null) ? 0 : mProviderAuthority.hashCode());

Completed in 926 milliseconds

123456