Home
last modified time | relevance | path

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

12

/libcore/luni/src/test/java/libcore/java/util/
DObjectsTest.java73 Hello h = new Hello(); in test_hashCode() local
79 Hello h = new Hello(); in test_requireNonNull_T() local
90 Hello h = new Hello(); in test_requireNonNull_T_String() 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/luni/src/main/java/java/util/logging/
DFormatter.java100 public String getHead(Handler h) { in getHead()
113 public String getTail(Handler h) { in getTail()
DXMLFormatter.java151 public String getHead(Handler h) { in getHead()
177 public String getTail(Handler h) { in getTail()
/libcore/luni/src/test/java/libcore/java/util/logging/
DOldFileHandlerTest.java141 FileHandler h = new FileHandler("%t/log/string"); in testFileHandler_1params() local
464 FileHandler h = new FileHandler("%t/log/stringPublish"); in testClose() local
488 public String getTail(Handler h) { in getTail()
492 public String getHead(Handler h) { in getHead()
DOldFormatterTest.java32 Handler h; field in OldFormatterTest
/libcore/libart/src/main/java/java/lang/reflect/
DProxy.java70 protected InvocationHandler h; field in Proxy
83 protected Proxy(InvocationHandler h) { in Proxy()
393 private static native void constructorPrototype(InvocationHandler h); in constructorPrototype()
396 InvocationHandler h = proxy.h; in invoke() local
/libcore/luni/src/main/java/java/util/concurrent/
DSynchronousQueue.java274 boolean casHead(SNode h, SNode nh) { in casHead()
323 SNode h = head; in transfer() local
438 SNode h = head; in shouldSpin() local
578 QNode h = new QNode(null, false); // initialize to dummy node. in TransferQueue() local
587 void advanceHead(QNode h, QNode nh) { in advanceHead()
644 QNode h = head; in transfer() local
751 QNode h = head; in clean() local
DConcurrentLinkedQueue.java237 Node<E> h = null, t = null; in ConcurrentLinkedQueue() local
272 final void updateHead(Node<E> h, Node<E> p) { in updateHead()
748 Node<E> h = null, t = null; in readObject() local
DConcurrentHashMap.java457 Node<K,V> find(int h, Object k) { in find()
489 static final int spread(int h) { in spread()
746 int h = spread(key.hashCode()); in get() local
1098 int h = 0; in hashCode() local
1274 int h = p.hash, j = h & mask; in readObject() local
1504 Node<K,V> find(int h, Object k) { in find()
1530 Node<K,V> find(int h, Object k) { in find()
1767 int h = e.hash; in transfer() local
1873 Node<K,V> find(int h, Object k) { in find()
1881 final TreeNode<K,V> findTreeNode(int h, Object k, Class<?> kc) { in findTreeNode()
[all …]
DConcurrentLinkedDeque.java577 Node<E> h, p, q; in updateHead() local
820 Node<E> h = null, t = null; in ConcurrentLinkedDeque() local
838 private void initHeadTail(Node<E> h, Node<E> t) { in initHeadTail()
1390 Node<E> h = null, t = null; in readObject() local
DLinkedBlockingQueue.java180 Node<E> h = head; in dequeue() local
706 Node<E> h = head; in drainTo() local
DForkJoinTask.java426 int h = System.identityHashCode(this); in recordExceptionalCompletion() local
486 int h = System.identityHashCode(this); in clearExceptionalCompletion() local
530 int h = System.identityHashCode(this); in getThrowableException() 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/harmony-tests/src/test/java/org/apache/harmony/tests/org/xml/sax/ext/
DDefaultHandler2Test.java28 private DefaultHandler2 h = new DefaultHandler2(); field in DefaultHandler2Test
/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/jsr166-tests/src/test/java/jsr166/
DThreadPoolExecutorTest.java248 final RejectedExecutionHandler h = new NoOpREHandler(); in testGetRejectedExecutionHandler() local
267 RejectedExecutionHandler h = new NoOpREHandler(); in testSetRejectedExecutionHandler() local
1114 RejectedExecutionHandler h = new ThreadPoolExecutor.CallerRunsPolicy(); in testSaturatedExecute2() local
1141 RejectedExecutionHandler h = new ThreadPoolExecutor.DiscardPolicy(); in testSaturatedExecute3() local
1166 RejectedExecutionHandler h = new ThreadPoolExecutor.DiscardOldestPolicy(); in testSaturatedExecute4() local
1208 RejectedExecutionHandler h = new ThreadPoolExecutor.CallerRunsPolicy(); in testCallerRunsOnShutdown() local
1228 RejectedExecutionHandler h = new ThreadPoolExecutor.DiscardPolicy(); in testDiscardOnShutdown() local
1249 RejectedExecutionHandler h = new ThreadPoolExecutor.DiscardOldestPolicy(); in testDiscardOldestOnShutdown() local
DThreadPoolExecutorSubclassTest.java365 RejectedExecutionHandler h = new NoOpREHandler(); in testGetRejectedExecutionHandler() local
377 RejectedExecutionHandler h = new NoOpREHandler(); in testSetRejectedExecutionHandler() local
1015 RejectedExecutionHandler h = new CustomTPE.CallerRunsPolicy(); in testSaturatedExecute2() local
1040 RejectedExecutionHandler h = new CustomTPE.DiscardPolicy(); in testSaturatedExecute3() local
1065 RejectedExecutionHandler h = new CustomTPE.DiscardOldestPolicy(); in testSaturatedExecute4() local
1101 RejectedExecutionHandler h = new CustomTPE.CallerRunsPolicy(); in testCallerRunsOnShutdown() local
1118 RejectedExecutionHandler h = new CustomTPE.DiscardPolicy(); in testDiscardOnShutdown() local
1135 RejectedExecutionHandler h = new CustomTPE.DiscardOldestPolicy(); in testDiscardOldestOnShutdown() local
/libcore/luni/src/main/java/java/util/concurrent/locks/
DAbstractQueuedSynchronizer.java662 Node h = head; in doReleaseShared() local
688 Node h = head; // Record old head for check below in setHeadAndPropagate() local
1239 Node h = head; in release() local
1383 Node h, s; in fullGetFirstQueuedThread() local
1439 Node h, s; in apparentlyFirstQueuedIsExclusive() local
1494 Node h = head; in hasQueuedPredecessors() local
DAbstractQueuedLongSynchronizer.java432 Node h = head; in doReleaseShared() local
458 Node h = head; // Record old head for check below in setHeadAndPropagate() local
1009 Node h = head; in release() local
1153 Node h, s; in fullGetFirstQueuedThread() local
1209 Node h, s; in apparentlyFirstQueuedIsExclusive() local
1264 Node h = head; in hasQueuedPredecessors() local
/libcore/luni/src/main/java/java/util/
DArrayDeque.java263 int h = head; in pollFirst() local
508 final int h = head; in delete() local
705 int h = head; in clear() local
/libcore/libart/src/main/java/java/lang/
DDaemons.java284 Thread.UncaughtExceptionHandler h = Thread.getDefaultUncaughtExceptionHandler(); in finalizerTimedOut() local
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/lang/reflect/
DProxyTest.java62 protected ProxyCoonstructorTest(InvocationHandler h) { in ProxyCoonstructorTest()
/libcore/luni/src/main/java/java/net/
DURLClassLoader.java281 URLHandler h = getSubHandler(url); in findResources() local
317 URLHandler h = getSubHandler(url); in findClass() local
390 URLHandler h = getSubHandler(url); in findResource() local
/libcore/luni/src/main/java/libcore/io/
DMemory.java61 int h = ((src[offset++] & 0xff) << 24) | in peekLong() local
75 int h = ((src[offset++] & 0xff) << 0) | in peekLong() local

12