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

1234567891011>>

/dalvik/dx/tests/088-ssa-combine-blocks/
H A DBlort.java31 hashCode();
32 hashCode();
/dalvik/libcore/luni/src/main/java/org/apache/harmony/misc/
H A DHashCode.java24 * <code>java.util.List.hashCode</code>.
46 * public int hashCode() {
47 * int hashCode = HashCode.EMPTY_HASH_CODE;
48 * hashCode = HashCode.combine(hashCode, id);
49 * hashCode = HashCode.combine(hashCode, name);
50 * hashCode = HashCode.combine(hashCode, weight);
51 * return hashCode;
71 private int hashCode = EMPTY_HASH_CODE; field in class:HashCode
76 public final int hashCode() { method in class:HashCode
86 combine(int hashCode, boolean value) argument
97 combine(int hashCode, long value) argument
108 combine(int hashCode, float value) argument
119 combine(int hashCode, double value) argument
130 combine(int hashCode, Object value) argument
140 combine(int hashCode, int value) argument
[all...]
/dalvik/libcore/annotation/src/main/java/java/lang/annotation/
H A DAnnotation.java91 * (0x7f * n.hashCode()) ^ v.hashCode())}, where {@code n} is the
97 * Integer.valueOf(v).hashCode()} is used for an {@code int} value
102 * using the corresponding {@code hashCode(v)} helper function in
107 * calling their {@code hashCode} method.
113 int hashCode(); method in interface:Annotation
/dalvik/libcore/security/src/main/java/java/security/
H A DPrincipal.java49 * required by the general contract of {@link Object#hashCode}.
55 public int hashCode(); method in interface:Principal
/dalvik/dx/tests/086-ssa-edge-split/
H A DBlort.java49 hashCode();
50 hashCode();
/dalvik/dx/tests/090-dex-unify-arrays/
H A DBlort.java30 return o.hashCode();
35 return o.hashCode();
40 return o.hashCode();
45 return o.hashCode();
50 return o.hashCode();
/dalvik/libcore/security/src/main/java/org/bouncycastle/asn1/
H A DDERObject.java14 public abstract int hashCode(); method in class:DERObject
H A DASN1Null.java17 public int hashCode() method in class:ASN1Null
H A DDERNull.java42 public int hashCode() method in class:DERNull
/dalvik/dx/tests/062-dex-synch-method/
H A DBlort.java24 x.hashCode();
52 x.hashCode();
/dalvik/libcore/support/src/test/java/org/apache/harmony/security/tests/support/acl/
H A DPrincipalImpl.java46 public int hashCode() { method in class:PrincipalImpl
47 return user.hashCode();
/dalvik/libcore-disabled/sound/src/main/java/javax/sound/midi/
H A DMidiDevice.java66 public final int hashCode() { method in class:MidiDevice.Info
68 int result = super.hashCode();
69 result = PRIME * result + ((description == null) ? 0 : description.hashCode());
70 result = PRIME * result + ((name == null) ? 0 : name.hashCode());
71 result = PRIME * result + ((vendor == null) ? 0 : vendor.hashCode());
72 result = PRIME * result + ((version == null) ? 0 : version.hashCode());
/dalvik/libcore/security/src/test/java/tests/security/spec/
H A DECPointTest.java248 * Test #1 for <code>hashCode()</code> method.<br>
256 method = "hashCode",
261 int hc = f.hashCode();
262 assertTrue(hc == f.hashCode() &&
263 hc == f.hashCode() &&
264 hc == f.hashCode() &&
265 hc == f.hashCode() &&
266 hc == f.hashCode() &&
267 hc == f.hashCode() &&
268 hc == f.hashCode()
[all...]
H A DECFieldFpTest.java139 * Test #1 for <code>hashCode()</code> method.<br>
147 method = "hashCode",
152 int hc = f.hashCode();
153 assertTrue(hc == f.hashCode() &&
154 hc == f.hashCode() &&
155 hc == f.hashCode() &&
156 hc == f.hashCode() &&
157 hc == f.hashCode() &&
158 hc == f.hashCode() &&
159 hc == f.hashCode()
[all...]
/dalvik/libcore/xml/src/main/java/org/apache/xml/dtm/ref/
H A DExtendedType.java47 this.hash = nodetype + namespace.hashCode() + localName.hashCode();
77 this.hash = nodetype + namespace.hashCode() + localName.hashCode();
94 * Override the hashCode() method in the Object class
96 public int hashCode() method in class:ExtendedType
/dalvik/libcore-disabled/sound/src/main/java/javax/sound/sampled/
H A DMixer.java57 public final int hashCode() { method in class:Mixer.Info
58 return name.hashCode() + vendor.hashCode() + description.hashCode() + version.hashCode();
/dalvik/libcore/text/src/main/java/java/text/
H A DDateFormatSymbols.java181 * @see #hashCode
343 public int hashCode() { method in class:DateFormatSymbols
347 int hashCode;
348 hashCode = localPatternChars.hashCode();
350 hashCode += element.hashCode();
353 hashCode += element.hashCode();
356 hashCode
[all...]
/dalvik/libcore/security/src/main/java/java/security/spec/
H A DECPoint.java112 public int hashCode() { method in class:ECPoint
114 return affineX.hashCode() * 31 + affineY.hashCode();
H A DECFieldFp.java94 public int hashCode() { method in class:ECFieldFp
95 return p.hashCode();
/dalvik/libcore/security/src/main/java/org/bouncycastle/asn1/x509/
H A DX509Extension.java40 public int hashCode() method in class:X509Extension
44 return this.getValue().hashCode();
48 return ~this.getValue().hashCode();
/dalvik/dx/tests/098-dex-jsr-ret-throw/
H A DViewDebug$ViewServer.classViewDebug.java package android.view android.view.ViewDebug$ViewServer extends java.lang. ...
/dalvik/libcore/math/src/test/java/org/apache/harmony/math/tests/java/math/
H A DBigIntegerHashCodeTest.java35 * Method: hashCode()
43 notes = "This is a complete subset of tests for hashCode method.",
44 method = "hashCode",
52 int code1 = aNumber1.hashCode();
58 int code2 = aNumber1.hashCode();
67 notes = "This is a complete subset of tests for hashCode method.",
68 method = "hashCode",
76 int code1 = aNumber1.hashCode();
77 int code2 = aNumber2.hashCode();
89 notes = "This is a complete subset of tests for hashCode metho
[all...]
/dalvik/libcore/luni-kernel/src/main/java/java/lang/
H A DObject.java40 * {@link Class} of an object, getting its {@link #hashCode()}, or checking
103 * #hashCode()} methods is that if {@code equals} returns {@code true} for
104 * any two objects, then {@code hashCode()} must return the same value for
113 * @see #hashCode
179 public native int hashCode(); method in class:Object
244 * and a hexadecimal representation of the object's {@link #hashCode()},
248 * getClass().getName() + '@' + Integer.toHexString(hashCode())
255 return getClass().getName() + '@' + Integer.toHexString(hashCode());
/dalvik/libcore/security/src/main/java/org/bouncycastle/crypto/params/
H A DDHKeyParameters.java43 public int hashCode() method in class:DHKeyParameters
49 code ^= params.hashCode();
/dalvik/dx/tests/089-dex-define-object/
H A DObject.java33 public native int hashCode(); method in class:Object

Completed in 564 milliseconds

1234567891011>>