HomeSort by relevance Sort by last modified time
    Searched refs:newChild (Results 76 - 100 of 304) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/jsilver/src/com/google/clearsilver/jsilver/syntax/node/
ALincludeCommand.java 120 void replaceChild(@SuppressWarnings("unused") Node oldChild, @SuppressWarnings("unused") Node newChild)
125 setPosition((PPosition) newChild);
131 setExpression((PExpression) newChild);
ALtExpression.java 120 void replaceChild(@SuppressWarnings("unused") Node oldChild, @SuppressWarnings("unused") Node newChild)
125 setLeft((PExpression) newChild);
131 setRight((PExpression) newChild);
ALteExpression.java 120 void replaceChild(@SuppressWarnings("unused") Node oldChild, @SuppressWarnings("unused") Node newChild)
125 setLeft((PExpression) newChild);
131 setRight((PExpression) newChild);
ALvarCommand.java 120 void replaceChild(@SuppressWarnings("unused") Node oldChild, @SuppressWarnings("unused") Node newChild)
125 setPosition((PPosition) newChild);
131 setExpression((PExpression) newChild);
AModuloExpression.java 120 void replaceChild(@SuppressWarnings("unused") Node oldChild, @SuppressWarnings("unused") Node newChild)
125 setLeft((PExpression) newChild);
131 setRight((PExpression) newChild);
AMultiplyExpression.java 120 void replaceChild(@SuppressWarnings("unused") Node oldChild, @SuppressWarnings("unused") Node newChild)
125 setLeft((PExpression) newChild);
131 setRight((PExpression) newChild);
ANameCommand.java 120 void replaceChild(@SuppressWarnings("unused") Node oldChild, @SuppressWarnings("unused") Node newChild)
125 setPosition((PPosition) newChild);
131 setVariable((PVariable) newChild);
ANeExpression.java 120 void replaceChild(@SuppressWarnings("unused") Node oldChild, @SuppressWarnings("unused") Node newChild)
125 setLeft((PExpression) newChild);
131 setRight((PExpression) newChild);
ANumericAddExpression.java 120 void replaceChild(@SuppressWarnings("unused") Node oldChild, @SuppressWarnings("unused") Node newChild)
125 setLeft((PExpression) newChild);
131 setRight((PExpression) newChild);
ANumericEqExpression.java 120 void replaceChild(@SuppressWarnings("unused") Node oldChild, @SuppressWarnings("unused") Node newChild)
125 setLeft((PExpression) newChild);
131 setRight((PExpression) newChild);
ANumericNeExpression.java 120 void replaceChild(@SuppressWarnings("unused") Node oldChild, @SuppressWarnings("unused") Node newChild)
125 setLeft((PExpression) newChild);
131 setRight((PExpression) newChild);
AOrExpression.java 120 void replaceChild(@SuppressWarnings("unused") Node oldChild, @SuppressWarnings("unused") Node newChild)
125 setLeft((PExpression) newChild);
131 setRight((PExpression) newChild);
ASubtractExpression.java 120 void replaceChild(@SuppressWarnings("unused") Node oldChild, @SuppressWarnings("unused") Node newChild)
125 setLeft((PExpression) newChild);
131 setRight((PExpression) newChild);
AUvarCommand.java 120 void replaceChild(@SuppressWarnings("unused") Node oldChild, @SuppressWarnings("unused") Node newChild)
125 setPosition((PPosition) newChild);
131 setExpression((PExpression) newChild);
AVarCommand.java 120 void replaceChild(@SuppressWarnings("unused") Node oldChild, @SuppressWarnings("unused") Node newChild)
125 setPosition((PPosition) newChild);
131 setExpression((PExpression) newChild);
Start.java 108 void replaceChild(Node oldChild, Node newChild)
112 setPCommand((PCommand) newChild);
118 setEOF((EOF) newChild);
AAltCommand.java 157 void replaceChild(@SuppressWarnings("unused") Node oldChild, @SuppressWarnings("unused") Node newChild)
162 setPosition((PPosition) newChild);
168 setExpression((PExpression) newChild);
174 setCommand((PCommand) newChild);
AAutoescapeCommand.java 157 void replaceChild(@SuppressWarnings("unused") Node oldChild, @SuppressWarnings("unused") Node newChild)
162 setPosition((PPosition) newChild);
168 setExpression((PExpression) newChild);
174 setCommand((PCommand) newChild);
  /libcore/dom/src/test/java/org/w3c/domts/level1/core/
hc_nodeappendchildchildexists.java 31 * If the "newChild" is already in the tree, it is first
36 * the "appendChild(newChild)" method is invoked the first
69 Node newChild;
90 newChild = childList.item(0);
91 appendedChild = childNode.appendChild(newChild);
hc_nodeinsertbefore.java 31 * The "insertBefore(newChild,refChild)" method inserts the
32 * node "newChild" before the node "refChild".
35 * sup element in the document and check the "newChild"
70 Node newChild;
91 newChild = doc.createElement("br");
92 insertedNode = employeeNode.insertBefore(newChild, refChild);
hc_nodeinsertbeforenewchildexists.java 31 * If the "newChild" is already in the tree, the
32 * "insertBefore(newChild,refChild)" method must first
71 Node newChild;
91 newChild = childList.item(0);
92 insertedNode = employeeNode.insertBefore(newChild, refChild);
hc_nodereplacechildnewchildexists.java 31 * If the "newChild" is already in the tree, it is first
67 Node newChild = null;
87 newChild = childList.item(0);
89 replacedChild = employeeNode.replaceChild(newChild, oldChild);
  /libcore/luni/src/main/java/org/w3c/dom/
Node.java 277 * Inserts the node <code>newChild</code> before the existing child node
279 * insert <code>newChild</code> at the end of the list of children.
280 * <br>If <code>newChild</code> is a <code>DocumentFragment</code> object,
282 * <code>refChild</code>. If the <code>newChild</code> is already in the
286 * @param newChild The node to insert.
292 * allow children of the type of the <code>newChild</code> node, or if
297 * <br>WRONG_DOCUMENT_ERR: Raised if <code>newChild</code> was created
309 public Node insertBefore(Node newChild,
314 * Replaces the child node <code>oldChild</code> with <code>newChild</code>
316 * <br>If <code>newChild</code> is a <code>DocumentFragment</code> object
    [all...]
  /external/apache-xml/src/main/java/org/apache/xalan/templates/
ElemAttribute.java 216 * @param newChild Child to append to the list of this node's children
222 public ElemTemplateElement appendChild(ElemTemplateElement newChild)
225 int type = ((ElemTemplateElement) newChild).getXSLToken();
254 new Object[]{ newChild.getNodeName(),
255 this.getNodeName() }); //"Can not add " +((ElemTemplateElement)newChild).m_elemName +
260 return super.appendChild(newChild);
ElemPI.java 178 * @param newChild Child to add to child list
184 public ElemTemplateElement appendChild(ElemTemplateElement newChild)
187 int type = ((ElemTemplateElement) newChild).getXSLToken();
216 new Object[]{ newChild.getNodeName(),
217 this.getNodeName() }); //"Can not add " +((ElemTemplateElement)newChild).m_elemName +
222 return super.appendChild(newChild);

Completed in 414 milliseconds

1 2 34 5 6 7 8 91011>>