Searched refs:hashCode (Results 1 - 25 of 184) sorted by relevance

12345678

/frameworks/native/opengl/tools/glgen/static/egl/
H A DEGLObjectHandle.java44 public int hashCode() { method in class:EGLObjectHandle
/frameworks/base/opengl/java/android/opengl/
H A DEGLObjectHandle.java44 public int hashCode() { method in class:EGLObjectHandle
/frameworks/base/core/java/com/android/internal/util/
H A DObjects.java45 * calling {@link Arrays#hashCode(Object[])}.
47 * <p>This is useful for implementing {@link Object#hashCode()}. For example,
51 * public int hashCode() {
52 * return Objects.hashCode(getX(), getY(), getZ());
58 public static int hashCode(Object... objects) { method in class:Objects
59 return Arrays.hashCode(objects);
/frameworks/base/core/java/android/accounts/
H A DAccountAndUser.java42 public int hashCode() { method in class:AccountAndUser
43 return account.hashCode() + userId;
H A DAccount.java25 * {@link Parcelable} and also overrides {@link #equals} and {@link #hashCode}, making it
39 public int hashCode() { method in class:Account
41 result = 31 * result + name.hashCode();
42 result = 31 * result + type.hashCode();
/frameworks/base/libs/usb/src/com/android/future/usb/
H A DUsbAccessory.java118 public int hashCode() { method in class:UsbAccessory
119 return ((mManufacturer == null ? 0 : mManufacturer.hashCode()) ^
120 (mModel == null ? 0 : mModel.hashCode()) ^
121 (mDescription == null ? 0 : mDescription.hashCode()) ^
122 (mVersion == null ? 0 : mVersion.hashCode()) ^
123 (mUri == null ? 0 : mUri.hashCode()) ^
124 (mSerial == null ? 0 : mSerial.hashCode()));
/frameworks/base/core/java/android/util/
H A DPair.java64 public int hashCode() { method in class:Pair
65 return (first == null ? 0 : first.hashCode()) ^ (second == null ? 0 : second.hashCode());
/frameworks/base/location/tests/locationtests/src/android/location/
H A DCountryTester.java31 assertTrue(countryA.hashCode() == countryD.hashCode());
/frameworks/base/drm/java/android/drm/
H A DDrmSupportInfo.java132 public int hashCode() { method in class:DrmSupportInfo
133 return mFileSuffixList.hashCode() + mMimeTypeList.hashCode() + mDescription.hashCode();
/frameworks/base/telephony/java/android/telephony/
H A DCellSignalStrength.java75 public abstract int hashCode(); method in class:CellSignalStrength
H A DCellInfoCdma.java68 public int hashCode() { method in class:CellInfoCdma
69 return super.hashCode() + mCellIdentityCdma.hashCode() + mCellSignalStrengthCdma.hashCode();
H A DCellInfoGsm.java68 public int hashCode() { method in class:CellInfoGsm
69 return super.hashCode() + mCellIdentityGsm.hashCode() + mCellSignalStrengthGsm.hashCode();
H A DCellInfoLte.java72 public int hashCode() { method in class:CellInfoLte
73 return super.hashCode() + mCellIdentityLte.hashCode() + mCellSignalStrengthLte.hashCode();
/frameworks/base/core/tests/coretests/src/android/content/pm/
H A DVerificationParamsTest.java156 assertEquals(params1.hashCode(), params2.hashCode());
166 assertFalse(params1.hashCode() == params2.hashCode());
177 assertFalse(params1.hashCode() == params2.hashCode());
188 assertFalse(params1.hashCode() == params2.hashCode());
199 assertFalse(params1.hashCode() == params2.hashCode());
[all...]
/frameworks/base/sax/java/android/sax/
H A DChildren.java31 int hash = uri.hashCode() * 31 + localName.hashCode();
66 int hash = uri.hashCode() * 31 + localName.hashCode();
/frameworks/base/opengl/java/com/google/android/gles_jni/
H A DEGLDisplayImpl.java40 public int hashCode() { method in class:EGLDisplayImpl
H A DEGLSurfaceImpl.java45 public int hashCode() { method in class:EGLSurfaceImpl
H A DEGLContextImpl.java47 public int hashCode() { method in class:EGLContextImpl
/frameworks/base/core/java/android/hardware/usb/
H A DUsbAccessory.java176 public int hashCode() { method in class:UsbAccessory
177 return ((mManufacturer == null ? 0 : mManufacturer.hashCode()) ^
178 (mModel == null ? 0 : mModel.hashCode()) ^
179 (mDescription == null ? 0 : mDescription.hashCode()) ^
180 (mVersion == null ? 0 : mVersion.hashCode()) ^
181 (mUri == null ? 0 : mUri.hashCode()) ^
182 (mSerial == null ? 0 : mSerial.hashCode()));
/frameworks/base/core/java/android/text/util/
H A DRfc822Token.java172 public int hashCode() { method in class:Rfc822Token
174 if (mName != null) result = 31 * result + mName.hashCode();
175 if (mAddress != null) result = 31 * result + mAddress.hashCode();
176 if (mComment != null) result = 31 * result + mComment.hashCode();
/frameworks/base/core/java/android/webkit/
H A DAccessibilityInjector.java338 Log.w(TAG, "[" + mWebView.hashCode() + "] Started loading new page");
363 Log.d(TAG, "[" + mWebView.hashCode() + "] Request callback ");
378 Log.d(TAG, "[" + mWebView.hashCode() + "] Received callback");
398 Log.d(TAG, "[" + mWebView.hashCode() + "] Loading screen reader into WebView");
402 Log.w(TAG, "[" + mWebView.hashCode() + "] Attempted to inject screen reader twice");
664 Log.d(WRAP_TAG, "[" + hashCode() + "] Initializing text-to-speech on thread "
699 Log.w(WRAP_TAG, "[" + hashCode() + "] Attempted to speak before TTS init");
704 Log.i(WRAP_TAG, "[" + hashCode() + "] Speak called from JS binder");
718 Log.w(WRAP_TAG, "[" + hashCode() + "] Attempted to stop before initialize");
723 Log.i(WRAP_TAG, "[" + hashCode()
[all...]
/frameworks/base/core/java/android/content/pm/
H A DPackageCleanItem.java51 public int hashCode() { method in class:PackageCleanItem
54 result = 31 * result + packageName.hashCode();
/frameworks/base/core/java/android/os/
H A DMessenger.java79 public int hashCode() { method in class:Messenger
80 return mTarget.asBinder().hashCode();
H A DParcelUuid.java77 public int hashCode() { method in class:ParcelUuid
78 return mUuid.hashCode();
H A DRemoteCallback.java83 public int hashCode() { method in class:RemoteCallback
84 return mTarget.asBinder().hashCode();

Completed in 1818 milliseconds

12345678