| /external/webkit/LayoutTests/dom/xhtml/level3/core/ |
| nodereplacechild20.js | 78 Using replaceChild on a DocumentFragment node attempt to replace an Element node with 109 replaced = docFrag.replaceChild(attr,elem);
|
| nodereplacechild26.js | 78 Using replaceChild on an Element node attempt to replace a Text child node with an Element 111 replaced = elem.replaceChild(docElem,firstChild);
|
| nodereplacechild29.js | 78 Using replaceChild on an Element node attempt to replace a new Element node with 108 replaced = elem.replaceChild(newChild,oldChild);
|
| nodereplacechild31.js | 79 Using replaceChild on an Element node that is the replacement Text of an EntityReference 119 replaced = span.replaceChild(newChild,spanText);
|
| nodereplacechild34.js | 78 Using replaceChild on a new Attr node, replace its new EntityReference Child with a 105 replaced = parent.replaceChild(newChild,oldChild);
|
| nodereplacechild35.js | 78 Using replaceChild on a new Attr node, replace its new EntityRefernece Child with a 109 replaced = parent.replaceChild(newChild,oldChild);
|
| nodereplacechild36.js | 78 Using replaceChild on a new Attr node, replace its new EntityRefernece node with a 107 replaced = parent.replaceChild(newChild,oldChild);
|
| nodereplacechild37.js | 84 Using replaceChild on a new Attr node, replace its new Text node with a 123 replaced = parent.replaceChild(newChild,oldChild);
|
| /external/webkit/Source/WebCore/dom/ |
| ContainerNode.h | 48 bool replaceChild(PassRefPtr<Node> newChild, Node* oldChild, ExceptionCode&, bool shouldLazyAttach = false);
|
| /libcore/dom/src/test/java/org/w3c/domts/level1/core/ |
| nodereplacechildnewchildexists.java | 115 replacedChild = employeeNode.replaceChild(newChild, oldChild);
|
| /external/webkit/Source/WebCore/bindings/js/ |
| JSNodeCustom.cpp | 200 JSValue JSNode::replaceChild(ExecState* exec) 204 bool ok = imp->replaceChild(toNode(exec->argument(0)), toNode(exec->argument(1)), ec, true);
|
| /external/webkit/Source/WebCore/platform/graphics/texmap/ |
| GraphicsLayerTextureMapper.cpp | 128 bool GraphicsLayerTextureMapper::replaceChild(GraphicsLayer* oldChild, GraphicsLayer* newChild) 130 if (GraphicsLayer::replaceChild(oldChild, newChild)) {
|
| /external/jsilver/src/com/google/clearsilver/jsilver/syntax/node/ |
| ACallCommand.java | 146 void replaceChild(@SuppressWarnings("unused") Node oldChild, @SuppressWarnings("unused") Node newChild)
|
| ADefCommand.java | 183 void replaceChild(@SuppressWarnings("unused") Node oldChild, @SuppressWarnings("unused") Node newChild)
|
| ALoopCommand.java | 231 void replaceChild(@SuppressWarnings("unused") Node oldChild, @SuppressWarnings("unused") Node newChild)
|
| ALoopIncCommand.java | 268 void replaceChild(@SuppressWarnings("unused") Node oldChild, @SuppressWarnings("unused") Node newChild)
|
| /external/webkit/LayoutTests/dom/html/level1/core/ |
| hc_nodereplacechildnewchilddiffdocument.js | 84 The "replaceChild(newChild,oldChild)" method raises a 132 replacedChild = elementNode.replaceChild(newChild,oldChild);
|
| hc_attrreplacechild1.js | 112 retval = titleAttr.replaceChild(textNode,firstChild);
|
| hc_attrreplacechild2.js | 118 retval = titleAttr.replaceChild(docFrag,firstChild);
|
| hc_nodereplacechildnewchildexists.js | 123 replacedChild = employeeNode.replaceChild(newChild,oldChild);
|
| /external/webkit/LayoutTests/dom/xhtml/level1/core/ |
| hc_nodereplacechildnewchilddiffdocument.js | 84 The "replaceChild(newChild,oldChild)" method raises a 132 replacedChild = elementNode.replaceChild(newChild,oldChild);
|
| hc_attrreplacechild1.js | 112 retval = titleAttr.replaceChild(textNode,firstChild);
|
| hc_attrreplacechild2.js | 118 retval = titleAttr.replaceChild(docFrag,firstChild);
|
| /external/webkit/Source/WebCore/html/ |
| MediaDocument.cpp | 190 // replaceChild will destroy the element, media player, and media engine. 219 videoElement->parentNode()->replaceChild(embedElement, videoElement, ec);
|
| /external/webkit/Source/WebKit/win/ |
| DOMCoreClasses.h | 168 virtual HRESULT STDMETHODCALLTYPE replaceChild( 392 virtual HRESULT STDMETHODCALLTYPE replaceChild( 395 /* [retval][out] */ IDOMNode** result) { return DOMNode::replaceChild(newChild, oldChild, result); } 623 virtual HRESULT STDMETHODCALLTYPE replaceChild( 626 /* [retval][out] */ IDOMNode** result) { return DOMNode::replaceChild(newChild, oldChild, result); } [all...] |