/libcore/luni/src/test/java/libcore/libcore/io/ |
D | FdsanTest.java | 39 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/ |
D | Object.java | 115 return identityHashCode(this); in hashCode() 121 /* package-private */ static int identityHashCode(Object obj) { in identityHashCode() method in Object
|
D | System.java | 902 public static int identityHashCode(Object x) { in identityHashCode() method in System 906 return Object.identityHashCode(x); in identityHashCode()
|
D | Thread.java | 2257 hash = System.identityHashCode(cl); in WeakClassKey()
|
/libcore/ojluni/src/main/java/java/lang/reflect/ |
D | WeakCache.java | 282 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/ |
D | SystemTest.java | 254 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/ |
D | OldObjectTest.java | 42 int h1 = System.identityHashCode(o1); in test_hashCode() 43 int h2 = System.identityHashCode(o2); in test_hashCode()
|
D | StringTest.java | 191 assertEquals(System.identityHashCode(programmatic), System.identityHashCode(literal)); in testInternBeforeLiteralIsLoaded()
|
D | LambdaImplementationTest.java | 380 assertEquals(System.identityHashCode(r1), r1.hashCode()); in assertGeneralLambdaClassCharacteristics()
|
D | ProcessBuilderTest.java | 519 assertEquals(System.identityHashCode(redirect), redirect.hashCode()); in assertIdentityHashCode()
|
/libcore/ojluni/annotations/hiddenapi/java/lang/ |
D | Object.java | 47 static int identityHashCode(java.lang.Object obj) { in identityHashCode() method in Object
|
D | System.java | 144 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/ |
D | DistinctOpTest.java | 196 assertEquals(System.identityHashCode(l.get(0)), in testStable() 197 System.identityHashCode(expectedElement)); in testStable()
|
/libcore/ojluni/src/main/java/java/util/ |
D | IdentityHashMap.java | 294 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()
|
D | HashMap.java | 1900 d = (System.identityHashCode(a) <= System.identityHashCode(b) ? in tieBreakOrder()
|
/libcore/ojluni/annotations/mmodule/java/lang/ |
D | System.annotated.java | 61 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/ |
D | ForkJoinTask.java | 447 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()
|
D | ConcurrentHashMap.java | 2802 d = (System.identityHashCode(a) <= System.identityHashCode(b) ? in tieBreakOrder()
|
/libcore/ojluni/annotations/sdk/nullability/java/lang/ |
D | System.annotated.java | 61 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/ |
D | DerValue.java | 797 return (System.identityHashCode(this.data) in equals() 798 > System.identityHashCode(other.data)) ? in equals()
|
/libcore/luni/src/main/java/libcore/io/ |
D | IoUtils.java | 112 long tagValue = System.identityHashCode(owner); in generateFdOwnerId()
|
/libcore/ojluni/src/main/java/java/io/ |
D | ObjectStreamClass.java | 2317 hash = System.identityHashCode(cl) + sigs.hashCode(); in FieldReflectorKey() 2468 hash = System.identityHashCode(cl); in WeakClassKey()
|
D | ObjectOutputStream.java | 2460 return System.identityHashCode(obj) & 0x7FFFFFFF; in hash()
|
/libcore/json/src/test/java/libcore/org/json/ |
D | JSONObjectTest.java | 120 assertEquals(a.hashCode(), System.identityHashCode(a)); in testEqualsAndHashCode()
|