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

<<111213141516

/dalvik/libcore/luni/src/test/java/tests/api/java/net/
H A DURITest.java1401 * @tests java.net.URI#hashCode()
1406 method = "hashCode",
1470 + " " + r.toString(), hashCodeResults[i], b.hashCode() == r
1471 .hashCode());
/dalvik/libcore/luni/src/main/java/java/util/
H A DTreeMap.java99 public int hashCode() { method in class:TreeMap.MapEntry
101 return (key == null ? 0 : key.hashCode())
102 ^ (value == null ? 0 : value.hashCode());
H A DFormatter.java280 * Invokes {@code hashCode} on its argument, which may be of any type.
1483 result = Integer.toHexString(arg.hashCode());
/dalvik/libcore/luni/src/test/java/tests/api/java/util/
H A DCalendarTest.java1030 method = "hashCode",
1043 assertTrue(cal1.hashCode() != cal2.hashCode());
H A DFormatterTest.java112 public int hashCode() { method in class:FormatterTest.MockFormattable
1577 Integer.toHexString(input[i].hashCode()), f.toString());
1582 Integer.toHexString(input[i].hashCode()).toUpperCase(Locale.US), f.toString());
/dalvik/libcore/json/src/test/java/org/json/
H A DJSONObjectTest.java103 // JSON object doesn't override either equals or hashCode (!)
105 assertEquals(a.hashCode(), System.identityHashCode(a));
/dalvik/libcore/xml/src/main/java/org/apache/xml/dtm/ref/
H A DDTMDefaultBase.java643 File f = new File("DTMDump"+((Object)this).hashCode()+".txt");
/dalvik/libcore/text/src/test/java/org/apache/harmony/text/tests/java/text/
H A DDecimalFormatTest.java2100 * @tests java.text.DecimalFormat#hashCode() Test of method
2101 * java.text.DecimalFormat#hashCode().
2106 method = "hashCode",
2114 .hashCode() == df1.hashCode());
H A DMessageFormatTest.java394 * @tests java.text.MessageFormat#hashCode()
399 method = "hashCode",
404 // int java.text.MessageFormat.hashCode()
406 .hashCode());
/dalvik/libcore/luni/src/test/java/org/apache/harmony/luni/tests/java/lang/
H A DThreadGroupTest.java1824 return 1 + ((new Object()).hashCode() % max);
H A DCharacterTest.java1214 * @tests java.lang.Character#hashCode()
1219 method = "hashCode",
1224 89, new Character('Y').hashCode());
/dalvik/libcore/security/src/main/java/org/bouncycastle/jce/provider/
H A DJDKPKCS12KeyStore.java129 public int hashCode() method in class:JDKPKCS12KeyStore.CertId
/dalvik/libcore/support/src/test/java/tests/resources/
H A Djunit4-4.3.1.jarMETA-INF/ META-INF/MANIFEST.MF junit/ junit/extensions/ junit/framework/ junit/runner/ junit/textui/ org/ ...
/dalvik/libcore/luni/src/test/java/tests/api/java/io/
H A DSerializationStressTest4.java2509 public int hashCode() {

Completed in 738 milliseconds

<<111213141516