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

123456

/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/internal/
H A DMoreKeySpec.java52 public int hashCode() { method in class:MoreKeySpec
53 int hashCode = 1;
54 hashCode = 31 + mCode;
55 hashCode = hashCode * 31 + mIconId;
56 hashCode = hashCode * 31 + (mLabel == null ? 0 : mLabel.hashCode());
57 hashCode = hashCode * 3
[all...]
/packages/apps/Email/emailsync/src/com/android/emailsync/
H A DRequest.java37 public abstract int hashCode(); method in class:Request
H A DMessageMoveRequest.java41 public int hashCode() { method in class:MessageMoveRequest
H A DPartRequest.java50 public int hashCode() { method in class:PartRequest
/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/Exchange/src/com/android/exchange/
H A DMeetingResponseRequest.java41 public int hashCode() { method in class:MeetingResponseRequest
H A DMessageMoveRequest.java41 public int hashCode() { method in class:MessageMoveRequest
/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/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/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/makedict/
H A DWord.java52 return Arrays.hashCode(new Object[] {
55 word.mShortcutTargets.hashCode(),
56 word.mBigrams.hashCode(),
94 public int hashCode() { method in class:Word
/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/bitmap/
H A DContiguousFIFOAggregator.java101 final int hash = key.hashCode();
137 mTasks.delete(key.hashCode());
164 final int hash = key.hashCode();
196 final int hash = first.hashCode();
217 final int hash = key.hashCode();
231 return mTasks.get(key.hashCode()) != null;
248 final int hash = key.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.java48 public int hashCode() { method in class:ContactInfo
54 result = prime * result + ((lookupUri == null) ? 0 : lookupUri.hashCode());
55 result = prime * result + ((name == null) ? 0 : name.hashCode());
/packages/apps/UnifiedEmail/src/com/android/mail/browse/
H A DMessageCursor.java119 int hashCode = 17;
123 hashCode = 31 * hashCode + getMessage().getStateHashCode();
125 return hashCode;
/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/Settings/src/com/android/settings/inputmethod/
H A DInputMethodAndSubtypeUtil.java102 private static void putSelectedInputMethodSubtype(ContentResolver resolver, int hashCode) { argument
103 Settings.Secure.putInt(resolver, Settings.Secure.SELECTED_INPUT_METHOD_SUBTYPE, hashCode);
187 final String subtypeHashCodeStr = String.valueOf(subtype.hashCode());
194 // Because of system change, hashCode value could have been changed.
203 if (selectedInputMethodSubtype == subtype.hashCode()) {
310 id + subtype.hashCode());
330 String hashCode = String.valueOf(subtype.hashCode());
332 Log.d(TAG, "--- Set checked state: " + "id" + ", " + hashCode + ", "
333 + enabledSubtypesSet.contains(hashCode));
[all...]
/packages/apps/Gallery/src/com/android/camera/gallery/
H A DVideoObject.java60 public int hashCode() { method in class:VideoObject
61 return fullSizeImageUri().toString().hashCode();

Completed in 456 milliseconds

123456