HomeSort by relevance Sort by last modified time
    Searched refs:newChild (Results 51 - 75 of 235) sorted by null

1 23 4 5 6 7 8 910

  /libcore/dom/src/test/java/org/w3c/domts/level1/core/
nodereplacechildnodename.java 33 * returned by the "replaceChild(newChild,oldChild)"
68 Node newChild;
78 newChild = doc.createElement("newChild");
79 replacedNode = employeeNode.replaceChild(newChild, oldChild);
nodereplacechildoldchildnonexistent.java 31 * The "replaceChild(newChild,oldChild)" method raises a
70 Node newChild;
75 newChild = doc.createElement("newChild");
83 replacedNode = elementNode.replaceChild(newChild, oldChild);
  /external/jsilver/src/com/google/clearsilver/jsilver/syntax/node/
AEachCommand.java 194 void replaceChild(@SuppressWarnings("unused") Node oldChild, @SuppressWarnings("unused") Node newChild)
199 setPosition((PPosition) newChild);
205 setVariable((PVariable) newChild);
211 setExpression((PExpression) newChild);
217 setCommand((PCommand) newChild);
AIfCommand.java 194 void replaceChild(@SuppressWarnings("unused") Node oldChild, @SuppressWarnings("unused") Node newChild)
199 setPosition((PPosition) newChild);
205 setExpression((PExpression) newChild);
211 setBlock((PCommand) newChild);
217 setOtherwise((PCommand) newChild);
ALoopToCommand.java 194 void replaceChild(@SuppressWarnings("unused") Node oldChild, @SuppressWarnings("unused") Node newChild)
199 setPosition((PPosition) newChild);
205 setVariable((PVariable) newChild);
211 setExpression((PExpression) newChild);
217 setCommand((PCommand) newChild);
AWithCommand.java 194 void replaceChild(@SuppressWarnings("unused") Node oldChild, @SuppressWarnings("unused") Node newChild)
199 setPosition((PPosition) newChild);
205 setVariable((PVariable) newChild);
211 setExpression((PExpression) newChild);
217 setCommand((PCommand) newChild);
ALoopIncCommand.java 268 void replaceChild(@SuppressWarnings("unused") Node oldChild, @SuppressWarnings("unused") Node newChild)
273 setPosition((PPosition) newChild);
279 setVariable((PVariable) newChild);
285 setStart((PExpression) newChild);
291 setEnd((PExpression) newChild);
297 setIncrement((PExpression) newChild);
303 setCommand((PCommand) newChild);
ALoopCommand.java 231 void replaceChild(@SuppressWarnings("unused") Node oldChild, @SuppressWarnings("unused") Node newChild)
236 setPosition((PPosition) newChild);
242 setVariable((PVariable) newChild);
248 setStart((PExpression) newChild);
254 setEnd((PExpression) newChild);
260 setCommand((PCommand) newChild);
AAddExpression.java 120 void replaceChild(@SuppressWarnings("unused") Node oldChild, @SuppressWarnings("unused") Node newChild)
125 setLeft((PExpression) newChild);
131 setRight((PExpression) newChild);
AAndExpression.java 120 void replaceChild(@SuppressWarnings("unused") Node oldChild, @SuppressWarnings("unused") Node newChild)
125 setLeft((PExpression) newChild);
131 setRight((PExpression) newChild);
ACommaExpression.java 120 void replaceChild(@SuppressWarnings("unused") Node oldChild, @SuppressWarnings("unused") Node newChild)
125 setLeft((PExpression) newChild);
131 setRight((PExpression) newChild);
ACommentCommand.java 120 void replaceChild(@SuppressWarnings("unused") Node oldChild, @SuppressWarnings("unused") Node newChild)
125 setPosition((PPosition) newChild);
131 setComment((TComment) newChild);
AContentTypeCommand.java 120 void replaceChild(@SuppressWarnings("unused") Node oldChild, @SuppressWarnings("unused") Node newChild)
125 setPosition((PPosition) newChild);
131 setString((TString) newChild);
ADescendVariable.java 120 void replaceChild(@SuppressWarnings("unused") Node oldChild, @SuppressWarnings("unused") Node newChild)
125 setParent((PVariable) newChild);
131 setChild((PVariable) newChild);
ADivideExpression.java 120 void replaceChild(@SuppressWarnings("unused") Node oldChild, @SuppressWarnings("unused") Node newChild)
125 setLeft((PExpression) newChild);
131 setRight((PExpression) newChild);
AEqExpression.java 120 void replaceChild(@SuppressWarnings("unused") Node oldChild, @SuppressWarnings("unused") Node newChild)
125 setLeft((PExpression) newChild);
131 setRight((PExpression) newChild);
AEvarCommand.java 120 void replaceChild(@SuppressWarnings("unused") Node oldChild, @SuppressWarnings("unused") Node newChild)
125 setPosition((PPosition) newChild);
131 setExpression((PExpression) newChild);
AExpandVariable.java 120 void replaceChild(@SuppressWarnings("unused") Node oldChild, @SuppressWarnings("unused") Node newChild)
125 setParent((PVariable) newChild);
131 setChild((PExpression) newChild);
AGtExpression.java 120 void replaceChild(@SuppressWarnings("unused") Node oldChild, @SuppressWarnings("unused") Node newChild)
125 setLeft((PExpression) newChild);
131 setRight((PExpression) newChild);
AGteExpression.java 120 void replaceChild(@SuppressWarnings("unused") Node oldChild, @SuppressWarnings("unused") Node newChild)
125 setLeft((PExpression) newChild);
131 setRight((PExpression) newChild);
AHardIncludeCommand.java 120 void replaceChild(@SuppressWarnings("unused") Node oldChild, @SuppressWarnings("unused") Node newChild)
125 setPosition((PPosition) newChild);
131 setExpression((PExpression) newChild);
AHardLincludeCommand.java 120 void replaceChild(@SuppressWarnings("unused") Node oldChild, @SuppressWarnings("unused") Node newChild)
125 setPosition((PPosition) newChild);
131 setExpression((PExpression) newChild);
AIncludeCommand.java 120 void replaceChild(@SuppressWarnings("unused") Node oldChild, @SuppressWarnings("unused") Node newChild)
125 setPosition((PPosition) newChild);
131 setExpression((PExpression) newChild);
AInlineCommand.java 120 void replaceChild(@SuppressWarnings("unused") Node oldChild, @SuppressWarnings("unused") Node newChild)
125 setPosition((PPosition) newChild);
131 setCommand((PCommand) newChild);
  /packages/apps/Mms/src/com/android/mms/dom/
NodeImpl.java 54 public Node appendChild(Node newChild) throws DOMException {
55 ((NodeImpl)newChild).setParentNode(this);
56 mChildNodes.remove(newChild);
57 mChildNodes.add(newChild);
58 return newChild;
156 public Node insertBefore(Node newChild, Node refChild) throws DOMException {
180 public Node replaceChild(Node newChild, Node oldChild) throws DOMException {
184 mChildNodes.remove(newChild);
188 mChildNodes.setElementAt(newChild, mChildNodes.indexOf(oldChild));
189 ((NodeImpl)newChild).setParentNode(this)
    [all...]

Completed in 124 milliseconds

1 23 4 5 6 7 8 910