HomeSort by relevance Sort by last modified time
    Searched refs:oldChild (Results 76 - 100 of 190) sorted by null

1 2 34 5 6 7 8

  /external/jsilver/src/com/google/clearsilver/jsilver/syntax/node/
ASetCommand.java 157 void replaceChild(@SuppressWarnings("unused") Node oldChild, @SuppressWarnings("unused") Node newChild)
160 if(this._position_ == oldChild)
166 if(this._variable_ == oldChild)
172 if(this._expression_ == oldChild)
Token.java 55 void replaceChild(@SuppressWarnings("unused") Node oldChild, @SuppressWarnings("unused") Node newChild)
ACsOpenPosition.java 83 void replaceChild(@SuppressWarnings("unused") Node oldChild, @SuppressWarnings("unused") Node newChild)
86 if(this._csOpen_ == oldChild)
ADataCommand.java 83 void replaceChild(@SuppressWarnings("unused") Node oldChild, @SuppressWarnings("unused") Node newChild)
86 if(this._data_ == oldChild)
ADecNumberVariable.java 83 void replaceChild(@SuppressWarnings("unused") Node oldChild, @SuppressWarnings("unused") Node newChild)
86 if(this._decNumber_ == oldChild)
ADecimalExpression.java 83 void replaceChild(@SuppressWarnings("unused") Node oldChild, @SuppressWarnings("unused") Node newChild)
86 if(this._value_ == oldChild)
AExistsExpression.java 83 void replaceChild(@SuppressWarnings("unused") Node oldChild, @SuppressWarnings("unused") Node newChild)
86 if(this._expression_ == oldChild)
AHexExpression.java 83 void replaceChild(@SuppressWarnings("unused") Node oldChild, @SuppressWarnings("unused") Node newChild)
86 if(this._value_ == oldChild)
AHexNumberVariable.java 83 void replaceChild(@SuppressWarnings("unused") Node oldChild, @SuppressWarnings("unused") Node newChild)
86 if(this._hexNumber_ == oldChild)
ANameVariable.java 83 void replaceChild(@SuppressWarnings("unused") Node oldChild, @SuppressWarnings("unused") Node newChild)
86 if(this._word_ == oldChild)
ANegativeExpression.java 83 void replaceChild(@SuppressWarnings("unused") Node oldChild, @SuppressWarnings("unused") Node newChild)
86 if(this._expression_ == oldChild)
ANotExpression.java 83 void replaceChild(@SuppressWarnings("unused") Node oldChild, @SuppressWarnings("unused") Node newChild)
86 if(this._expression_ == oldChild)
ANumericExpression.java 83 void replaceChild(@SuppressWarnings("unused") Node oldChild, @SuppressWarnings("unused") Node newChild)
86 if(this._expression_ == oldChild)
AStringExpression.java 83 void replaceChild(@SuppressWarnings("unused") Node oldChild, @SuppressWarnings("unused") Node newChild)
86 if(this._value_ == oldChild)
AVariableExpression.java 83 void replaceChild(@SuppressWarnings("unused") Node oldChild, @SuppressWarnings("unused") Node newChild)
86 if(this._variable_ == oldChild)
  /packages/apps/Mms/src/com/android/mms/dom/
