Searched refs:nextItem (Results 1 - 5 of 5) sorted by relevance

/libcore/ojluni/src/main/java/java/util/concurrent/
H A DArrayBlockingQueue.java977 /** Index to look for new nextItem; NONE at end */
981 private E nextItem; field in class:ArrayBlockingQueue.Itr
983 /** Index of nextItem; NONE if none, REMOVED if removed elsewhere */
1024 nextItem = itemAt(nextIndex = takeIndex);
1036 // assert nextItem != null;
1120 // assert lastRet < 0 || nextItem == null;
1133 * fields (i.e. nextItem) that are not modified by update operations
1138 if (nextItem != null)
1168 final E x = nextItem;
1181 nextItem
[all...]
H A DConcurrentLinkedQueue.java695 * nextItem holds on to item fields because once we claim
700 private E nextItem; field in class:ConcurrentLinkedQueue.Itr
714 nextItem = item;
728 return nextItem != null;
734 // assert nextItem != null;
741 E x = nextItem;
742 nextItem = item;
H A DConcurrentLinkedDeque.java1363 * nextItem holds on to item fields because once we claim
1368 private E nextItem; field in class:ConcurrentLinkedDeque.AbstractItr
1384 * Sets nextNode and nextItem to next valid node, or to null
1395 nextItem = null;
1401 nextItem = item;
1408 return nextItem != null;
1412 E item = nextItem;
H A DLinkedBlockingDeque.java1025 * nextItem holds on to item fields because once we claim that
1030 E nextItem; field in class:LinkedBlockingDeque.AbstractItr
1047 nextItem = (next == null) ? null : next.item;
1082 nextItem = (next == null) ? null : next.item;
1096 E x = nextItem;
H A DLinkedTransferQueue.java928 private E nextItem; // the corresponding item field in class:LinkedTransferQueue.Itr
973 nextItem = itemE;
991 nextItem = null;
1005 E e = nextItem;

Completed in 80 milliseconds