Searched defs:hashCode (Results 126 - 150 of 181) sorted by relevance

12345678

/frameworks/base/core/java/android/net/
H A DLinkProperties.java628 public int hashCode() { method in class:LinkProperties
629 return ((null == mIfaceName) ? 0 : mIfaceName.hashCode()
632 + ((null == mDomains) ? 0 : mDomains.hashCode())
634 + ((null == mHttpProxy) ? 0 : mHttpProxy.hashCode())
635 + mStackedLinks.hashCode() * 47)
/frameworks/base/core/java/android/nfc/
H A DNdefRecord.java973 public int hashCode() { method in class:NdefRecord
976 result = prime * result + Arrays.hashCode(mId);
977 result = prime * result + Arrays.hashCode(mPayload);
979 result = prime * result + Arrays.hashCode(mType);
/frameworks/base/core/java/android/os/storage/
H A DStorageVolume.java251 public int hashCode() { method in class:StorageVolume
252 return mPath.hashCode();
/frameworks/base/core/java/android/util/
H A DMapCollections.java148 public final int hashCode() { method in class:MapCollections.MapIterator
155 return (key == null ? 0 : key.hashCode()) ^
156 (value == null ? 0 : value.hashCode());
255 public int hashCode() { method in class:MapCollections.EntrySet
260 result += ( (key == null ? 0 : key.hashCode()) ^
261 (value == null ? 0 : value.hashCode()) );
345 public int hashCode() { method in class:MapCollections.KeySet
349 result += obj == null ? 0 : obj.hashCode();
/frameworks/base/core/java/android/view/inputmethod/
H A DInputMethodSubtype.java152 * Arrays.hashCode(new Object[] {locale, mode, extraValue,
266 * Arrays.hashCode(new Object[] {locale, mode, extraValue,
289 // If hashCode() of this subtype is 0 and you want to specify it as an id of this subtype,
463 public int hashCode() { method in class:InputMethodSubtype
472 return (subtype.hashCode() == hashCode());
474 return (subtype.hashCode() == hashCode())
541 return Arrays.hashCode(new Object[] {locale, mode, extraValue, isAuxiliary,
544 return Arrays.hashCode(ne
[all...]
/frameworks/base/media/java/android/media/videoeditor/
H A DAudioTrack.java655 public int hashCode() { method in class:AudioTrack
656 return mUniqueId.hashCode();
H A DMediaItem.java618 public int hashCode() { method in class:MediaItem
619 return mUniqueId.hashCode();
/frameworks/base/media/mca/filterfw/java/android/filterfw/core/
H A DFrameFormat.java189 public int hashCode() { method in class:FrameFormat
/frameworks/base/services/java/com/android/server/net/
H A DNetworkStatsCollection.java504 private final int hashCode; field in class:NetworkStatsCollection.Key
511 hashCode = Objects.hashCode(ident, uid, set, tag);
515 public int hashCode() { method in class:NetworkStatsCollection.Key
516 return hashCode;
/frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/
H A DFrameType.java290 public int hashCode() { method in class:FrameType
291 return mElementId ^ mDimensions ^ mAccessHints ^ mClass.hashCode();
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/
H A DBridge.java139 public int hashCode() { method in class:Bridge.IntArray
140 return Arrays.hashCode(mArray);
/frameworks/support/v4/java/android/support/v4/util/
H A DMapCollections.java146 public final int hashCode() { method in class:MapCollections.MapIterator
153 return (key == null ? 0 : key.hashCode()) ^
154 (value == null ? 0 : value.hashCode());
253 public int hashCode() { method in class:MapCollections.EntrySet
258 result += ( (key == null ? 0 : key.hashCode()) ^
259 (value == null ? 0 : value.hashCode()) );
343 public int hashCode() { method in class:MapCollections.KeySet
347 result += obj == null ? 0 : obj.hashCode();
/frameworks/support/v4/java/android/support/v4/view/accessibility/
H A DAccessibilityRecordCompat.java1018 public int hashCode() { method in class:AccessibilityRecordCompat
1019 return (mRecord == null) ? 0 : mRecord.hashCode();
/frameworks/base/core/java/android/bluetooth/
H A DBluetoothClass.java74 public int hashCode() { method in class:BluetoothClass
H A DBluetoothDevice.java579 public int hashCode() { method in class:BluetoothDevice
580 return mAddress.hashCode();
/frameworks/base/core/java/android/hardware/location/
H A DGeofenceHardwareImpl.java808 public int hashCode() { method in class:GeofenceHardwareImpl.Reaper
810 result = 31 * result + (mCallback != null ? mCallback.hashCode() : 0);
811 result = 31 * result + (mMonitorCallback != null ? mMonitorCallback.hashCode() : 0);
/frameworks/base/core/java/android/view/
H A DViewTreeObserver.java252 public int hashCode() { method in class:ViewTreeObserver.InternalInsetsInfo
253 int result = contentInsets.hashCode();
254 result = 31 * result + visibleInsets.hashCode();
255 result = 31 * result + touchableRegion.hashCode();
/frameworks/base/core/java/android/widget/
H A DActivityChooserModel.java824 public int hashCode() { method in class:ActivityChooserModel.HistoricalRecord
827 result = prime * result + ((activity == null) ? 0 : activity.hashCode());
898 public int hashCode() { method in class:ActivityChooserModel.ActivityResolveInfo
/frameworks/base/packages/SettingsProvider/src/com/android/providers/settings/
H A DSettingsBackupAgent.java138 String ssid = ""; // equals() and hashCode() need these to be non-null
196 // Same approach as Pair.equals() and Pair.hashCode()
211 public int hashCode() { method in class:SettingsBackupAgent.Network
213 result = 31 * result + ssid.hashCode();
214 result = 31 * result + key_mgmt.hashCode();
/frameworks/base/services/java/com/android/server/
H A DTextServicesManagerService.java329 final int hashCode;
331 hashCode = Integer.valueOf(subtypeHashCodeStr);
333 hashCode = 0;
335 if (hashCode == 0 && !allowImplicitlySelectedSubtype) {
339 if (hashCode == 0) {
362 if (hashCode == 0) {
373 } else if (scs.hashCode() == hashCode) {
375 Slog.w(TAG, "Return subtype " + scs.hashCode() + ", input= " + locale
549 public void setCurrentSpellCheckerSubtype(String locale, int hashCode) { argument
601 setCurrentSpellCheckerSubtypeLocked(int hashCode) argument
941 putSelectedSpellCheckerSubtype(int hashCode) argument
[all...]
H A DTwilightService.java241 public int hashCode() { method in class:TwilightService.TwilightState
/frameworks/base/services/java/com/android/server/usb/
H A DUsbSettingsManager.java238 public int hashCode() { method in class:UsbSettingsManager.DeviceFilter
347 public int hashCode() { method in class:UsbSettingsManager.AccessoryFilter
348 return ((mManufacturer == null ? 0 : mManufacturer.hashCode()) ^
349 (mModel == null ? 0 : mModel.hashCode()) ^
350 (mVersion == null ? 0 : mVersion.hashCode()));
/frameworks/base/telephony/java/android/telephony/
H A DSignalStrength.java837 public int hashCode() { method in class:SignalStrength
/frameworks/support/v7/appcompat/src/android/support/v7/internal/widget/
H A DActivityChooserModel.java816 public int hashCode() { method in class:ActivityChooserModel.HistoricalRecord
819 result = prime * result + ((activity == null) ? 0 : activity.hashCode());
890 public int hashCode() { method in class:ActivityChooserModel.ActivityResolveInfo
/frameworks/base/core/java/android/content/res/
H A DConfiguration.java1236 public int hashCode() { method in class:Configuration
1241 result = 31 * result + (locale != null ? locale.hashCode() : 0);

Completed in 984 milliseconds

12345678