Searched refs:oldChild (Results 1 - 10 of 10) sorted by relevance

/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/dom/
H A DParentNode.java473 * @return oldChild, in its new state (removed).
475 * @throws DOMException(NOT_FOUND_ERR) if oldChild is not a child of
481 public Node removeChild(Node oldChild) argument
484 return internalRemoveChild(oldChild, false);
492 Node internalRemoveChild(Node oldChild, boolean replace) argument
502 if (oldChild != null && oldChild.getParentNode() != this) {
508 ChildNode oldInternal = (ChildNode) oldChild;
531 // Patch linked list around oldChild
575 * Make newChild occupy the location that oldChild use
595 replaceChild(Node newChild, Node oldChild) argument
[all...]
H A DAttrImpl.java874 * @return oldChild, in its new state (removed).
876 * @throws DOMException(NOT_FOUND_ERR) if oldChild is not a child of
882 public Node removeChild(Node oldChild) argument
890 return internalRemoveChild(oldChild, false);
898 Node internalRemoveChild(Node oldChild, boolean replace) argument
907 if (oldChild != null && oldChild.getParentNode() != this) {
913 ChildNode oldInternal = (ChildNode) oldChild;
918 // Patch linked list around oldChild
965 * Make newChild occupy the location that oldChild use
985 replaceChild(Node newChild, Node oldChild) argument
[all...]
H A DCoreDocumentImpl.java425 public Node removeChild(Node oldChild) throws DOMException { argument
427 super.removeChild(oldChild);
430 int type = oldChild.getNodeType();
438 return oldChild;
449 public Node replaceChild(Node newChild, Node oldChild) argument
459 oldChild.getNodeType() != Node.DOCUMENT_TYPE_NODE &&
462 oldChild.getNodeType() != Node.ELEMENT_NODE &&
469 super.replaceChild(newChild, oldChild);
471 int type = oldChild.getNodeType();
478 return oldChild;
2702 removingNode(NodeImpl node, NodeImpl oldChild, boolean replace) argument
[all...]
H A DDocumentImpl.java1129 void removingNode(NodeImpl node, NodeImpl oldChild, boolean replace) { argument
1135 ((NodeIteratorImpl)iterators.elementAt(i)).removeNode(oldChild);
1143 ((RangeImpl)ranges.elementAt(i)).removeNode(oldChild);
1163 dispatchEvent(oldChild, me);
1186 dispatchEventToSubtree(oldChild, me);
H A DNodeImpl.java493 * @return oldChild, in its new state (removed).
495 * @throws DOMException(NOT_FOUND_ERR) if oldChild is not a child of
501 public Node removeChild(Node oldChild) argument
509 * Make newChild occupy the location that oldChild used to
511 * parent, if any. Equivalent to inserting newChild before oldChild,
512 * then removing oldChild.
517 * @return oldChild, in its new state (removed).
526 * @throws DOMException(NOT_FOUND_ERR) if oldChild is not a child of
532 public Node replaceChild(Node newChild, Node oldChild) argument
/openjdk7/jaxp/src/org/w3c/dom/
H A DNode.java345 * Replaces the child node <code>oldChild</code> with <code>newChild</code>
346 * in the list of children, and returns the <code>oldChild</code> node.
348 * <code>oldChild</code> is replaced by all of the
355 * @param oldChild The node being replaced in the list.
369 * <br>NOT_FOUND_ERR: Raised if <code>oldChild</code> is not a child of
379 Node oldChild)
383 * Removes the child node indicated by <code>oldChild</code> from the list
385 * @param oldChild The node being removed.
389 * <br>NOT_FOUND_ERR: Raised if <code>oldChild</code> is not a child of
398 public Node removeChild(Node oldChild) argument
378 replaceChild(Node newChild, Node oldChild) argument
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/xs/opti/
H A DDefaultNode.java158 public Node replaceChild(Node newChild, Node oldChild) throws DOMException { argument
163 public Node removeChild(Node oldChild) throws DOMException { argument
/openjdk7/jdk/src/share/classes/javax/imageio/metadata/
H A DIIOMetadataNode.java508 * Replaces the child node <code>oldChild</code> with
510 * <code>oldChild</code> node.
513 * @param oldChild the <code>Node</code> to be replaced.
521 Node oldChild) {
527 checkNode(oldChild);
530 IIOMetadataNode oldChildNode = (IIOMetadataNode)oldChild;
561 * Removes the child node indicated by <code>oldChild</code> from
564 * @param oldChild the <code>Node</code> to be removed.
568 * @exception IllegalArgumentException if <code>oldChild</code> is
571 public Node removeChild(Node oldChild) { argument
520 replaceChild(Node newChild, Node oldChild) argument
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/utils/
H A DUnImplNode.java670 * @param oldChild Existing child to be replaced
676 public Node replaceChild(Node newChild, Node oldChild) throws DOMException argument
687 * @param oldChild Child to be removed
693 public Node removeChild(Node oldChild) throws DOMException argument
/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/dtm/ref/
H A DDTMNodeProxy.java522 * @param oldChild
530 public final Node replaceChild(Node newChild, Node oldChild) argument
538 * @param oldChild
546 public final Node removeChild(Node oldChild) throws DOMException argument

Completed in 62 milliseconds