Searched refs:getPreviousSibling (Results 1 - 25 of 30) sorted by relevance

12

/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/dom/
H A DTreeWalkerImpl.java163 Node node = getPreviousSibling(fCurrentNode);
194 result = getPreviousSibling(fCurrentNode);
354 Node getPreviousSibling(Node node) { method in class:TreeWalkerImpl
355 return getPreviousSibling(node, fRoot);
364 Node getPreviousSibling(Node node, Node root) { method in class:TreeWalkerImpl
368 Node newNode = node.getPreviousSibling();
377 return getPreviousSibling(newNode, root);
391 return getPreviousSibling(newNode, root);
398 return getPreviousSibling(newNode, root);
401 } // getPreviousSibling(Nod
[all...]
H A DChildNode.java135 public Node getPreviousSibling() { method in class:ChildNode
H A DTextImpl.java159 getWholeTextBackward(this.getPreviousSibling(), fBufferStr, this.getParentNode());
265 node = node.getPreviousSibling();
272 getWholeTextBackward(parent.getPreviousSibling(), buffer, parent.getParentNode());
341 Node prev = currentNode.getPreviousSibling();
355 prev = prev.getPreviousSibling();
401 Node prev = node.getPreviousSibling();
446 lastChild = lastChild.getPreviousSibling();
458 prev = prev.getPreviousSibling();
H A DRangeImpl.java257 for (Node n = refNode; n!=null; n = n.getPreviousSibling()) {
296 for (Node n = refNode; n!=null; n = n.getPreviousSibling()) {
335 for (Node n = refNode; n!=null; n = n.getPreviousSibling()) {
374 for (Node n = refNode; n!=null; n = n.getPreviousSibling()) {
434 for (Node n = refNode; n!=null; n = n.getPreviousSibling()) {
1308 n = endAncestor.getPreviousSibling();
1311 Node sibling = n.getPreviousSibling();
1552 Node prevSibling = next.getPreviousSibling();
1568 next = parent.getPreviousSibling();
H A DNodeIteratorImpl.java313 result = node.getPreviousSibling();
H A DDOMNormalizer.java454 Node prevSibling = node.getPreviousSibling();
483 Node prevSibling = node.getPreviousSibling();
515 Node prevSibling = node.getPreviousSibling();
H A DNodeImpl.java372 public Node getPreviousSibling() { method in class:NodeImpl
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/xs/opti/
H A DTextImpl.java57 public Node getPreviousSibling() { method in class:TextImpl
H A DDefaultNode.java84 public Node getPreviousSibling() { method in class:DefaultNode
H A DElementImpl.java133 public Node getPreviousSibling() { method in class:ElementImpl
/openjdk7/jaxp/src/com/sun/org/apache/xpath/internal/domapi/
H A DXPathNamespaceImpl.java151 * @see org.w3c.dom.Node#getPreviousSibling()
153 public Node getPreviousSibling() { method in class:XPathNamespaceImpl
154 return m_attributeNode.getPreviousSibling();
/openjdk7/jaxp/src/org/w3c/dom/
H A DNode.java281 public Node getPreviousSibling(); method in interface:Node
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/util/
H A DDOMUtil.java215 child = child.getPreviousSibling();
233 child = child.getPreviousSibling();
253 child = child.getPreviousSibling();
398 child = child.getPreviousSibling();
461 child = child.getPreviousSibling();
525 child = child.getPreviousSibling();
594 child = child.getPreviousSibling();
672 child = child.getPreviousSibling();
/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/dtm/
H A DDTM.java316 public int getPreviousSibling(int nodeHandle); method in interface:DTM
/openjdk7/jdk/src/share/classes/javax/swing/tree/
H A DDefaultMutableTreeNode.java739 previousSibling = getPreviousSibling();
1051 public DefaultMutableTreeNode getPreviousSibling() { method in class:DefaultMutableTreeNode
1190 previousSibling = getPreviousSibling(); // linear search
/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/dtm/ref/dom2dtm/
H A DDOM2DTMdefaultNamespaceDeclarationNode.java85 public Node getPreviousSibling() {return null;} method in class:DOM2DTMdefaultNamespaceDeclarationNode
/openjdk7/jdk/src/share/classes/org/jcp/xml/dsig/internal/dom/
H A DDOMUtils.java140 child = child.getPreviousSibling();
/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/dtm/ref/
H A DDTMDefaultBaseTraversers.java1375 return getPreviousSibling(current);
1391 while (DTM.NULL != (current = getPreviousSibling(current)))
H A DDTMNodeProxy.java422 public final Node getPreviousSibling() method in class:DTMNodeProxy
425 int newnode = dtm.getPreviousSibling(node);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/messaging/saaj/soap/
H A DSOAPPartImpl.java550 public org.w3c.dom.Node getPreviousSibling() { method in class:SOAPPartImpl
551 return document.getPreviousSibling();
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/dom/
H A DAdaptiveResultTreeImpl.java859 public int getPreviousSibling(int nodeHandle) method in class:AdaptiveResultTreeImpl
862 return _dom.getPreviousSibling(nodeHandle);
865 return super.getPreviousSibling(nodeHandle);
H A DSimpleResultTreeImpl.java764 public int getPreviousSibling(int nodeHandle) method in class:SimpleResultTreeImpl
/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/utils/
H A DUnImplNode.java520 public Node getPreviousSibling() method in class:UnImplNode
523 error(XMLErrorResources.ER_FUNCTION_NOT_SUPPORTED); //"getPreviousSibling not supported!");
/openjdk7/jdk/src/share/classes/javax/imageio/metadata/
H A DIIOMetadataNode.java412 public Node getPreviousSibling() { method in class:IIOMetadataNode
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/streaming/
H A DDOMStreamReader.java741 Node prev = _current.getPreviousSibling();

Completed in 99 milliseconds

12