HomeSort by relevance Sort by last modified time
    Searched refs:newChild (Results 101 - 125 of 225) sorted by null

1 2 3 45 6 7 8 9

  /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)
ASetCommand.java 157 void replaceChild(@SuppressWarnings("unused") Node oldChild, @SuppressWarnings("unused") Node newChild)
162 setPosition((PPosition) newChild);
168 setVariable((PVariable) newChild);
174 setExpression((PExpression) newChild);
Token.java 55 void replaceChild(@SuppressWarnings("unused") Node oldChild, @SuppressWarnings("unused") Node newChild)
ACsOpenPosition.java 83 void replaceChild(@SuppressWarnings("unused") Node oldChild, @SuppressWarnings("unused") Node newChild)
88 setCsOpen((TCsOpen) newChild);
ADataCommand.java 83 void replaceChild(@SuppressWarnings("unused") Node oldChild, @SuppressWarnings("unused") Node newChild)
88 setData((TData) newChild);
ADecNumberVariable.java 83 void replaceChild(@SuppressWarnings("unused") Node oldChild, @SuppressWarnings("unused") Node newChild)
88 setDecNumber((TDecNumber) newChild);
ADecimalExpression.java 83 void replaceChild(@SuppressWarnings("unused") Node oldChild, @SuppressWarnings("unused") Node newChild)
88 setValue((TDecNumber) newChild);
AExistsExpression.java 83 void replaceChild(@SuppressWarnings("unused") Node oldChild, @SuppressWarnings("unused") Node newChild)
88 setExpression((PExpression) newChild);
AHexExpression.java 83 void replaceChild(@SuppressWarnings("unused") Node oldChild, @SuppressWarnings("unused") Node newChild)
88 setValue((THexNumber) newChild);
AHexNumberVariable.java 83 void replaceChild(@SuppressWarnings("unused") Node oldChild, @SuppressWarnings("unused") Node newChild)
88 setHexNumber((THexNumber) newChild);
ANameVariable.java 83 void replaceChild(@SuppressWarnings("unused") Node oldChild, @SuppressWarnings("unused") Node newChild)
88 setWord((TWord) newChild);
ANegativeExpression.java 83 void replaceChild(@SuppressWarnings("unused") Node oldChild, @SuppressWarnings("unused") Node newChild)
88 setExpression((PExpression) newChild);
ANotExpression.java 83 void replaceChild(@SuppressWarnings("unused") Node oldChild, @SuppressWarnings("unused") Node newChild)
88 setExpression((PExpression) newChild);
ANumericExpression.java 83 void replaceChild(@SuppressWarnings("unused") Node oldChild, @SuppressWarnings("unused") Node newChild)
88 setExpression((PExpression) newChild);
AStringExpression.java 83 void replaceChild(@SuppressWarnings("unused") Node oldChild, @SuppressWarnings("unused") Node newChild)
88 setValue((TString) newChild);
AVariableExpression.java 83 void replaceChild(@SuppressWarnings("unused") Node oldChild, @SuppressWarnings("unused") Node newChild)
88 setVariable((PVariable) newChild);
  /libcore/dom/src/test/java/org/w3c/domts/level1/core/
nodeinsertbeforenewchildexists.java 31 * If the "newChild" is already in the tree, the
32 * "insertBefore(newChild,refChild)" method must first
71 Node newChild;
112 newChild = childList.item(0);
116 newChild = childList.item(1);
119 insertedNode = employeeNode.insertBefore(newChild, refChild);
nodereplacechildnewchildexists.java 68 Node newChild = null;
106 newChild = childList.item(1);
110 newChild = childList.item(0);
115 replacedChild = employeeNode.replaceChild(newChild, oldChild);
nodeinsertbefore.java 31 * The "insertBefore(newChild,refChild)" method inserts the
32 * node "newChild" before the node "refChild".
35 * child of the second employee and check the "newChild"
68 Node newChild;
83 expectedWithWhitespace.add("newChild");
95 expectedWithoutWhitespace.add("newChild");
116 newChild = doc.createElement("newChild");
117 insertedNode = employeeNode.insertBefore(newChild, refChild);
  /libcore/dom/src/test/java/org/w3c/domts/level2/core/
elementsetattributenodens06.java 78 Node newChild;
83 newChild = attribute.appendChild(entRef);
  /external/apache-xml/src/main/java/org/apache/xalan/templates/
ElemTemplateElement.java 249 * @param newChild Child to be added to child list
254 public Node appendChild(Node newChild) throws DOMException
257 if (null == newChild)
262 ElemTemplateElement elem = (ElemTemplateElement) newChild;
277 return newChild;
387 * @param newChild New child to replace with
394 public Node replaceChild(Node newChild, Node oldChild) throws DOMException
400 ElemTemplateElement newChildElem = ((ElemTemplateElement) newChild);
427 * @param newChild New child node to insert
434 public Node insertBefore(Node newChild, Node refChild) throws DOMExceptio
    [all...]
ElemCallTemplate.java 324 * @param newChild Child to add to this node's children list
330 public ElemTemplateElement appendChild(ElemTemplateElement newChild)
333 int type = ((ElemTemplateElement) newChild).getXSLToken();
337 setParamElem((ElemWithParam) newChild);
342 return super.appendChild(newChild);
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime.Tests/
ITreeFixture.cs 257 CommonTree newChild = new CommonTree(new CommonToken(5));
261 t.ReplaceChildren(0, 0, newChild);
278 CommonTree newChild = new CommonTree(new CommonToken(99, "c"));
279 t.ReplaceChildren(0, 0, newChild);
293 CommonTree newChild = new CommonTree(new CommonToken(99, "x"));
294 t.ReplaceChildren(1, 1, newChild);
308 CommonTree newChild = new CommonTree(new CommonToken(99, "x"));
309 t.ReplaceChildren(0, 0, newChild);
323 CommonTree newChild = new CommonTree(new CommonToken(99, "x"));
324 t.ReplaceChildren(2, 2, newChild);
    [all...]
  /external/antlr/antlr-3.4/tool/src/test/java/org/antlr/test/
TestTrees.java 240 CommonTree newChild = new CommonTree(new CommonToken(5));
243 t.replaceChildren(0, 0, newChild);
257 CommonTree newChild = new CommonTree(new CommonToken(99, "c"));
258 t.replaceChildren(0, 0, newChild);
270 CommonTree newChild = new CommonTree(new CommonToken(99,"x"));
271 t.replaceChildren(1, 1, newChild);
283 CommonTree newChild = new CommonTree(new CommonToken(99,"x"));
284 t.replaceChildren(0, 0, newChild);
296 CommonTree newChild = new CommonTree(new CommonToken(99,"x"));
297 t.replaceChildren(2, 2, newChild);
    [all...]

Completed in 283 milliseconds

1 2 3 45 6 7 8 9