Home
last modified time | relevance | path

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

12

/libcore/luni/src/test/java/tests/api/java/util/
DHashtableTest.java60 Hashtable h = new Hashtable(); in test_Constructor() local
70 Hashtable h = new Hashtable(9); in test_ConstructorI() local
92 Hashtable h = new java.util.Hashtable(10, 0.5f); in test_ConstructorIF() local
156 Hashtable h = hashtableClone(htfull); in test_clear() local
171 Hashtable h = (Hashtable) htfull.clone(); in test_clone() local
334 Hashtable h = hashtableClone(ht10); in test_equalsLjava_lang_Object() local
345 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/lang/reflect/
DProxy.java49 protected InvocationHandler h; field in Proxy
62 protected Proxy(InvocationHandler h) { in Proxy()
206 Class<?>[] interfaces, InvocationHandler h) in newProxyInstance()
277 native private static void constructorPrototype(InvocationHandler h); in constructorPrototype()
/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/net/http/
DRawHeadersTest.java25 RawHeaders h = new RawHeaders(); in test_caseInsensitiveButCasePreserving() local
/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/luni/src/test/java/tests/api/org/xml/sax/
DHandlerBaseTest.java36 private HandlerBase h = new HandlerBase(); field in HandlerBaseTest
/libcore/luni/src/test/java/tests/api/org/xml/sax/ext/
DDefaultHandler2Test.java28 private DefaultHandler2 h = new DefaultHandler2(); field in DefaultHandler2Test
/libcore/luni/src/main/java/java/util/concurrent/
DSynchronousQueue.java273 boolean casHead(SNode h, SNode nh) { in casHead()
321 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()
643 QNode h = head; in transfer() local
752 QNode h = head; in clean() local
DConcurrentLinkedQueue.java239 Node<E> h = null, t = null; in ConcurrentLinkedQueue() local
274 final void updateHead(Node<E> h, Node<E> p) { in updateHead()
752 Node<E> h = null, t = null; in readObject() local
DConcurrentLinkedDeque.java580 Node<E> h, p, q; in updateHead() local
823 Node<E> h = null, t = null; in ConcurrentLinkedDeque() local
841 private void initHeadTail(Node<E> h, Node<E> t) { in initHeadTail()
1395 Node<E> h = null, t = null; in readObject() local
DConcurrentHashMap.java236 private static int hash(int h) { in hash()
429 int h = p.hash; in rehash() local
668 private Segment<K,V> segmentForHash(int h) { in segmentForHash()
677 static final <K,V> HashEntry<K,V> entryForHash(Segment<K,V> seg, int h) { in entryForHash()
883 int h = hash(key.hashCode()); in get() local
911 int h = hash(key.hashCode()); in containsKey() local
DForkJoinTask.java408 int h = System.identityHashCode(this); in setExceptionalCompletion() local
433 int h = System.identityHashCode(this); in clearExceptionalCompletion() local
477 int h = System.identityHashCode(this); in getThrowableException() local
DLinkedBlockingQueue.java181 Node<E> h = head; in dequeue() local
709 Node<E> h = head; in drainTo() local
/libcore/luni/src/test/java/tests/api/org/xml/sax/helpers/
DDefaultHandlerTest.java37 private DefaultHandler h = new DefaultHandler(); field in DefaultHandlerTest
/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/luni/src/main/java/java/util/concurrent/locks/
DAbstractQueuedSynchronizer.java659 Node h = head; in doReleaseShared() local
685 Node h = head; // Record old head for check below in setHeadAndPropagate() local
1237 Node h = head; in release() local
1381 Node h, s; in fullGetFirstQueuedThread() local
1437 Node h, s; in apparentlyFirstQueuedIsExclusive() local
1493 Node h = head; in hasQueuedPredecessors() local
DAbstractQueuedLongSynchronizer.java430 Node h = head; in doReleaseShared() local
456 Node h = head; // Record old head for check below in setHeadAndPropagate() local
1008 Node h = head; in release() local
1152 Node h, s; in fullGetFirstQueuedThread() local
1208 Node h, s; in apparentlyFirstQueuedIsExclusive() local
1263 Node h = head; in hasQueuedPredecessors() local
/libcore/luni/src/main/java/org/apache/harmony/xnet/provider/jsse/
DOpenSSLECGroupContext.java58 BigInteger b, BigInteger x, BigInteger y, BigInteger n, BigInteger h) { in getInstance()
/libcore/luni/src/main/java/java/lang/
DDaemons.java269 Thread.UncaughtExceptionHandler h = Thread.getDefaultUncaughtExceptionHandler(); in finalizerTimedOut() local
/libcore/luni/src/test/java/tests/api/java/lang/reflect/
DProxyTest.java59 protected ProxyCoonstructorTest(InvocationHandler h) { in ProxyCoonstructorTest()
/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
/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/test/java/tests/api/java/io/
DObjectInputStreamTest.java603 Hashtable h = new Hashtable(); field in ObjectInputStreamTest.B1

12