Home
last modified time | relevance | path

Searched refs:ancestor (Results 1 – 4 of 4) sorted by relevance

/libcore/ojluni/src/main/java/java/util/concurrent/
DLinkedBlockingQueue.java773 private Node<E> ancestor; // Helps unlink lastRet on remove() field in LinkedBlockingQueue.Itr
855 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() argument
1047 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 …]
DLinkedTransferQueue.java869 private Node ancestor; // Helps unlink lastRet on remove() field in LinkedTransferQueue.Itr
934 Node pred = ancestor; in remove()
943 ancestor = pred; in remove()
/libcore/ojluni/src/main/java/java/nio/file/
DFileTreeWalker.java239 for (DirectoryNode ancestor: stack) { in wouldLoop()
240 Object ancestorKey = ancestor.key(); in wouldLoop()
248 if (Files.isSameFile(dir, ancestor.directory())) { in wouldLoop()
/libcore/ojluni/src/main/java/sun/security/x509/
DX500Name.java1376 RDN[] ancestor = new RDN[i]; in commonAncestor() local
1378 ancestor[j] = names[j]; in commonAncestor()
1383 commonAncestor = new X500Name(ancestor); in commonAncestor()