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

12345678910

/frameworks/base/opengl/java/android/opengl/
H A DEGLObjectHandle.java44 public int hashCode() { method in class:EGLObjectHandle
/frameworks/native/opengl/tools/glgen/static/egl/
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/print/
H A DPrinterId.java109 public int hashCode() { method in class:PrinterId
111 int hashCode = 1;
112 hashCode = prime * hashCode + ((mServiceName != null)
113 ? mServiceName.hashCode() : 1);
114 hashCode = prime * hashCode + mLocalId.hashCode();
115 return hashCode;
/frameworks/base/core/java/android/transition/
H A DTransitionValues.java68 public int hashCode() { method in class:TransitionValues
69 return 31*view.hashCode() + values.hashCode();
74 String returnValue = "TransitionValues@" + Integer.toHexString(hashCode()) + ":\n";
/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/core/java/android/hardware/camera2/
H A DSize.java64 public int hashCode() { method in class:Size
72 return ((Long)asLong).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();
/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/testing/uiautomator/utils/SleepUtils/AlarmService/src/com/android/testing/alarmservice/
H A DWakeUpController.java36 Log.i(LOG_TAG, "Created instance: 0x" + Integer.toHexString(this.hashCode()));
51 Log.i(LOG_TAG, "Create wakelock: 0x" + Integer.toHexString(mWakeLock.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/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/core/java/android/content/res/
H A DResourcesKey.java42 hash = 31 * hash + (mResDir == null ? 0 : mResDir.hashCode());
45 ? mOverrideConfiguration.hashCode() : 0);
55 public int hashCode() { method in class:ResourcesKey
/frameworks/base/core/java/android/view/
H A DDisplayAdjustments.java79 public int hashCode() { method in class:DisplayAdjustments
81 hash = hash * 31 + mCompatInfo.hashCode();
83 hash = hash * 31 + (mActivityToken == null ? 0 : mActivityToken.hashCode());
/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/tools/layoutlib/create/src/com/android/tools/layoutlib/java/
H A DObjects.java83 * Convenience wrapper for {@link Arrays#hashCode}, adding varargs.
88 return Arrays.hashCode(values);
92 * Returns 0 for null or {@code o.hashCode()}.
94 public static int hashCode(Object o) { method in class:Objects
95 return (o == null) ? 0 : o.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();

Completed in 1227 milliseconds

12345678910