NodeImpl.java 170 public Node removeChild(Node oldChild) throws DOMException {
171 if (mChildNodes.contains(oldChild)) {
172 mChildNodes.remove(oldChild);
173 ((NodeImpl)oldChild).setParentNode(null);
180 public Node replaceChild(Node newChild, Node oldChild) throws DOMException {
181 if (mChildNodes.contains(oldChild)) {
188 mChildNodes.setElementAt(newChild, mChildNodes.indexOf(oldChild));
190 ((NodeImpl)oldChild).setParentNode(null);
194 return oldChild;
  /external/webkit/Source/JavaScriptCore/API/tests/
Node.c 64 void Node_replaceChild(Node* node, Node* newChild, Node* oldChild)
69 if (current->node == oldChild) {
  /external/webkit/Source/WebCore/dom/
ContainerNode.cpp 244 bool ContainerNode::replaceChild(PassRefPtr<Node> newChild, Node* oldChild, ExceptionCode& ec, bool shouldLazyAttach)
252 if (oldChild == newChild) // nothing to do
256 checkReplaceChild(newChild.get(), oldChild, ec);
260 // NOT_FOUND_ERR: Raised if oldChild is not a child of this node.
261 if (!oldChild || oldChild->parentNode() != this) {
266 RefPtr<Node> prev = oldChild->previousSibling();
267 RefPtr<Node> next = oldChild->nextSibling();
270 RefPtr<Node> removedChild = oldChild;
271 removeChild(oldChild, ec)
    [all...]
ContainerNode.h 48 bool replaceChild(PassRefPtr<Node> newChild, Node* oldChild, ExceptionCode&, bool shouldLazyAttach = false);
111 void removeBetween(Node* previousChild, Node* nextChild, Node* oldChild);
112 void insertBeforeCommon(Node* nextChild, Node* oldChild);
  /external/webkit/LayoutTests/dom/xhtml/level3/core/
nodereplacechild38.js 93 var oldChild;
113 oldChild = ent.firstChild;
115 assertNotNull("alphaText",oldChild);
121 replaced = ent.replaceChild(cdata,oldChild);
133 replaced = ent.replaceChild(pi,oldChild);
145 replaced = ent.replaceChild(comment,oldChild);
157 replaced = ent.replaceChild(txt,oldChild);
169 replaced = ent.replaceChild(elem,oldChild);
181 replaced = ent.replaceChild(entRef,oldChild);
  /libcore/luni/src/main/java/org/apache/harmony/xml/dom/
InnerNodeImpl.java 170 public Node removeChild(Node oldChild) throws DOMException {
171 LeafNodeImpl oldChildImpl = (LeafNodeImpl) oldChild;
185 return oldChild;
189 * Removes {@code oldChild} and adds {@code newChild} in its place. This
192 public Node replaceChild(Node newChild, Node oldChild) throws DOMException {
193 int index = ((LeafNodeImpl) oldChild).index;
194 removeChild(oldChild);
196 return oldChild;
  /external/webkit/LayoutTests/dom/html/level1/core/
hc_noderemovechildgetnodename.js 78 The "removeChild(oldChild)" method returns
83 "removeChild(oldChild)" method. The returned node
98 var oldChild;
112 oldChild = childList.item(0);
113 oldName = oldChild.nodeName;
115 removedChild = employeeNode.removeChild(oldChild);
  /external/webkit/LayoutTests/dom/xhtml/level1/core/
hc_noderemovechildgetnodename.js 78 The "removeChild(oldChild)" method returns
83 "removeChild(oldChild)" method. The returned node
98 var oldChild;
112 oldChild = childList.item(0);
113 oldName = oldChild.nodeName;
115 removedChild = employeeNode.removeChild(oldChild);
  /external/webkit/Source/WebCore/rendering/
RenderButton.cpp 66 void RenderButton::removeChild(RenderObject* oldChild)
68 if (oldChild == m_inner || !m_inner) {
69 RenderFlexibleBox::removeChild(oldChild);
72 m_inner->removeChild(oldChild);
  /libcore/luni/src/main/java/org/w3c/dom/
Node.java 314 * Replaces the child node <code>oldChild</code> with <code>newChild</code>
315 * in the list of children, and returns the <code>oldChild</code> node.
317 * <code>oldChild</code> is replaced by all of the
324 * @param oldChild The node being replaced in the list.
338 * <br>NOT_FOUND_ERR: Raised if <code>oldChild</code> is not a child of
347 Node oldChild)
351 * Removes the child node indicated by <code>oldChild</code> from the list
353 * @param oldChild The node being removed.
357 * <br>NOT_FOUND_ERR: Raised if <code>oldChild</code> is not a child of
365 public Node removeChild(Node oldChild)
    [all...]

Completed in 3138 milliseconds

1 2 34 5 6 7 8