HomeSort by relevance Sort by last modified time
    Searched refs:oldChild (Results 1 - 25 of 142) sorted by null

1 2 3 4 5 6

  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderObjectChildList.cpp 59 RenderObject* RenderObjectChildList::removeChildNode(RenderObject* owner, RenderObject* oldChild, bool notifyRenderer)
61 ASSERT(oldChild->parent() == owner);
63 if (oldChild->isFloatingOrOutOfFlowPositioned())
64 toRenderBox(oldChild)->removeFloatingOrPositionedChildFromBlockLists();
73 if (!owner->documentBeingDestroyed() && notifyRenderer && oldChild->everHadLayout()) {
74 oldChild->setNeedsLayoutAndPrefWidthsRecalc();
75 invalidatePaintOnRemoval(*oldChild);
80 if (oldChild->isBox())
81 toRenderBox(oldChild)->deleteLineBoxWrapper();
83 // If oldChild is the start or end of the selection, then clear the selection t
    [all...]
RenderButton.cpp 50 void RenderButton::removeChild(RenderObject* oldChild)
55 if (oldChild == m_inner || !m_inner || oldChild->parent() == this) {
56 ASSERT(oldChild == m_inner || !m_inner);
57 RenderFlexibleBox::removeChild(oldChild);
60 m_inner->removeChild(oldChild);
  /libcore/dom/src/test/java/org/w3c/domts/level1/core/
hc_noderemovechildoldchildnonexistent.java 31 * The "removeChild(oldChild)" method raises a
68 Node oldChild;
73 oldChild = doc.createElement("br");
80 removedChild = elementNode.removeChild(oldChild);
noderemovechildoldchildnonexistent.java 31 * The "removeChild(oldChild)" method raises a
69 Node oldChild;
74 oldChild = doc.createElement("oldChild");
81 removedChild = elementNode.removeChild(oldChild);
hc_noderemovechildgetnodename.java 31 * The "removeChild(oldChild)" method returns
36 * "removeChild(oldChild)" method. The returned node
69 Node oldChild;
77 oldChild = childList.item(0);
78 oldName = oldChild.getNodeName();
79 removedChild = employeeNode.removeChild(oldChild);
hc_nodereplacechildinvalidnodetype.java 31 * The "replaceChild(newChild,oldChild)" method raises a
75 Node oldChild;
80 oldChild = elementList.item(1);
81 rootNode = (Element) oldChild.getParentNode();
86 replacedChild = rootNode.replaceChild(newChild, oldChild);
hc_nodereplacechildnewchildexists.java 65 Node oldChild = null;
88 oldChild = childList.item(5);
89 replacedChild = employeeNode.replaceChild(newChild, oldChild);
90 assertSame("return_value_same", oldChild, replacedChild);
hc_nodereplacechild.java 31 * The "replaceChild(newChild,oldChild)" method replaces
32 * the node "oldChild" with the node "newChild".
68 Node oldChild;
77 oldChild = childList.item(0);
79 replacedNode = employeeNode.replaceChild(newChild, oldChild);
hc_nodereplacechildnewchilddiffdocument.java 31 * The "replaceChild(newChild,oldChild)" method raises a
72 Node oldChild;
82 oldChild = elementNode.getFirstChild();
87 replacedChild = elementNode.replaceChild(newChild, oldChild);
hc_nodereplacechildnodeancestor.java 31 * The "replaceChild(newChild,oldChild)" method raises a
72 Node oldChild;
79 oldChild = childList.item(0);
84 replacedNode = employeeNode.replaceChild(newChild, oldChild);
hc_nodereplacechildnodename.java 31 * The "replaceChild(newChild,oldChild)" method returns
36 * returned by the "replaceChild(newChild,oldChild)"
70 Node oldChild;
78 oldChild = childList.item(0);
80 replacedNode = employeeNode.replaceChild(newChild, oldChild);
hc_nodereplacechildoldchildnonexistent.java 31 * The "replaceChild(newChild,oldChild)" method raises a
68 Node oldChild;
75 oldChild = doc.createElement("b");
82 replacedNode = elementNode.replaceChild(newChild, oldChild);
noderemovechildgetnodename.java 33 * "removeChild(oldChild)" method. The returned node
66 Node oldChild;
75 oldChild = childList.item(0);
76 removedChild = employeeNode.removeChild(oldChild);
noderemovechildnode.java 65 Node oldChild;
75 oldChild = childList.item(0);
76 removedChild = employeeNode.removeChild(oldChild);
nodereplacechild.java 31 * The "replaceChild(newChild,oldChild)" method replaces
32 * the node "oldChild" with the node "newChild".
68 Node oldChild;
77 oldChild = childList.item(0);
79 replacedNode = employeeNode.replaceChild(newChild, oldChild);
nodereplacechildinvalidnodetype.java 31 * The "replaceChild(newChild,oldChild)" method raises a
74 Node oldChild;
80 oldChild = elementList.item(1);
85 replacedChild = rootNode.replaceChild(newChild, oldChild);
nodereplacechildnewchilddiffdocument.java 31 * The "replaceChild(newChild,oldChild)" method raises a
72 Node oldChild;
82 oldChild = elementNode.getFirstChild();
87 replacedChild = elementNode.replaceChild(newChild, oldChild);
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);
  /external/jsilver/src/com/google/clearsilver/jsilver/syntax/node/
AMultipleCommand.java 78 void replaceChild(@SuppressWarnings("unused") Node oldChild, @SuppressWarnings("unused") Node newChild)
83 if(i.next() == oldChild)
89 oldChild.parent(null);
94 oldChild.parent(null);
ASequenceExpression.java 78 void replaceChild(@SuppressWarnings("unused") Node oldChild, @SuppressWarnings("unused") Node newChild)
83 if(i.next() == oldChild)
89 oldChild.parent(null);
94 oldChild.parent(null);
AFunctionExpression.java 115 void replaceChild(@SuppressWarnings("unused") Node oldChild, @SuppressWarnings("unused") Node newChild)
118 if(this._name_ == oldChild)
126 if(i.next() == oldChild)
132 oldChild.parent(null);
137 oldChild.parent(null);
ADefCommand.java 183 void replaceChild(@SuppressWarnings("unused") Node oldChild, @SuppressWarnings("unused") Node newChild)
186 if(this._position_ == oldChild)
194 if(i.next() == oldChild)
200 oldChild.parent(null);
205 oldChild.parent(null);
212 if(i.next() == oldChild)
218 oldChild.parent(null);
223 oldChild.parent(null);
228 if(this._command_ == oldChild)
ACallCommand.java 146 void replaceChild(@SuppressWarnings("unused") Node oldChild, @SuppressWarnings("unused") Node newChild)
149 if(this._position_ == oldChild)
157 if(i.next() == oldChild)
163 oldChild.parent(null);
168 oldChild.parent(null);
175 if(i.next() == oldChild)
181 oldChild.parent(null);
186 oldChild.parent(null);
AOptimizedMultipleCommand.java 40 void replaceChild(Node oldChild, Node newChild) {
46 if (commands[i] == oldChild) {
49 oldChild.parent(null);

Completed in 1434 milliseconds

1 2 3 4 5 6