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

12 3 4 5 6 7 8

  /libcore/dom/src/test/java/org/w3c/domts/level1/core/
nodereplacechildnodeancestor.java 31 * The "replaceChild(newChild,oldChild)" method raises a
74 Node oldChild;
81 oldChild = childList.item(0);
86 replacedNode = employeeNode.replaceChild(newChild, oldChild);
nodereplacechildnodename.java 33 * returned by the "replaceChild(newChild,oldChild)"
67 Node oldChild;
77 oldChild = childList.item(1);
79 replacedNode = employeeNode.replaceChild(newChild, oldChild);
nodereplacechildoldchildnonexistent.java 31 * The "replaceChild(newChild,oldChild)" method raises a
69 Node oldChild;
76 oldChild = doc.createElement("oldChild");
83 replacedNode = elementNode.replaceChild(newChild, oldChild);
nodereplacechildnewchildexists.java 66 Node oldChild = null;
107 oldChild = childList.item(11);
111 oldChild = childList.item(5);
115 replacedChild = employeeNode.replaceChild(newChild, oldChild);
116 assertSame("return_value_same", oldChild, replacedChild);
  /external/jsilver/src/com/google/clearsilver/jsilver/syntax/node/
AEachCommand.java 194 void replaceChild(@SuppressWarnings("unused") Node oldChild, @SuppressWarnings("unused") Node newChild)
197 if(this._position_ == oldChild)
203 if(this._variable_ == oldChild)
209 if(this._expression_ == oldChild)
215 if(this._command_ == oldChild)
AIfCommand.java 194 void replaceChild(@SuppressWarnings("unused") Node oldChild, @SuppressWarnings("unused") Node newChild)
197 if(this._position_ == oldChild)
203 if(this._expression_ == oldChild)
209 if(this._block_ == oldChild)
215 if(this._otherwise_ == oldChild)
ALoopToCommand.java 194 void replaceChild(@SuppressWarnings("unused") Node oldChild, @SuppressWarnings("unused") Node newChild)
197 if(this._position_ == oldChild)
203 if(this._variable_ == oldChild)
209 if(this._expression_ == oldChild)
215 if(this._command_ == oldChild)
AWithCommand.java 194 void replaceChild(@SuppressWarnings("unused") Node oldChild, @SuppressWarnings("unused") Node newChild)
197 if(this._position_ == oldChild)
203 if(this._variable_ == oldChild)
209 if(this._expression_ == oldChild)
215 if(this._command_ == oldChild)
ALoopIncCommand.java 268 void replaceChild(@SuppressWarnings("unused") Node oldChild, @SuppressWarnings("unused") Node newChild)
271 if(this._position_ == oldChild)
277 if(this._variable_ == oldChild)
283 if(this._start_ == oldChild)
289 if(this._end_ == oldChild)
295 if(this._increment_ == oldChild)
301 if(this._command_ == oldChild)
ALoopCommand.java 231 void replaceChild(@SuppressWarnings("unused") Node oldChild, @SuppressWarnings("unused") Node newChild)
234 if(this._position_ == oldChild)
240 if(this._variable_ == oldChild)
246 if(this._start_ == oldChild)
252 if(this._end_ == oldChild)
258 if(this._command_ == oldChild)
AAddExpression.java 120 void replaceChild(@SuppressWarnings("unused") Node oldChild, @SuppressWarnings("unused") Node newChild)
123 if(this._left_ == oldChild)
129 if(this._right_ == oldChild)
AAndExpression.java 120 void replaceChild(@SuppressWarnings("unused") Node oldChild, @SuppressWarnings("unused") Node newChild)
123 if(this._left_ == oldChild)
129 if(this._right_ == oldChild)
ACommaExpression.java 120 void replaceChild(@SuppressWarnings("unused") Node oldChild, @SuppressWarnings("unused") Node newChild)
123 if(this._left_ == oldChild)
129 if(this._right_ == oldChild)
ACommentCommand.java 120 void replaceChild(@SuppressWarnings("unused") Node oldChild, @SuppressWarnings("unused") Node newChild)
123 if(this._position_ == oldChild)
129 if(this._comment_ == oldChild)
AContentTypeCommand.java 120 void replaceChild(@SuppressWarnings("unused") Node oldChild, @SuppressWarnings("unused") Node newChild)
123 if(this._position_ == oldChild)
129 if(this._string_ == oldChild)
ADescendVariable.java 120 void replaceChild(@SuppressWarnings("unused") Node oldChild, @SuppressWarnings("unused") Node newChild)
123 if(this._parent_ == oldChild)
129 if(this._child_ == oldChild)
ADivideExpression.java 120 void replaceChild(@SuppressWarnings("unused") Node oldChild, @SuppressWarnings("unused") Node newChild)
123 if(this._left_ == oldChild)
129 if(this._right_ == oldChild)
AEqExpression.java 120 void replaceChild(@SuppressWarnings("unused") Node oldChild, @SuppressWarnings("unused") Node newChild)
123 if(this._left_ == oldChild)
129 if(this._right_ == oldChild)
AEvarCommand.java 120 void replaceChild(@SuppressWarnings("unused") Node oldChild, @SuppressWarnings("unused") Node newChild)
123 if(this._position_ == oldChild)
129 if(this._expression_ == oldChild)
AExpandVariable.java 120 void replaceChild(@SuppressWarnings("unused") Node oldChild, @SuppressWarnings("unused") Node newChild)
123 if(this._parent_ == oldChild)
129 if(this._child_ == oldChild)
AGtExpression.java 120 void replaceChild(@SuppressWarnings("unused") Node oldChild, @SuppressWarnings("unused") Node newChild)
123 if(this._left_ == oldChild)
129 if(this._right_ == oldChild)
AGteExpression.java 120 void replaceChild(@SuppressWarnings("unused") Node oldChild, @SuppressWarnings("unused") Node newChild)
123 if(this._left_ == oldChild)
129 if(this._right_ == oldChild)
AHardIncludeCommand.java 120 void replaceChild(@SuppressWarnings("unused") Node oldChild, @SuppressWarnings("unused") Node newChild)
123 if(this._position_ == oldChild)
129 if(this._expression_ == oldChild)
  /external/webkit/Source/WebCore/rendering/
CounterNode.cpp 268 void CounterNode::removeChild(CounterNode* oldChild)
270 ASSERT(oldChild);
271 ASSERT(!oldChild->m_firstChild);
272 ASSERT(!oldChild->m_lastChild);
274 CounterNode* next = oldChild->m_nextSibling;
275 CounterNode* previous = oldChild->m_previousSibling;
277 oldChild->m_nextSibling = 0;
278 oldChild->m_previousSibling = 0;
279 oldChild->m_parent = 0;
284 ASSERT(m_firstChild == oldChild);
    [all...]
  /external/webkit/LayoutTests/dom/xhtml/level3/core/
nodereplacechild30.js 93 var oldChild;
110 oldChild = doc.createElementNS("http://www.w3.org/1999/xhtml","xhtml:head");
112 appendedChild = parent.appendChild(oldChild);
124 replaced = parent.replaceChild(newElement,oldChild);
128 replaced = parent.replaceChild(oldChild,newElement);
132 replaced = parent.replaceChild(newText,oldChild);
136 replaced = parent.replaceChild(oldChild,newText);
140 replaced = parent.replaceChild(newComment,oldChild);
144 replaced = parent.replaceChild(oldChild,newComment);
148 replaced = parent.replaceChild(oldChild,newPI)
    [all...]

Completed in 962 milliseconds

12 3 4 5 6 7 8