Home
last modified time | relevance | path

Searched refs:hashCode (Results 1 – 24 of 24) sorted by relevance

/development/samples/browseable/MidiScope/src/com.example.android.common.midi/
DMidiPortWrapper.java117 public int hashCode() { in hashCode() method in MidiPortWrapper
118 int hashCode = 1; in hashCode() local
119 hashCode = 31 * hashCode + mPortIndex; in hashCode()
120 hashCode = 31 * hashCode + mType; in hashCode()
121 hashCode = 31 * hashCode + mInfo.hashCode(); in hashCode()
122 return hashCode; in hashCode()
/development/samples/browseable/MidiSynth/src/com.example.android.common.midi/
DMidiPortWrapper.java117 public int hashCode() { in hashCode() method in MidiPortWrapper
118 int hashCode = 1; in hashCode() local
119 hashCode = 31 * hashCode + mPortIndex; in hashCode()
120 hashCode = 31 * hashCode + mType; in hashCode()
121 hashCode = 31 * hashCode + mInfo.hashCode(); in hashCode()
122 return hashCode; in hashCode()
/development/samples/Home/src/com/example/android/home/
DApplicationInfo.java77 public int hashCode() { in hashCode() method in ApplicationInfo
79 result = (title != null ? title.hashCode() : 0); in hashCode()
81 result = 31 * result + (name != null ? name.hashCode() : 0); in hashCode()
/development/samples/browseable/MediaBrowserService/src/com.example.android.mediabrowserservice/model/
DMutableMediaMetadata.java51 public int hashCode() { in hashCode() method in MutableMediaMetadata
52 return trackId.hashCode(); in hashCode()
DMusicProvider.java272 String id = String.valueOf(source.hashCode()); in buildFromJSON()
/development/samples/browseable/SpeedTracker/Shared/src/com.example.android.wearable.speedtracker.common/
DLocationEntry.java58 public int hashCode() { in hashCode() method in LocationEntry
59 return calendar.hashCode(); in hashCode()
/development/samples/browseable/ActivitySceneTransitionBasic/src/com.example.android.activityscenetransitionbasic/
DItem.java59 return mName.hashCode() + mFileName.hashCode(); in getId()
/development/tools/bugreport/src/com/android/bugreport/stacks/
DLockSnapshot.java61 public int hashCode() { in hashCode() method in LockSnapshot
64 hash = hash * 31 + this.address.hashCode(); in hashCode()
/development/tools/bugreport/src/com/android/bugreport/inspector/
DDeadlockDetector.java56 public int hashCode() { in hashCode() method in DeadlockDetector.ThreadRecord
58 hash = hash * 31 + this.process.hashCode(); in hashCode()
59 hash = hash * 31 + this.thread.hashCode(); in hashCode()
92 public int hashCode() { in hashCode() method in DeadlockDetector.LockRecord
94 hash = hash * 31 + this.process.hashCode(); in hashCode()
96 hash = hash * 31 + this.lock.address.hashCode(); in hashCode()
/development/samples/browseable/CustomChoiceList/src/com.example.android.customchoicelist/
DMainActivity.java54 return Cheeses.CHEESES[position].hashCode(); in getItemId()
/development/samples/browseable/AsymmetricFingerprintDialog/src/com.example.android.asymmetricfingerprintdialog/server/
DTransaction.java91 public int hashCode() { in hashCode() method in Transaction
/development/samples/ShortcutDemo/launcher/src/com/example/android/pm/shortcutlauncherdemo/
DBaseActivityListFragment.java83 ret = l1.getUser().hashCode() - l2.getUser().hashCode();
DShortcutListFragment.java181 ret = s1.getUserHandle().hashCode() - s2.getUserHandle().hashCode();
/development/samples/browseable/DoneBar/src/com.example.android.donebar/
DMainActivity.java75 return mSamples[position].hashCode(); in getItemId()
/development/samples/browseable/NavigationDrawer/src/com.example.android.navigationdrawer/
DMainActivity.java73 return mSamples[position].hashCode(); in getItemId()
/development/samples/browseable/DirectBoot/src/com.example.android.directboot/alarms/
DAlarm.java124 public int hashCode() { in hashCode() method in Alarm
/development/samples/ApiDemos/src/com/example/android/apis/app/
DMessengerServiceActivities.java87 MessengerService.MSG_SET_VALUE, this.hashCode(), 0);
/development/tools/idegen/src/com/android/idegen/
DModule.java365 public int hashCode() { in hashCode() method in Module
366 return Objects.hashCode(getName()); in hashCode()
/development/tools/winscope/src/
Dtransform_wm.js21 var renderIdentifier = (id) => shortenComponentName(id.title) + "@" + id.hashCode;
/development/samples/browseable/BluetoothAdvertisements/src/com.example.android.bluetoothadvertisements/
DScanResultAdapter.java61 return mArrayList.get(position).getDevice().getAddress().hashCode(); in getItemId()
/development/samples/IntentPlayground/src/com/example/android/intentplayground/
DTracking.java258 public int hashCode() { in hashCode() method in Tracking.Task
/development/samples/HoneycombGallery/src/com/example/android/hcgallery/
DMainActivity.java305 dialogText.hashCode(), // Otherwise previous PendingIntents with the same in getDialogPendingIntent()
/development/samples/browseable/DisplayingBitmaps/src/com.example.android.displayingbitmaps/util/
DImageCache.java586 cacheKey = String.valueOf(key.hashCode()); in hashKeyForDisk()
/development/samples/browseable/MediaBrowserService/src/com.example.android.mediabrowserservice/
DMusicService.java556 MusicProvider.CUSTOM_METADATA_TRACK_SOURCE).hashCode(), in updateMetadata()