Searched refs:ancestor (Results 1 – 4 of 4) sorted by relevance
773 private Node<E> ancestor; // Helps unlink lastRet on remove() field in LinkedBlockingQueue.Itr855 if (ancestor == null) in remove()856 ancestor = head; in remove()857 ancestor = findPred(p, ancestor); in remove()858 unlink(p, ancestor); in remove()1045 Node<E> findPred(Node<E> p, Node<E> ancestor) { in findPred() argument1047 if (ancestor.item == null) in findPred()1048 ancestor = head; in findPred()1050 for (Node<E> q; (q = ancestor.next) != p; ) in findPred()1051 ancestor = q; in findPred()[all …]
869 private Node ancestor; // Helps unlink lastRet on remove() field in LinkedTransferQueue.Itr934 Node pred = ancestor; in remove()943 ancestor = pred; in remove()
239 for (DirectoryNode ancestor: stack) { in wouldLoop()240 Object ancestorKey = ancestor.key(); in wouldLoop()248 if (Files.isSameFile(dir, ancestor.directory())) { in wouldLoop()
1376 RDN[] ancestor = new RDN[i]; in commonAncestor() local1378 ancestor[j] = names[j]; in commonAncestor()1383 commonAncestor = new X500Name(ancestor); in commonAncestor()