Home
last modified time | relevance | path

Searched defs:h (Results 1 – 25 of 85) sorted by relevance

1234

/libcore/luni/src/test/java/libcore/java/util/
DObjectsTest.java74 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/
DHashtableTest.java57 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/
DFormatter.java74 public String getHead(Handler h) { in getHead()
87 public String getTail(Handler h) { in getTail()
DXMLFormatter.java230 public String getHead(Handler h) { in getHead()
269 public String getTail(Handler h) { in getTail()
/libcore/ojluni/src/main/java/java/security/spec/
DECParameterSpec.java45 private final int h; field in ECParameterSpec
61 BigInteger n, int h) { in ECParameterSpec()
/libcore/ojluni/src/main/java/java/util/concurrent/locks/
DStampedLock.java538 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 …]
DAbstractQueuedLongSynchronizer.java249 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
DAbstractQueuedSynchronizer.java715 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/
DOldFileHandlerTest.java142 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()
DOldFormatterTest.java32 Handler h; field in OldFormatterTest
/libcore/ojluni/src/main/java/sun/misc/
DHashing.java48 int h = k.hashCode(); in singleWordWangJenkinsHash() local
/libcore/ojluni/src/main/java/java/util/
DProperties.java1019 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
DAbstractSet.java121 int h = 0; in hashCode() local
DArrayDeque.java280 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/
DTestLocalTime.java87 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/
DTCKLocalDateTime.java228 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/
DSynchronousQueue.java305 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
DConcurrentLinkedQueue.java253 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/
DHandlerBaseTest.java36 private HandlerBase h = new HandlerBase(); field in HandlerBaseTest
/libcore/ojluni/src/main/java/sun/util/locale/
DBaseLocale.java154 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/
DDefaultHandler2Test.java28 private DefaultHandler2 h = new DefaultHandler2(); field in DefaultHandler2Test
/libcore/ojluni/src/main/java/java/lang/reflect/
DProxy.java260 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/
DDefaultHandlerTest.java37 private DefaultHandler h = new DefaultHandler(); field in DefaultHandlerTest
/libcore/ojluni/src/main/java/java/nio/file/attribute/
DAclEntry.java359 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/
DStriped64.java223 int h; in longAccumulate() local
307 int h; in doubleAccumulate() local

1234