Searched refs:hashCode (Results 276 - 300 of 389) sorted by relevance

<<111213141516

/dalvik/libcore/logging/src/main/java/java/util/logging/
H A DLevel.java355 public int hashCode() { method in class:Level
/dalvik/libcore/logging/src/test/java/org/apache/harmony/logging/tests/java/util/logging/
H A DLevelTest.java331 * Test method hashCode, with normal fields.
336 method = "hashCode",
340 assertEquals(100, Level.parse("100").hashCode());
341 assertEquals(-1, Level.parse("-1").hashCode());
342 assertEquals(0, Level.parse("0").hashCode());
343 assertEquals(Integer.MIN_VALUE, Level.parse("ALL").hashCode());
/dalvik/libcore/luni/src/main/java/java/lang/
H A DDouble.java202 public int hashCode() { method in class:Double
H A DFloat.java206 public int hashCode() { method in class:Float
/dalvik/libcore/luni/src/test/java/org/apache/harmony/luni/tests/java/lang/
H A DShortTest.java426 * @tests java.lang.Short#hashCode()
431 method = "hashCode",
435 assertEquals(1, new Short((short)1).hashCode());
436 assertEquals(2, new Short((short)2).hashCode());
437 assertEquals(0, new Short((short)0).hashCode());
438 assertEquals(-1, new Short((short)-1).hashCode());
H A DThreadLocalTest.java125 public int hashCode() {
126 fail("ThreadLocal should not be asked for it's hashCode");
H A DPackageTest.java291 * @tests java.lang.Package#hashCode()
296 method = "hashCode",
302 assertEquals(p1.hashCode(), "java.lang".hashCode());
/dalvik/libcore/math/src/test/java/org/apache/harmony/math/tests/java/math/
H A DBigDecimalCompareTest.java37 * Methods: abs, compareTo, equals, hashCode,
348 * hashCode() for equal BigDecimals
352 notes = "This is a complete subset of tests for hashCode method.",
353 method = "hashCode",
363 assertEquals("incorrect value", aNumber.hashCode(), bNumber.hashCode());
367 * hashCode() for unequal BigDecimals
371 notes = "This is a complete subset of tests for hashCode method.",
372 method = "hashCode",
382 assertTrue("incorrect value", aNumber.hashCode() !
[all...]
/dalvik/libcore/nio/src/main/java/java/nio/
H A DDoubleBuffer.java365 public int hashCode() { method in class:DoubleBuffer
H A DFloatBuffer.java365 public int hashCode() { method in class:FloatBuffer
H A DIntBuffer.java352 public int hashCode() { method in class:IntBuffer
H A DLongBuffer.java355 public int hashCode() { method in class:LongBuffer
H A DShortBuffer.java354 public int hashCode() { method in class:ShortBuffer
/dalvik/libcore/security/src/main/java/org/apache/harmony/security/asn1/
H A DObjectIdentifier.java110 * @see java.lang.Object#hashCode()
112 public int hashCode() { method in class:ObjectIdentifier
113 // FIXME change me to Arrays.hashCode(int[])
/dalvik/libcore/security/src/main/java/org/apache/harmony/security/x509/
H A DGeneralName.java331 public int hashCode() { method in class:GeneralName
338 return name.hashCode();
343 return getEncoded().hashCode();
345 return super.hashCode();
/dalvik/libcore/security/src/main/java/org/bouncycastle/asn1/
H A DDERBitString.java221 public int hashCode() method in class:DERBitString
/dalvik/dx/src/com/android/dx/rop/type/
H A DType.java476 public int hashCode() { method in class:Type
477 return descriptor.hashCode();
/dalvik/libcore/json/src/main/java/org/json/
H A DJSONArray.java581 @Override public int hashCode() { method in class:JSONArray
582 // diverge from the original, which doesn't implement hashCode
583 return values.hashCode();
/dalvik/libcore/luni/src/main/java/java/net/
H A DSocketPermission.java150 * @see #hashCode
186 public int hashCode() { method in class:SocketPermission
187 return hostName.hashCode() ^ actionsMask ^ portMin ^ portMax;
H A DURLStreamHandler.java339 * @see #hashCode
390 protected int hashCode(URL url) { method in class:URLStreamHandler
391 return toExternalForm(url).hashCode();
/dalvik/libcore/luni/src/main/java/java/util/
H A DAbstractList.java485 * @see #hashCode
527 * @see List#hashCode()
530 public int hashCode() { method in class:AbstractList
535 result = (31 * result) + (object == null ? 0 : object.hashCode());
H A DCalendar.java1092 public int hashCode() { method in class:Calendar
1094 + getMinimalDaysInFirstWeek() + getTimeZone().hashCode();
/dalvik/libcore/nio/src/main/java/org/apache/harmony/nio/internal/
H A DSelectorImpl.java439 public int hashCode() { method in class:SelectorImpl.UnaddableSet
440 return set.hashCode();
/dalvik/libcore/xml/src/main/java/org/apache/xpath/objects/
H A DXString.java625 public int hashCode() method in class:XString
627 return str().hashCode();
H A DXStringForFSB.java558 public int hashCode() method in class:XStringForFSB
586 return super.hashCode(); // h;

Completed in 3917 milliseconds

<<111213141516