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

1234567

/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/makedict/
H A DNgramProperty.java31 public int hashCode() { method in class:NgramProperty
32 return mTargetWord.hashCode() ^ mNgramContext.hashCode();
H A DWeightedString.java51 public int hashCode() { method in class:WeightedString
52 return Arrays.hashCode(new Object[] { mWord, mProbabilityInfo});
H A DProbabilityInfo.java64 public int hashCode() { method in class:ProbabilityInfo
66 return Arrays.hashCode(new Object[] { mProbability, mTimestamp, mLevel, mCount });
68 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 (mFirst == null ? 0 : mFirst.hashCode())
33 ^ (mSecond == null ? 0 : mSecond.hashCode());
/packages/apps/Dialer/src/com/android/dialer/contactinfo/
H A DNumberWithCountryIso.java47 public int hashCode() { method in class:NumberWithCountryIso
48 int numberHashCode = number == null ? 0 : number.hashCode();
49 int countryHashCode = countryIso == null ? 0 : countryIso.hashCode();
H A DContactInfoRequest.java57 public int hashCode() { method in class:ContactInfoRequest
60 result = prime * result + ((callLogInfo == null) ? 0 : callLogInfo.hashCode());
61 result = prime * result + ((countryIso == null) ? 0 : countryIso.hashCode());
62 result = prime * result + ((number == null) ? 0 : number.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.java55 notification.setDeleteIntent(PendingIntent.getBroadcast(context, instance.hashCode(),
63 PendingIntent.getBroadcast(context, instance.hashCode(),
68 notification.setContentIntent(PendingIntent.getActivity(context, instance.hashCode(),
71 nm.cancel(instance.hashCode());
72 nm.notify(instance.hashCode(), notification.build());
85 .setGroup(Integer.toString(instance.hashCode()))
97 PendingIntent.getBroadcast(context, instance.hashCode(),
102 notification.setContentIntent(PendingIntent.getActivity(context, instance.hashCode(),
105 nm.cancel(instance.hashCode());
106 nm.notify(instance.hashCode(), notificatio
[all...]
/packages/apps/Settings/src/com/android/settings/location/
H A DInjectedSetting.java130 public int hashCode() { method in class:InjectedSetting
131 int result = packageName.hashCode();
132 result = 31 * result + className.hashCode();
133 result = 31 * result + title.hashCode();
135 result = 31 * result + mUserHandle.hashCode();
136 result = 31 * result + settingsActivity.hashCode();
/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/Camera2/src/com/android/camera/one/v2/camera2proxy/
H A DCaptureRequestProxy.java56 public int hashCode() { method in class:CaptureRequestProxy
57 return mRequest.hashCode();
/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/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/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.java54 public int hashCode() { method in class:ContactInfo
60 result = prime * result + ((lookupUri == null) ? 0 : lookupUri.hashCode());
61 result = prime * result + ((name == null) ? 0 : name.hashCode());
/packages/apps/Launcher3/src/com/android/launcher3/util/
H A DComponentKey.java38 mHashCode = Arrays.hashCode(new Object[] {componentName, user});
60 mHashCode = Arrays.hashCode(new Object[] {componentName, user});
75 public int hashCode() { method in class:ComponentKey
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/internal/
H A DMoreKeySpec.java88 public int hashCode() { method in class:MoreKeySpec
89 int hashCode = 1;
90 hashCode = 31 + mCode;
91 hashCode = hashCode * 31 + mIconId;
93 hashCode = hashCode * 31 + (label == null ? 0 : label.hashCode());
95 hashCode = hashCode * 3
[all...]
/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/Camera2/src/com/android/camera/device/
H A DCameraId.java111 public int hashCode() { method in class:CameraId
112 return mCameraId.hashCode();

Completed in 1484 milliseconds

1234567