Searched refs:hashCode (Results 176 - 200 of 592) sorted by relevance

1234567891011>>

/frameworks/base/core/java/android/nfc/
H A DNdefMessage.java232 public int hashCode() { method in class:NdefMessage
233 return Arrays.hashCode(mRecords);
/frameworks/base/core/java/android/util/
H A DMapCollections.java151 public final int hashCode() { method in class:MapCollections.MapIterator
158 return (key == null ? 0 : key.hashCode()) ^
159 (value == null ? 0 : value.hashCode());
258 public int hashCode() { method in class:MapCollections.EntrySet
263 result += ( (key == null ? 0 : key.hashCode()) ^
264 (value == null ? 0 : value.hashCode()) );
348 public int hashCode() { method in class:MapCollections.KeySet
352 result += obj == null ? 0 : obj.hashCode();
H A DMergedConfiguration.java165 public int hashCode() { method in class:MergedConfiguration
166 return mMergedConfig.hashCode();
H A DSize.java145 public int hashCode() { method in class:Size
H A DSizeF.java158 public int hashCode() { method in class:SizeF
/frameworks/base/core/java/com/android/internal/statusbar/
H A DNotificationVisibility.java64 public int hashCode() { method in class:NotificationVisibility
66 return key == null ? 0 : key.hashCode();
/frameworks/base/core/tests/coretests/src/android/view/inputmethod/
H A DInputMethodInfoTest.java46 assertThat(clone.hashCode(), equalTo(imi.hashCode()));
/frameworks/base/location/java/android/location/
H A DCountry.java175 public int hashCode() { method in class:Country
179 hash = hash * 13 + mCountryIso.hashCode();
/frameworks/base/lowpan/java/android/net/lowpan/
H A DLowpanCredential.java138 public int hashCode() { method in class:LowpanCredential
139 return Objects.hash(Arrays.hashCode(mMasterKey), mMasterKeyIndex);
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
H A DAnimatedImageView.java89 if (mDrawableId == drawable.hashCode()) return;
91 mDrawableId = drawable.hashCode();
/frameworks/data-binding/integration-tests/TestApp/app/src/main/java/android/databinding/testapp/vo/
H A DObservableFieldBindingObject.java99 public int hashCode() { method in class:ObservableFieldBindingObject.MyParcelable
101 result = 31 * result + (y != null ? y.hashCode() : 0);
/frameworks/ex/camera2/portability/src/com/android/ex/camera2/portability/
H A DSize.java170 public int hashCode() { method in class:Size
171 return val.hashCode();
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/hotspot2/anqp/eap/
H A DEAPMethod.java146 public int hashCode() { method in class:EAPMethod
147 return mEAPMethodID * 31 + mAuthParams.hashCode();
/frameworks/opt/net/wifi/tests/wifitests/src/com/android/server/wifi/util/
H A DMatrixTest.java119 assertEquals(m1.hashCode(), m2.hashCode());
/frameworks/support/compat/java/android/support/v4/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/support/compat/java/android/support/v4/view/
H A DWindowInsetsCompat.java359 public int hashCode() { method in class:WindowInsetsCompat
360 return mInsets == null ? 0 : mInsets.hashCode();
/frameworks/base/core/java/android/hardware/radio/
H A DRadioManager.java403 public int hashCode() { method in class:RadioManager.ModuleProperties
407 result = prime * result + mServiceName.hashCode();
409 result = prime * result + ((mImplementor == null) ? 0 : mImplementor.hashCode());
410 result = prime * result + ((mProduct == null) ? 0 : mProduct.hashCode());
411 result = prime * result + ((mVersion == null) ? 0 : mVersion.hashCode());
412 result = prime * result + ((mSerial == null) ? 0 : mSerial.hashCode());
416 result = prime * result + Arrays.hashCode(mBands);
418 result = prime * result + mVendorInfo.hashCode();
605 public int hashCode() { method in class:RadioManager.BandDescriptor
733 public int hashCode() { method in class:RadioManager.FmBandDescriptor
819 public int hashCode() { method in class:RadioManager.AmBandDescriptor
939 public int hashCode() { method in class:RadioManager.BandConfig
1068 public int hashCode() { method in class:RadioManager.FmBandConfig
1258 public int hashCode() { method in class:RadioManager.AmBandConfig
1542 public int hashCode() { method in class:RadioManager.ProgramInfo
[all...]
/frameworks/base/core/java/android/app/timezone/
H A DDistroFormatVersion.java106 public int hashCode() { method in class:DistroFormatVersion
/frameworks/base/core/java/android/bluetooth/
H A DBluetoothAudioConfig.java53 public int hashCode() { method in class:BluetoothAudioConfig
H A DBluetoothMasInstance.java45 public int hashCode() { method in class:BluetoothMasInstance
/frameworks/base/core/java/android/hardware/input/
H A DInputDeviceIdentifier.java82 public int hashCode() { method in class:InputDeviceIdentifier
/frameworks/base/core/java/android/net/
H A DDataUsageRequest.java107 public int hashCode() { method in class:DataUsageRequest
H A DRouteInfo.java441 public int hashCode() { method in class:RouteInfo
442 return (mDestination.hashCode() * 41)
443 + (mGateway == null ? 0 :mGateway.hashCode() * 47)
444 + (mInterface == null ? 0 :mInterface.hashCode() * 67)
/frameworks/base/graphics/java/android/graphics/
H A DInsets.java97 public int hashCode() { method in class:Insets
/frameworks/base/media/java/android/media/
H A DVolumePolicy.java69 public int hashCode() { method in class:VolumePolicy

Completed in 1620 milliseconds

1234567891011>>