Searched refs:firstNode (Results 1 - 4 of 4) sorted by relevance

/openjdk7/jdk/src/share/classes/java/util/concurrent/
H A DLinkedBlockingDeque.java1062 abstract Node<E> firstNode(); method in class:LinkedBlockingDeque.AbstractItr
1070 next = firstNode();
1091 return firstNode();
1143 Node<E> firstNode() { return first; } method in class:LinkedBlockingDeque.Itr
1149 Node<E> firstNode() { return last; } method in class:LinkedBlockingDeque.DescendingItr
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/dom/
H A DDeferredDocumentImpl.java1700 ChildNode firstNode = null;
1710 firstNode.previousSibling = node;
1714 node.nextSibling = firstNode;
1715 firstNode = node;
1718 a.value = firstNode; // firstChild = firstNode
1719 firstNode.isFirstChild(true);
1749 ChildNode firstNode = null;
1760 firstNode.previousSibling = node;
1764 node.nextSibling = firstNode;
[all...]
/openjdk7/hotspot/src/share/tools/IdealGraphVisualizer/Difference/src/com/sun/hotspot/igv/difference/
H A DDifference.java288 private static void markAsChanged(InputNode n, InputNode firstNode, InputNode otherNode) { argument
292 String s = firstNode.getProperties().get(p.getName());
299 for (Property p : firstNode.getProperties()) {
/openjdk7/jaxp/src/com/sun/org/apache/regexp/internal/
H A DRE.java800 * @param firstNode Node to start at in program
806 protected int matchNodes(int firstNode, int lastNode, int idxStart) argument
815 for (int node = firstNode; node < lastNode; )

Completed in 204 milliseconds