Home
last modified time | relevance | path

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

12

/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/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/tools/winscope/src/utils/
Dnames.js30 const hashCode = /([A-Fa-f0-9]{7}|[A-Fa-f0-9]{6})/; constant
35 new RegExp(/^Surface\(.*\)\/@0x/.source + hashCode.source +
49 if (new RegExp("^" + hashCode.source + " ").test(layerName)) {
/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/tools/winscope/src/flickerlib/windows/
DWindowToken.ts32 /* tokenOverride */ proto.hashCode
DWindowContainer.ts54 var token = tokenOverride?.toString(16) ?? identifier?.hashCode?.toString(16) ?? "";
/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/tools/winscope/src/flickerlib/
DWindowManagerState.ts29 proto.inputMethodWindow.hashCode.toString(16)
/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.java366 public int hashCode() { in hashCode() method in Module
367 return Objects.hashCode(getName()); in hashCode()
/development/samples/browseable/BluetoothAdvertisements/src/com.example.android.bluetoothadvertisements/
DScanResultAdapter.java61 return mArrayList.get(position).getDevice().getAddress().hashCode(); in getItemId()
/development/samples/InlineFillService/src/com/example/android/inlinefillservice/
DInlineRequestHelper.java129 PendingIntent pendingIntent = PendingIntent.getActivity(context, msg.hashCode(), intent, in createAttribution()
/development/samples/IntentPlayground/src/com/example/android/intentplayground/
DTracking.java258 public int hashCode() { in hashCode() method in Tracking.Task

12