/libcore/ojluni/src/test/java/lang/invoke/ |
D | ArrayConstructorTest.java | 50 MethodHandle h = LOOKUP.findConstructor(Object[].class, methodType(void.class)); in testFindConstructorArray() local 72 MethodHandle h = MethodHandles.arrayConstructor(clazz); in testArrayConstructorNegative() local 85 MethodHandle h = MethodHandles.arrayConstructor(String[].class); in testArrayConstructor() local 93 MethodHandle h = MethodHandles.arrayConstructor(String[].class); in testArrayConstructorNegativeIndex() local
|
/libcore/ojluni/annotations/sdk/nullability/java/lang/reflect/ |
D | Proxy.annotated.java | 35 …ibcore.util.NonNull java.lang.reflect.InvocationHandler h) { throw new RuntimeException("Stub!"); } in Proxy() 39 … Class<?> @libcore.util.NonNull [] interfaces, @libcore.util.NonNull java.lang.reflect.InvocationH… in newProxyInstance() 45 protected java.lang.reflect.InvocationHandler h; field in Proxy
|
/libcore/luni/src/main/java/libcore/util/ |
D | FP16.java | 313 public static short rint(short h) { in rint() 358 public static short ceil(short h) { in ceil() 401 public static short floor(short h) { in floor() 442 public static short trunc(short h) { in trunc() 628 public static boolean isInfinite(short h) { in isInfinite() 642 public static boolean isNaN(short h) { in isNaN() 659 public static boolean isNormalized(short h) { in isNormalized() 681 public static float toFloat(short h) { in toFloat() 820 public static String toHexString(short h) { in toHexString()
|
/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 | 231 public String getHead(Handler h) { in getHead() 270 public String getTail(Handler h) { in getTail()
|
/libcore/luni/src/test/java/libcore/java/util/ |
D | ObjectsTest.java | 179 Hello h = new Hello(); in test_hashCode() local 185 Hello h = new Hello(); in test_requireNonNull_T() local 196 Hello h = new Hello(); in test_requireNonNull_T_String() local 213 Hello h = new Hello(); in test_requireNonNull_T_Supplier() local
|
/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/annotations/hiddenapi/java/security/spec/ |
D | ECParameterSpec.java | 38 int h) { in ECParameterSpec() 82 private final int h; field in ECParameterSpec
|
/libcore/luni/src/test/java/libcore/javax/xml/datatype/ |
D | DurationImpl.java | 53 long h = millis / 3600000L; in DurationImpl() local 66 DurationImpl(int sgn, int y, int months, int d, int h, int m, float s) { in DurationImpl()
|
/libcore/luni/src/test/java/libcore/java/util/logging/ |
D | OldFileHandlerTest.java | 142 FileHandler h = new FileHandler("%t/log/string"); in testFileHandler_1params() local 492 public String getTail(Handler h) { in getTail() 496 public String getHead(Handler h) { in getHead()
|
D | OldFormatterTest.java | 32 Handler h; field in OldFormatterTest
|
/libcore/ojluni/src/main/java/java/util/ |
D | AbstractSet.java | 119 int h = 0; in hashCode() 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/annotations/mmodule/java/security/spec/ |
D | ECParameterSpec.annotated.java | 33 …llipticCurve curve, java.security.spec.ECPoint g, java.math.BigInteger n, int h) { throw new Runti… in ECParameterSpec()
|
/libcore/ojluni/src/test/java/time/tck/java/time/ |
D | TCKLocalDateTime.java | 227 private void check(LocalDateTime test, int y, int m, int d, int h, int mi, int s, int n) { in check() 231 assertEquals(test.getHour(), h); in check() local
|
/libcore/ojluni/src/main/java/java/lang/reflect/ |
D | Proxy.java | 257 protected InvocationHandler h; field in Proxy 275 protected Proxy(InvocationHandler h) { in Proxy() 856 InvocationHandler h) in newProxyInstance() 1005 InvocationHandler h = proxy.h; in invoke() local
|
/libcore/ojluni/src/main/java/java/util/concurrent/ |
D | SynchronousQueue.java | 315 boolean casHead(SNode h, SNode nh) { in casHead() 364 SNode h = head; in transfer() local 594 QNode h = new QNode(null, false); // initialize to dummy node. in TransferQueue() local 603 void advanceHead(QNode h, QNode nh) { in advanceHead() 658 QNode t = tail, h = head, m, tn; // m is node to fulfill in transfer() local 745 QNode h = head; in clean() local
|
/libcore/ojluni/annotations/hiddenapi/java/lang/reflect/ |
D | Proxy.java | 38 protected Proxy(java.lang.reflect.InvocationHandler h) { in Proxy() 87 java.lang.reflect.InvocationHandler h) in newProxyInstance() 121 protected java.lang.reflect.InvocationHandler h; field in Proxy
|
/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/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/util/concurrent/locks/ |
D | AbstractQueuedSynchronizer.java | 567 Node h = new ExclusiveNode(); in tryInitializeHead() local 607 private static void signalNext(Node h) { in signalNext() 616 private static void signalNextIfShared(Node h) { in signalNextIfShared() 1143 Thread first = null, w; Node h, s; in getFirstQueuedThread() local 1184 Node h, s; in apparentlyFirstQueuedIsExclusive() local 1233 Thread first = null; Node h, s; in hasQueuedPredecessors() local
|
D | AbstractQueuedLongSynchronizer.java | 202 Node h = new ExclusiveNode(); in tryInitializeHead() local 242 private static void signalNext(Node h) { in signalNext() 251 private static void signalNextIfShared(Node h) { in signalNextIfShared() 777 Thread first = null, w; Node h, s; in getFirstQueuedThread() local 818 Node h, s; in apparentlyFirstQueuedIsExclusive() local 867 Thread first = null; Node h, s; in hasQueuedPredecessors() local
|
/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/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
|