| /libcore/luni/src/test/java/libcore/java/util/ |
| D | ObjectsTest.java | 74 Hello h = new Hello(); in test_hashCode() local 80 Hello h = new Hello(); in test_requireNonNull_T() local 91 Hello h = new Hello(); in test_requireNonNull_T_String() local 108 Hello h = new Hello(); in test_requireNonNull_T_Supplier() local
|
| /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/ |
| D | HashtableTest.java | 57 Hashtable h = new Hashtable(); in test_Constructor() local 67 Hashtable h = new Hashtable(9); in test_ConstructorI() local 82 Hashtable h = new java.util.Hashtable(10, 0.5f); in test_ConstructorIF() local 140 Hashtable h = hashtableClone(htfull); in test_clear() local 155 Hashtable h = (Hashtable) htfull.clone(); in test_clone() local 326 Hashtable h = hashtableClone(ht10); in test_equalsLjava_lang_Object() local 337 Hashtable h = hashtableClone(htfull); in test_getLjava_lang_Object() local 603 Hashtable h = hashtableClone(ht100); in test_putLjava_lang_ObjectLjava_lang_Object() local 634 Hashtable h = new Hashtable(); in test_putAllLjava_util_Map() local 657 Hashtable h = hashtableClone(htfull); in test_removeLjava_lang_Object() local [all …]
|
| /libcore/ojluni/src/main/java/java/util/logging/ |
| D | Formatter.java | 74 public String getHead(Handler h) { in getHead() 87 public String getTail(Handler h) { in getTail()
|
| D | XMLFormatter.java | 230 public String getHead(Handler h) { in getHead() 269 public String getTail(Handler h) { in getTail()
|
| /libcore/ojluni/src/main/java/java/security/spec/ |
| D | ECParameterSpec.java | 45 private final int h; field in ECParameterSpec 61 BigInteger n, int h) { in ECParameterSpec()
|
| /libcore/ojluni/src/main/java/java/util/concurrent/locks/ |
| D | StampedLock.java | 538 WNode h; in unlockWrite() local 555 long s, m; WNode h; in unlockRead() local 581 long a = stamp & ABITS, m, s; WNode h; in unlock() local 657 long a = stamp & ABITS, m, s, next; WNode h; in tryConvertToReadLock() local 696 long a = stamp & ABITS, m, s, next; WNode h; in tryConvertToOptimisticRead() local 738 long s; WNode h; in tryUnlockWrite() local 756 long s, m; WNode h; in tryUnlockRead() local 920 WNode h; long s; in unstampedUnlockWrite() local 930 long s, m; WNode h; in unstampedUnlockRead() local 1010 private void release(WNode h) { in release() [all …]
|
| D | AbstractQueuedLongSynchronizer.java | 249 Node h = head; in doReleaseShared() local 275 Node h = head; // Record old head for check below in setHeadAndPropagate() local 820 Node h = head; in release() local 964 Node h, s; in fullGetFirstQueuedThread() local 1018 Node h, s; in apparentlyFirstQueuedIsExclusive() local 1073 Node h = head; in hasQueuedPredecessors() local 1848 Node h; in initializeSyncQueue() local
|
| D | AbstractQueuedSynchronizer.java | 715 Node h = head; in doReleaseShared() local 741 Node h = head; // Record old head for check below in setHeadAndPropagate() local 1286 Node h = head; in release() local 1430 Node h, s; in fullGetFirstQueuedThread() local 1484 Node h, s; in apparentlyFirstQueuedIsExclusive() local 1539 Node h = head; in hasQueuedPredecessors() local 2312 Node h; in initializeSyncQueue() local
|
| /libcore/luni/src/test/java/libcore/java/util/logging/ |
| D | OldFileHandlerTest.java | 142 FileHandler h = new FileHandler("%t/log/string"); in testFileHandler_1params() local 469 FileHandler h = new FileHandler("%t/log/stringPublish"); in testClose() local 493 public String getTail(Handler h) { in getTail() 497 public String getHead(Handler h) { in getHead()
|
| D | OldFormatterTest.java | 32 Handler h; field in OldFormatterTest
|
| /libcore/ojluni/src/main/java/sun/misc/ |
| D | Hashing.java | 48 int h = k.hashCode(); in singleWordWangJenkinsHash() local
|
| /libcore/ojluni/src/main/java/java/util/ |
| D | Properties.java | 1019 Hashtable<String,Object> h = new Hashtable<>(); in propertyNames() local 1043 Hashtable<String, String> h = new Hashtable<>(); in stringPropertyNames() local 1058 Hashtable<String,Object> h = new Hashtable<>(); in list() local 1086 Hashtable<String,Object> h = new Hashtable<>(); in list() local 1104 private synchronized void enumerate(Hashtable<String,Object> h) { in enumerate() 1119 private synchronized void enumerateStringProperties(Hashtable<String, String> h) { in enumerateStringProperties() argument
|
| D | AbstractSet.java | 121 int h = 0; in hashCode() local
|
| D | ArrayDeque.java | 280 final int h = head; in pollFirst() local 524 final int h = head; in delete() local 739 int h = head; in clear() local 936 int t = getFence(), h = index, n = deq.elements.length; in trySplit() local
|
| /libcore/ojluni/src/test/java/time/test/java/time/ |
| D | TestLocalTime.java | 87 private void check(LocalTime time, int h, int m, int s, int n) { in check() 88 assertEquals(time.getHour(), h); in check() local
|
| /libcore/ojluni/src/test/java/time/tck/java/time/ |
| D | TCKLocalDateTime.java | 228 private void check(LocalDateTime test, int y, int m, int d, int h, int mi, int s, int n) { in check() 232 assertEquals(test.getHour(), h); in check() local
|
| /libcore/ojluni/src/main/java/java/util/concurrent/ |
| D | SynchronousQueue.java | 305 boolean casHead(SNode h, SNode nh) { in casHead() 354 SNode h = head; in transfer() local 470 SNode h = head; in shouldSpin() local 606 QNode h = new QNode(null, false); // initialize to dummy node. in TransferQueue() local 615 void advanceHead(QNode h, QNode nh) { in advanceHead() 672 QNode h = head; in transfer() local 780 QNode h = head; in clean() local
|
| D | ConcurrentLinkedQueue.java | 253 Node<E> h = null, t = null; in ConcurrentLinkedQueue() local 287 final void updateHead(Node<E> h, Node<E> p) { in updateHead() 709 Node<E> h, p, q; in Itr() local 797 Node<E> h = null, t = null; in readObject() local
|
| /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/org/xml/sax/ |
| D | HandlerBaseTest.java | 36 private HandlerBase h = new HandlerBase(); field in HandlerBaseTest
|
| /libcore/ojluni/src/main/java/sun/util/locale/ |
| D | BaseLocale.java | 154 int h = hash; in hashCode() local 188 int h = language.hashCode(); in Key() local 204 int h = 0; in Key() local
|
| /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/org/xml/sax/ext/ |
| D | DefaultHandler2Test.java | 28 private DefaultHandler2 h = new DefaultHandler2(); field in DefaultHandler2Test
|
| /libcore/ojluni/src/main/java/java/lang/reflect/ |
| D | Proxy.java | 260 protected InvocationHandler h; field in Proxy 303 protected Proxy(InvocationHandler h) { in Proxy() 805 InvocationHandler h) in newProxyInstance() 912 InvocationHandler h = proxy.h; in invoke() local
|
| /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/org/xml/sax/helpers/ |
| D | DefaultHandlerTest.java | 37 private DefaultHandler h = new DefaultHandler(); field in DefaultHandlerTest
|
| /libcore/ojluni/src/main/java/java/nio/file/attribute/ |
| D | AclEntry.java | 359 private static int hash(int h, Object o) { in hash() 374 int h = type.hashCode(); in hashCode() local
|
| /libcore/ojluni/src/main/java/java/util/concurrent/atomic/ |
| D | Striped64.java | 223 int h; in longAccumulate() local 307 int h; in doubleAccumulate() local
|