/libcore/ojluni/src/main/java/sun/misc/ |
D | Cleaner.java | 71 static private Cleaner first = null; field in Cleaner 78 if (first != null) { in add() 79 cl.next = first; in add() 80 first.prev = cl; in add() 82 first = cl; in add() 93 if (first == cl) { in remove() 95 first = cl.next; in remove() 97 first = cl.prev; in remove()
|
/libcore/ojluni/src/main/java/java/util/concurrent/ |
D | DelayQueue.java | 193 E first = q.peek(); in poll() local 194 return (first == null || first.getDelay(NANOSECONDS) > 0) in poll() 214 E first = q.peek(); in take() local 215 if (first == null) in take() 218 long delay = first.getDelay(NANOSECONDS); in take() 221 first = null; // don't retain ref while waiting in take() 259 E first = q.peek(); in poll() local 260 if (first == null) { in poll() 266 long delay = first.getDelay(NANOSECONDS); in poll() 271 first = null; // don't retain ref while waiting in poll() [all …]
|
D | ScheduledThreadPoolExecutor.java | 1104 RunnableScheduledFuture<?> first = queue[0]; in poll() local 1105 return (first == null || first.getDelay(NANOSECONDS) > 0) in poll() 1107 : finishPoll(first); in poll() 1118 RunnableScheduledFuture<?> first = queue[0]; in take() local 1119 if (first == null) in take() 1122 long delay = first.getDelay(NANOSECONDS); in take() 1124 return finishPoll(first); in take() 1125 first = null; // don't retain ref while waiting in take() 1154 RunnableScheduledFuture<?> first = queue[0]; in poll() local 1155 if (first == null) { in poll() [all …]
|
D | LinkedBlockingDeque.java | 142 transient Node<E> first; field in LinkedBlockingDeque 221 Node<E> f = first; in linkFirst() 223 first = node; in linkFirst() 243 if (first == null) in linkLast() 244 first = node; in linkLast() 257 Node<E> f = first; in unlinkFirst() 264 first = n; in unlinkFirst() 288 first = null; in unlinkLast() 570 return (first == null) ? null : first.item; in peekFirst() 591 for (Node<E> p = first; p != null; p = p.next) { in removeFirstOccurrence() [all …]
|
D | ConcurrentLinkedDeque.java | 528 private void unlinkFirst(Node<E> first, Node<E> next) { in unlinkFirst() argument 534 if (o != null && p.prev != p && first.casNext(next, p)) { in unlinkFirst() 536 if (first.prev == null && in unlinkFirst() 538 p.prev == first) { in unlinkFirst() 723 return (p == q) ? first() : q; in succ() 742 Node<E> first() { in first() method in ConcurrentLinkedDeque 903 for (Node<E> p = first(); p != null; p = succ(p)) { in peekFirst() 935 for (Node<E> p = first(); p != null; p = succ(p)) { in pollFirst() 1032 for (Node<E> p = first(); p != null; p = succ(p)) { in removeFirstOccurrence() 1076 for (Node<E> p = first(); p != null; p = succ(p)) { in contains() [all …]
|
D | ConcurrentLinkedQueue.java | 389 Node<E> first() { in first() method in ConcurrentLinkedQueue 412 return first() == null; in isEmpty() 434 for (Node<E> p = first(); p != null;) { in size() 455 for (Node<E> p = first(); p != null; p = succ(p)) { in contains() 478 for (Node<E> p = first(); p != null; pred = p, p = next) { in remove() 566 for (Node<E> p = first(); p != null;) { in toString() 592 for (Node<E> p = first(); p != null;) { in toArrayInternal() 775 for (Node<E> p = first(); p != null; p = succ(p)) { in writeObject() 831 ((p = current) != null || (p = q.first()) != null) && in trySplit() 839 p = q.first(); in trySplit() [all …]
|
/libcore/ojluni/src/main/java/java/util/stream/ |
D | Streams.java | 334 T first; field in Streams.StreamBuilderImpl 351 first = t; in StreamBuilderImpl() 360 first = t; in accept() 366 buffer.accept(first); in accept() 405 action.accept(first); in tryAdvance() 419 action.accept(first); in forEachRemaining() 430 int first; field in Streams.IntStreamBuilderImpl 447 first = t; in IntStreamBuilderImpl() 456 first = t; in accept() 462 buffer.accept(first); in accept() [all …]
|
/libcore/ojluni/src/main/java/java/util/ |
D | LinkedList.java | 94 transient Node<E> first; field in LinkedList 126 final Node<E> f = first; in linkFirst() 128 first = newNode; in linkFirst() 145 first = newNode; in linkLast() 161 first = newNode; in linkBefore() 177 first = next; in unlinkFirst() 198 first = null; in unlinkLast() 216 first = next; in unlink() 242 final Node<E> f = first; in getFirst() 268 final Node<E> f = first; in removeFirst() [all …]
|
D | ArrayPrefixHelpers.java | 199 int first; in compute() local 202 first = org + 1; in compute() 206 first = l; in compute() 208 for (int i = first; i < h; ++i) // cumulate in compute() 351 int first; in compute() local 354 first = org + 1; in compute() 358 first = l; in compute() 360 for (int i = first; i < h; ++i) // cumulate in compute() 501 int first; in compute() local 504 first = org + 1; in compute() [all …]
|
D | EnumSet.java | 175 E first = i.next(); in copyOf() local 176 EnumSet<E> result = EnumSet.of(first); in copyOf() 336 public static <E extends Enum<E>> EnumSet<E> of(E first, E... rest) { in of() argument 337 EnumSet<E> result = noneOf(first.getDeclaringClass()); in of() 338 result.add(first); in of()
|
D | HashMap.java | 567 Node<K,V>[] tab; Node<K,V> first, e; int n; K k; in getNode() local 569 (first = tab[(n - 1) & hash]) != null) { in getNode() 570 if (first.hash == hash && // always check first node in getNode() 571 ((k = first.key) == key || (key != null && key.equals(k)))) in getNode() 572 return first; in getNode() 573 if ((e = first.next) != null) { in getNode() 574 if (first instanceof TreeNode) in getNode() 575 return ((TreeNode<K,V>)first).getTreeNode(hash, key); in getNode() 1102 Node<K,V>[] tab; Node<K,V> first; int n, i; in computeIfAbsent() local 1109 if ((first = tab[i = (n - 1) & hash]) != null) { in computeIfAbsent() [all …]
|
/libcore/ojluni/src/main/java/java/util/jar/ |
D | JarInputStream.java | 48 private JarEntry first; field in JarInputStream 86 first = checkManifest(e); in JarInputStream() 141 if (first == null) { in getNextEntry() 148 e = first; in getNextEntry() 149 if (first.getName().equalsIgnoreCase(JarIndex.INDEX_NAME)) in getNextEntry() 151 first = null; in getNextEntry() 206 if (first == null) { in read()
|
/libcore/ojluni/src/main/java/sun/security/util/ |
D | ObjectIdentifier.java | 149 int first = 0, second; in ObjectIdentifier() local 169 first = bignum.intValue(); in ObjectIdentifier() 172 checkSecondComponent(first, bignum); in ObjectIdentifier() 173 bignum = bignum.add(BigInteger.valueOf(40*first)); in ObjectIdentifier() 183 first = num; in ObjectIdentifier() 186 checkSecondComponent(first, num); in ObjectIdentifier() 187 num += 40 * first; in ObjectIdentifier() 629 private static void checkFirstComponent(int first) throws IOException { in checkFirstComponent() argument 630 if (first < 0 || first > 2) { in checkFirstComponent() 635 private static void checkFirstComponent(BigInteger first) throws IOException { in checkFirstComponent() argument [all …]
|
/libcore/luni/src/test/java/libcore/java/lang/ |
D | ThreadGroupTest.java | 46 Thread first = createHangThread(group); in interrupt_shouldInterruptAllThreadsInAGroup() local 49 first.start(); in interrupt_shouldInterruptAllThreadsInAGroup() 62 Thread first = createHangThread(parentGroup); in interrupt_shouldInterruptThreadsInSubgroups() local 65 first.start(); in interrupt_shouldInterruptThreadsInSubgroups() 78 Thread first = createHangThread(parentGroup); in interrupt_shouldNotInterruptThreadsInParentGroup() local 81 first.start(); in interrupt_shouldNotInterruptThreadsInParentGroup()
|
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/io/ |
D | FileWriterTest.java | 62 String first = "The first string for testing. "; in test_ConstructorLjava_io_FileZ() local 63 fileWriter.write(first); in test_ConstructorLjava_io_FileZ() 72 char[] out = new char[first.length() + second.length() + 10]; in test_ConstructorLjava_io_FileZ() 75 assertEquals(first + second, new String(out, 0, length)); in test_ConstructorLjava_io_FileZ() 78 first = "The first string for testing. "; in test_ConstructorLjava_io_FileZ() 79 fileWriter.write(first); in test_ConstructorLjava_io_FileZ() 88 out = new char[first.length() + second.length() + 10]; in test_ConstructorLjava_io_FileZ()
|
/libcore/ojluni/src/test/java/time/test/java/time/chrono/ |
D | TestExampleCode.java | 105 ChronoLocalDate first = now1 in test_chronoPackageExample() local 108 ChronoLocalDate last = first in test_chronoPackageExample() 112 first, last); in test_chronoPackageExample() 158 ThaiBuddhistDate first = now1 in test_calendarPackageExample() local 161 ThaiBuddhistDate last = first in test_calendarPackageExample() 165 first, last); in test_calendarPackageExample()
|
/libcore/luni/src/main/java/libcore/icu/ |
D | ICU.java | 140 final int first = string.indexOf('_'); in parseLangScriptRegionAndVariants() local 141 final int second = string.indexOf('_', first + 1); in parseLangScriptRegionAndVariants() 144 if (first == -1) { in parseLangScriptRegionAndVariants() 151 outputArray[IDX_LANGUAGE] = string.substring(0, first); in parseLangScriptRegionAndVariants() 152 final String secondString = string.substring(first + 1); in parseLangScriptRegionAndVariants() 172 outputArray[IDX_LANGUAGE] = string.substring(0, first); in parseLangScriptRegionAndVariants() 173 final String secondString = string.substring(first + 1, second); in parseLangScriptRegionAndVariants() 195 outputArray[IDX_VARIANT] = string.substring(first + 1); in parseLangScriptRegionAndVariants() 202 outputArray[IDX_LANGUAGE] = string.substring(0, first); in parseLangScriptRegionAndVariants() 203 final String secondString = string.substring(first + 1, second); in parseLangScriptRegionAndVariants()
|
/libcore/ojluni/src/main/java/java/util/concurrent/locks/ |
D | AbstractQueuedLongSynchronizer.java | 1426 private void doSignal(Node first) { in doSignal() argument 1428 if ( (firstWaiter = first.nextWaiter) == null) in doSignal() 1430 first.nextWaiter = null; in doSignal() 1431 } while (!transferForSignal(first) && in doSignal() 1432 (first = firstWaiter) != null); in doSignal() 1439 private void doSignalAll(Node first) { in doSignalAll() argument 1442 Node next = first.nextWaiter; in doSignalAll() 1443 first.nextWaiter = null; in doSignalAll() 1444 transferForSignal(first); in doSignalAll() 1445 first = next; in doSignalAll() [all …]
|
D | AbstractQueuedSynchronizer.java | 1898 private void doSignal(Node first) { in doSignal() argument 1900 if ( (firstWaiter = first.nextWaiter) == null) in doSignal() 1902 first.nextWaiter = null; in doSignal() 1903 } while (!transferForSignal(first) && in doSignal() 1904 (first = firstWaiter) != null); in doSignal() 1911 private void doSignalAll(Node first) { in doSignalAll() argument 1914 Node next = first.nextWaiter; in doSignalAll() 1915 first.nextWaiter = null; in doSignalAll() 1916 transferForSignal(first); in doSignalAll() 1917 first = next; in doSignalAll() [all …]
|
/libcore/ojluni/annotations/hiddenapi/sun/security/util/ |
D | ObjectIdentifier.java | 123 private static void checkFirstComponent(int first) throws java.io.IOException { in checkFirstComponent() argument 127 private static void checkFirstComponent(java.math.BigInteger first) throws java.io.IOException { in checkFirstComponent() argument 131 private static void checkSecondComponent(int first, int second) throws java.io.IOException { in checkSecondComponent() argument 135 private static void checkSecondComponent(int first, java.math.BigInteger second) in checkSecondComponent() argument
|
/libcore/ojluni/src/main/java/java/nio/file/ |
D | Paths.java | 83 public static Path get(String first, String... more) { in get() argument 84 return FileSystems.getDefault().getPath(first, more); in get()
|
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/text/ |
D | AttributedCharacterIteratorTest.java | 53 assertEquals("Wrong first1", 'T', it.first()); in test_first() 55 assertEquals("Wrong first2", 'T', it.first()); in test_first() 57 assertEquals("Wrong first3", 's', it.first()); in test_first() 59 assertTrue("Wrong first4", it.first() == CharacterIterator.DONE); in test_first()
|
/libcore/ojluni/src/main/java/sun/nio/fs/ |
D | UnixUriUtils.java | 160 private static long lowMask(char first, char last) { in lowMask() argument 162 int f = Math.max(Math.min(first, 63), 0); in lowMask() 171 private static long highMask(char first, char last) { in highMask() argument 173 int f = Math.max(Math.min(first, 127), 64) - 64; in highMask()
|
/libcore/luni/src/test/java/libcore/java/util/ |
D | TimSortTest.java | 30 public int compare(Integer first, Integer second) { 31 return first.compareTo(second);
|
/libcore/luni/src/test/java/libcore/java/security/ |
D | ProviderTest.java | 1090 private final A first; field in ProviderTest.Pair 1092 Pair(A first, B second) { in Pair() argument 1093 this.first = first; in Pair() 1111 provAndParam.operationParameters.first, 1123 provAndParam.operationParameters.first, 1132 provAndParam.operationParameters.first, 1138 provAndParam.operationParameters.first, 1144 provAndParam.operationParameters.first, 1153 provAndParam.operationParameters.first, 1159 provAndParam.operationParameters.first.first, [all …]
|