/external/jsilver/src/com/google/clearsilver/jsilver/syntax/node/ |
ANoopCommand.java | 41 void replaceChild(@SuppressWarnings("unused") Node oldChild, @SuppressWarnings("unused") Node newChild)
|
ANoopExpression.java | 41 void replaceChild(@SuppressWarnings("unused") Node oldChild, @SuppressWarnings("unused") Node newChild)
|
Token.java | 55 void replaceChild(@SuppressWarnings("unused") Node oldChild, @SuppressWarnings("unused") Node newChild)
|
Node.java | 26 abstract void replaceChild(Node oldChild, Node newChild); 30 this.parent.replaceChild(this, node);
|
ACsOpenPosition.java | 83 void replaceChild(@SuppressWarnings("unused") Node oldChild, @SuppressWarnings("unused") Node newChild)
|
ADataCommand.java | 83 void replaceChild(@SuppressWarnings("unused") Node oldChild, @SuppressWarnings("unused") Node newChild)
|
ADecNumberVariable.java | 83 void replaceChild(@SuppressWarnings("unused") Node oldChild, @SuppressWarnings("unused") Node newChild)
|
ADecimalExpression.java | 83 void replaceChild(@SuppressWarnings("unused") Node oldChild, @SuppressWarnings("unused") Node newChild)
|
AExistsExpression.java | 83 void replaceChild(@SuppressWarnings("unused") Node oldChild, @SuppressWarnings("unused") Node newChild)
|
AHexExpression.java | 83 void replaceChild(@SuppressWarnings("unused") Node oldChild, @SuppressWarnings("unused") Node newChild)
|
AHexNumberVariable.java | 83 void replaceChild(@SuppressWarnings("unused") Node oldChild, @SuppressWarnings("unused") Node newChild)
|
AMultipleCommand.java | 78 void replaceChild(@SuppressWarnings("unused") Node oldChild, @SuppressWarnings("unused") Node newChild)
|
ANameVariable.java | 83 void replaceChild(@SuppressWarnings("unused") Node oldChild, @SuppressWarnings("unused") Node newChild)
|
ANegativeExpression.java | 83 void replaceChild(@SuppressWarnings("unused") Node oldChild, @SuppressWarnings("unused") Node newChild)
|
ANotExpression.java | 83 void replaceChild(@SuppressWarnings("unused") Node oldChild, @SuppressWarnings("unused") Node newChild)
|
ANumericExpression.java | 83 void replaceChild(@SuppressWarnings("unused") Node oldChild, @SuppressWarnings("unused") Node newChild)
|
/external/webkit/Source/WebCore/bindings/cpp/ |
WebDOMNodeCustom.cpp | 41 WebDOMNode WebDOMNode::replaceChild(const WebDOMNode& newChild, const WebDOMNode& oldChild) 47 if (impl()->replaceChild(toWebCore(newChild), toWebCore(oldChild), ec, true))
|
/external/webkit/LayoutTests/dom/xhtml/level3/core/ |
nodereplacechild30.js | 81 Using replaceChild on an Element node attempt to replace a new Element child node with 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); 152 replaced = parent.replaceChild(oldChild,newCdata); 156 replaced = parent.replaceChild(oldChild,newERef) [all...] |
nodereplacechild38.js | 78 Using replaceChild on an Entity node attempt to replace its Text child with new Text, 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);
|
nodereplacechild23.js | 78 Using replaceChild on a new EntityReference node attempt to replace an Element, Text, 119 replaced = entRef.replaceChild(cdata,elem); 130 replaced = entRef.replaceChild(pi,cdata); 141 replaced = entRef.replaceChild(comment,pi); 152 replaced = entRef.replaceChild(txt,comment); 163 replaced = entRef.replaceChild(elem,txt);
|
nodereplacechild02.js | 79 The method replaceChild replaces the child node oldChild with newChild in the list of 82 Using replaceChild on this Document node attempt to replace this DocumentType node with 103 replaced = doc.replaceChild(docType,docType);
|
nodereplacechild21.js | 85 The method replaceChild replaces the child node oldChild with newChild in the list of 88 Using replaceChild on this DocumentType node attempt to replace an Entity node with 135 replacedChild = docType.replaceChild(notation,ent); 146 replacedChild = docType.replaceChild(ent,docType);
|
nodereplacechild22.js | 78 Using replaceChild on a new EntityReference node attempt to replace an EntityReference node with 108 replacedChild = entRefMain.replaceChild(elem,entRef); 119 replacedChild = entRefMain.replaceChild(entRef,elem); 130 replacedChild = entRefMain.replaceChild(entRefMain,entRef);
|
/libcore/dom/src/test/java/org/w3c/domts/level1/core/ |
nodereplacechildnomodificationallowederrEE.java | 31 * The "replaceChild(newChild,oldChild)" method causes the 35 * Create an entity reference execute the "replaceChild(newChild,oldChild)" method. 80 replacedChild = entRef.replaceChild(createdNode, entText);
|
/external/libvpx/examples/includes/ASCIIMathPHP-2.0/ |
htmlMathML.js | 38 tmp_node.replaceChild(convertMath(tmp_node.firstChild),tmp_node.firstChild); 81 node.parentNode.replaceChild(newnode,node);
|