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

/libcore/luni/src/main/java/java/util/concurrent/
H A DArrayBlockingQueue.java948 /** Index to look for new nextItem; NONE at end */
952 private E nextItem; field in class:ArrayBlockingQueue.Itr
954 /** Index of nextItem; NONE if none, REMOVED if removed elsewhere */
995 nextItem = itemAt(nextIndex = takeIndex);
1007 // assert nextItem != null;
1091 // assert lastRet < 0 || nextItem == null;
1104 * fields (i.e. nextItem) that are not modified by update operations
1109 if (nextItem != null)
1139 final E x = nextItem;
1152 nextItem
[all...]
H A DConcurrentLinkedQueue.java666 * nextItem holds on to item fields because once we claim
671 private E nextItem; field in class:ConcurrentLinkedQueue.Itr
685 nextItem = item;
699 return nextItem != null;
705 // assert nextItem != null;
712 E x = nextItem;
713 nextItem = item;
H A DConcurrentLinkedDeque.java1334 * nextItem holds on to item fields because once we claim
1339 private E nextItem; field in class:ConcurrentLinkedDeque.AbstractItr
1355 * Sets nextNode and nextItem to next valid node, or to null
1366 nextItem = null;
1372 nextItem = item;
1379 return nextItem != null;
1383 E item = nextItem;
H A DLinkedBlockingDeque.java996 * nextItem holds on to item fields because once we claim that
1001 E nextItem; field in class:LinkedBlockingDeque.AbstractItr
1018 nextItem = (next == null) ? null : next.item;
1053 nextItem = (next == null) ? null : next.item;
1067 E x = nextItem;
H A DLinkedTransferQueue.java899 private E nextItem; // the corresponding item field in class:LinkedTransferQueue.Itr
944 nextItem = itemE;
962 nextItem = null;
976 E e = nextItem;

Completed in 1004 milliseconds