Searched defs:hashCode (Results 76 - 98 of 98) sorted by relevance

1234

/packages/apps/UnifiedEmail/src/com/android/mail/providers/
H A DMessage.java240 public int hashCode() { method in class:Message
241 return uri == null ? 0 : uri.hashCode();
H A DConversation.java670 public int hashCode() { method in class:Conversation
671 return uri.hashCode();
H A DFolder.java582 public int hashCode() { method in class:Folder
583 return folderUri == null ? 0 : folderUri.hashCode();
/packages/apps/Bluetooth/src/com/android/bluetooth/map/
H A DBluetoothMapContentObserver.java325 /* Eclipse generated hashCode() and equals() to make
330 public int hashCode() { method in class:BluetoothMapContentObserver.Msg
/packages/apps/Dialer/src/com/android/dialer/calllog/
H A DCallLogAdapter.java127 public int hashCode() { method in class:CallLogAdapter.NumberWithCountryIso
128 return (number == null ? 0 : number.hashCode())
129 ^ (countryIso == null ? 0 : countryIso.hashCode());
217 public int hashCode() { method in class:CallLogAdapter.ContactInfoRequest
220 result = prime * result + ((callLogInfo == null) ? 0 : callLogInfo.hashCode());
221 result = prime * result + ((countryIso == null) ? 0 : countryIso.hashCode());
222 result = prime * result + ((number == null) ? 0 : number.hashCode());
/packages/apps/Dialer/src/com/android/dialer/database/
H A DDialerDatabaseHelper.java258 public int hashCode() { method in class:DialerDatabaseHelper.ContactNumber
259 return Objects.hashCode(id, dataId, displayName, phoneNumber, lookupKey, photoId);
293 public int hashCode() { method in class:DialerDatabaseHelper.ContactMatch
294 return Objects.hashCode(lookupKey, id);
/packages/apps/Email/src/com/android/email/provider/
H A DContentCache.java269 public int hashCode() { method in class:ContentCache.CacheToken
270 return mId.hashCode();
H A DEmailProvider.java6140 public int hashCode() { method in class:EmailProvider.SyncRequestMessage
6141 int result = mAuthority.hashCode();
6142 result = 31 * result + mAccount.hashCode();
/packages/apps/Email/src/com/android/email/service/
H A DAttachmentService.java228 public int hashCode() { method in class:AttachmentService.DownloadRequest
/packages/apps/Mms/src/com/android/mms/data/
H A DConversation.java679 * equals() and hashCode() to just pass through to the internal
693 public synchronized int hashCode() { method in class:Conversation
694 return mRecipients.hashCode();
998 Log.d(TAG, "Conversation.Cache.put: conv= " + c + ", hash: " + c.hashCode());
1024 LogTag.debug("Conversation.Cache.put: conv= " + c + ", hash: " + c.hashCode());
1063 LogTag.debug(" conv: " + c.toString() + " hash: " + c.hashCode());
/packages/apps/Settings/src/com/android/settings/
H A DTrustedCredentialsSettings.java573 @Override public int hashCode() { method in class:TrustedCredentialsSettings.CertHolder
574 return mAlias.hashCode();
/packages/apps/UnifiedEmail/src/com/android/mail/lib/html/parser/
H A DHtmlDocument.java380 public int hashCode() { method in class:HtmlDocument.Text
381 return originalHtml == null ? 0 : originalHtml.hashCode();
/packages/apps/UnifiedEmail/src/com/android/mail/utils/
H A DNotificationUtils.java1133 summaryNotificationId, conversation.hashCode());
1907 return 1 ^ account.hashCode() ^ folder.hashCode();
1939 public int hashCode() { method in class:NotificationUtils.NotificationKey
1940 final int accountHashCode = account.getAccountManagerAccount().hashCode();
1941 final int folderHashCode = folder.hashCode();
/packages/apps/UnifiedEmail/src/com/google/android/mail/common/html/parser/
H A DHtmlDocument.java381 public int hashCode() { method in class:HtmlDocument.Text
382 return originalHtml == null ? 0 : originalHtml.hashCode();
/packages/services/Telecomm/libs/
H A Dguava.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/common/ com/google/common/util/ ...
/packages/apps/Calendar/src/com/android/calendar/agenda/
H A DAgendaWindowAdapter.java251 public int hashCode() { method in class:AgendaWindowAdapter.QuerySpec
259 result = prime * result + searchQuery.hashCode();
/packages/apps/Contacts/src/com/android/contacts/group/
H A DGroupEditorFragment.java900 public int hashCode() { method in class:GroupEditorFragment.Member
901 return mLookupUri == null ? 0 : mLookupUri.hashCode();
/packages/apps/ContactsCommon/src/com/android/contacts/common/
H A DContactPhotoManager.java1600 public int hashCode() { method in class:ContactPhotoManagerImpl.Request
1605 result = prime * result + ((mUri == null) ? 0 : mUri.hashCode());
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/
H A DKey.java420 return Arrays.hashCode(new Object[] {
430 Arrays.hashCode(key.mMoreKeys),
471 public int hashCode() { method in class:Key
/packages/apps/UnifiedEmail/src/com/android/mail/browse/
H A DConversationCursor.java587 LogUtils.i(LOG_TAG, "[Start refresh of %s: %d]", mName, hashCode());
611 LogUtils.i(LOG_TAG, "[Query done %s: %d]", mName, hashCode());
622 LogUtils.i(LOG_TAG, "[Ignoring refresh result: %d]", hashCode());
1097 mName, mRefreshTask.hashCode());
2332 * first.hashCode() == second.hashCode().
2334 * {@link ConversationCursor#hashCode()} to avoid storing dangerous references to the cursor.
2338 public int hashCode() { method in class:ConversationCursor
2339 return super.hashCode();
/packages/apps/OMA-DM/engine/dmlib/dmt-tools/lib/
H A Djoda-time-1.1.jarMETA-INF/ META-INF/MANIFEST.MF META-INF/LICENSE.txt META-INF/NOTICE ...
/packages/apps/Calculator/
H A Darity-2.1.2.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/javia/ org/javia/arity/ org/javia/arity/Compiler ...
/packages/apps/ContactsCommon/libs/
H A Dlibphonenumber-6.2.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/i18n/ com/google/i18n/phonenumbers/ ...

Completed in 660 milliseconds

1234