Home
last modified time | relevance | path

Searched refs:identityHashCode (Results 1 – 24 of 24) sorted by relevance

/libcore/luni/src/test/java/libcore/libcore/io/
DFdsanTest.java39 assertEquals(System.identityHashCode(fis), Libcore.os.android_fdsan_get_tag_value(tag)); in testFileInputStream()
49 assertEquals(System.identityHashCode(fis), Libcore.os.android_fdsan_get_tag_value(tag)); in testFileOutputStream()
59 assertEquals(System.identityHashCode(fis), Libcore.os.android_fdsan_get_tag_value(tag)); in testRandomAccessFile()
83 assertEquals(System.identityHashCode(pfd), Libcore.os.android_fdsan_get_tag_value(tag)); in testParcelFileDescriptor()
/libcore/ojluni/src/main/java/java/lang/
DObject.java115 return identityHashCode(this); in hashCode()
121 /* package-private */ static int identityHashCode(Object obj) { in identityHashCode() method in Object
DSystem.java902 public static int identityHashCode(Object x) { in identityHashCode() method in System
906 return Object.identityHashCode(x); in identityHashCode()
DThread.java2257 hash = System.identityHashCode(cl); in WeakClassKey()
/libcore/ojluni/src/main/java/java/lang/reflect/
DWeakCache.java282 return System.identityHashCode(value); // compare by identity in hashCode()
303 this.hash = System.identityHashCode(value); // compare by identity in CacheValue()
345 this.hash = System.identityHashCode(key); // compare by identity in CacheKey()
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/lang/
DSystemTest.java254 0, System.identityHashCode(null)); in test_identityHashCodeLjava_lang_Object()
256 .identityHashCode(o) == o.hashCode()); in test_identityHashCodeLjava_lang_Object()
258 .identityHashCode(s) != s.hashCode()); in test_identityHashCodeLjava_lang_Object()
/libcore/luni/src/test/java/libcore/java/lang/
DOldObjectTest.java42 int h1 = System.identityHashCode(o1); in test_hashCode()
43 int h2 = System.identityHashCode(o2); in test_hashCode()
DStringTest.java191 assertEquals(System.identityHashCode(programmatic), System.identityHashCode(literal)); in testInternBeforeLiteralIsLoaded()
DLambdaImplementationTest.java380 assertEquals(System.identityHashCode(r1), r1.hashCode()); in assertGeneralLambdaClassCharacteristics()
DProcessBuilderTest.java519 assertEquals(System.identityHashCode(redirect), redirect.hashCode()); in assertIdentityHashCode()
/libcore/ojluni/annotations/hiddenapi/java/lang/
DObject.java47 static int identityHashCode(java.lang.Object obj) { in identityHashCode() method in Object
DSystem.java144 public static int identityHashCode(java.lang.Object x) { in identityHashCode() method in System
/libcore/ojluni/src/test/java/util/stream/test/org/openjdk/tests/java/util/stream/
DDistinctOpTest.java196 assertEquals(System.identityHashCode(l.get(0)), in testStable()
197 System.identityHashCode(expectedElement)); in testStable()
/libcore/ojluni/src/main/java/java/util/
DIdentityHashMap.java294 int h = System.identityHashCode(x); in hash()
688 result += System.identityHashCode(k) ^ in hashCode()
689 System.identityHashCode(tab[i + 1]); in hashCode()
899 return (System.identityHashCode(unmaskNull(traversalTable[index])) ^ in hashCode()
900 System.identityHashCode(traversalTable[index+1])); in hashCode()
1011 result += System.identityHashCode(key); in hashCode()
DHashMap.java1900 d = (System.identityHashCode(a) <= System.identityHashCode(b) ? in tieBreakOrder()
/libcore/ojluni/annotations/mmodule/java/lang/
DSystem.annotated.java61 public static int identityHashCode(java.lang.Object x) { throw new RuntimeException("Stub!"); } in identityHashCode() method in System
/libcore/ojluni/src/main/java/java/util/concurrent/
DForkJoinTask.java447 this.hashCode = System.identityHashCode(task); in ExceptionNode()
459 int h = System.identityHashCode(this); in recordExceptionalCompletion()
520 int h = System.identityHashCode(this); in clearExceptionalCompletion()
562 int h = System.identityHashCode(this); in getThrowableException()
DConcurrentHashMap.java2802 d = (System.identityHashCode(a) <= System.identityHashCode(b) ? in tieBreakOrder()
/libcore/ojluni/annotations/sdk/nullability/java/lang/
DSystem.annotated.java61 public static int identityHashCode(@libcore.util.Nullable java.lang.Object x) { throw new RuntimeEx… in identityHashCode() method in System
/libcore/ojluni/src/main/java/sun/security/util/
DDerValue.java797 return (System.identityHashCode(this.data) in equals()
798 > System.identityHashCode(other.data)) ? in equals()
/libcore/luni/src/main/java/libcore/io/
DIoUtils.java112 long tagValue = System.identityHashCode(owner); in generateFdOwnerId()
/libcore/ojluni/src/main/java/java/io/
DObjectStreamClass.java2317 hash = System.identityHashCode(cl) + sigs.hashCode(); in FieldReflectorKey()
2468 hash = System.identityHashCode(cl); in WeakClassKey()
DObjectOutputStream.java2460 return System.identityHashCode(obj) & 0x7FFFFFFF; in hash()
/libcore/json/src/test/java/libcore/org/json/
DJSONObjectTest.java120 assertEquals(a.hashCode(), System.identityHashCode(a)); in testEqualsAndHashCode()