Searched defs:hashCode (Results 1 - 25 of 64) sorted by relevance

123

/frameworks/base/awt/java/awt/
H A DDimension.java90 public int hashCode() { method in class:Dimension
94 return hash.hashCode();
H A DInsets.java90 public int hashCode() { method in class:Insets
91 int hashCode = HashCode.EMPTY_HASH_CODE;
92 hashCode = HashCode.combine(hashCode, top);
93 hashCode = HashCode.combine(hashCode, left);
94 hashCode = HashCode.combine(hashCode, bottom);
95 hashCode = HashCode.combine(hashCode, righ
[all...]
H A DBufferCapabilities.java181 public int hashCode() { method in class:BufferCapabilities.FlipContents
182 return super.hashCode();
/frameworks/base/awt/java/awt/font/
H A DFontRenderContext.java171 public int hashCode() { method in class:FontRenderContext
172 return this.getTransform().hashCode() ^
173 new Boolean(this.fFractionalMetrics).hashCode() ^
174 new Boolean(this.fAntiAliased).hashCode();
H A DImageGraphicAttribute.java112 public int hashCode() { method in class:ImageGraphicAttribute
115 hash.append(fImage.hashCode());
117 return hash.hashCode();
H A DShapeGraphicAttribute.java124 public int hashCode() { method in class:ShapeGraphicAttribute
127 hash.append(fShape.hashCode());
129 return hash.hashCode();
H A DTextHitInfo.java141 public int hashCode() { method in class:TextHitInfo
/frameworks/base/awt/java/awt/image/
H A DPixelInterleavedSampleModel.java125 public int hashCode() { method in class:PixelInterleavedSampleModel
126 int hash = super.hashCode();
/frameworks/base/core/java/android/accounts/
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();
H A DAuthenticatorDescription.java94 public int hashCode() { method in class:AuthenticatorDescription
95 return type.hashCode();
/frameworks/base/core/java/android/os/
H A DParcelUuid.java77 public int hashCode() { method in class:ParcelUuid
78 return mUuid.hashCode();
H A DMessenger.java79 public int hashCode() { method in class:Messenger
80 return mTarget.asBinder().hashCode();
H A DRemoteCallback.java83 public int hashCode() { method in class:RemoteCallback
84 return mTarget.asBinder().hashCode();
/frameworks/base/core/java/android/util/
H A DPair.java29 * Constructor for a Pair. If either are null then equals() and hashCode() will throw
60 public int hashCode() { method in class:Pair
62 result = 31 * result + first.hashCode();
63 result = 31 * result + second.hashCode();
/frameworks/base/core/tests/coretests/src/android/pim/vcard/
H A DPropertyNode.java107 public int hashCode() { method in class:PropertyNode
109 // library which utilize hashCode() does not honor that, so intentionally throw an
112 "PropertyNode does not provide hashCode() implementation intentionally.");
/frameworks/base/graphics/java/android/graphics/
H A DPoint.java78 @Override public int hashCode() { method in class:Point
/frameworks/base/opengl/tools/glgen/src/
H A DCType.java93 public int hashCode() { method in class:CType
94 return baseType.hashCode() ^ (isPointer ? 2 : 0) ^ (isConst ? 1 : 0);
/frameworks/base/test-runner/src/android/test/
H A DClassPathPackageInfo.java76 public int hashCode() { method in class:ClassPathPackageInfo
77 return packageName.hashCode();
/frameworks/base/core/java/android/content/
H A DSyncAdapterType.java25 * {@link #hashCode}, making it suitable for use as the key of a {@link java.util.Map}
91 public int hashCode() { method in class:SyncAdapterType
93 result = 31 * result + authority.hashCode();
94 result = 31 * result + accountType.hashCode();
/frameworks/base/awt/java/awt/geom/
H A DPoint2D.java305 public int hashCode() { method in class:Point2D
309 return hash.hashCode();
/frameworks/base/core/java/android/content/pm/
H A DSignature.java127 public int hashCode() { method in class:Signature
131 mHashCode = Arrays.hashCode(mSignature);
/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/services/java/com/android/server/am/
H A DReceiverList.java60 public int hashCode() { method in class:ReceiverList
/frameworks/base/telephony/java/android/telephony/gsm/
H A DGsmCellLocation.java76 public int hashCode() { method in class:GsmCellLocation
/frameworks/base/test-runner/src/android/test/suitebuilder/
H A DTestMethod.java135 public int hashCode() { method in class:TestMethod
137 result = (enclosingClassname != null ? enclosingClassname.hashCode() : 0);
138 result = 31 * result + (testMethodName != null ? testMethodName.hashCode() : 0);

Completed in 412 milliseconds

123