Searched refs:newChild (Results 126 - 150 of 218) sorted by relevance

123456789

/external/jsilver/src/com/google/clearsilver/jsilver/syntax/node/
H A DAExistsExpression.java83 void replaceChild(@SuppressWarnings("unused") Node oldChild, @SuppressWarnings("unused") Node newChild) argument
88 setExpression((PExpression) newChild);
H A DAHexExpression.java83 void replaceChild(@SuppressWarnings("unused") Node oldChild, @SuppressWarnings("unused") Node newChild) argument
88 setValue((THexNumber) newChild);
H A DAHexNumberVariable.java83 void replaceChild(@SuppressWarnings("unused") Node oldChild, @SuppressWarnings("unused") Node newChild) argument
88 setHexNumber((THexNumber) newChild);
H A DANameVariable.java83 void replaceChild(@SuppressWarnings("unused") Node oldChild, @SuppressWarnings("unused") Node newChild) argument
88 setWord((TWord) newChild);
H A DANegativeExpression.java83 void replaceChild(@SuppressWarnings("unused") Node oldChild, @SuppressWarnings("unused") Node newChild) argument
88 setExpression((PExpression) newChild);
H A DANotExpression.java83 void replaceChild(@SuppressWarnings("unused") Node oldChild, @SuppressWarnings("unused") Node newChild) argument
88 setExpression((PExpression) newChild);
H A DANumericExpression.java83 void replaceChild(@SuppressWarnings("unused") Node oldChild, @SuppressWarnings("unused") Node newChild) argument
88 setExpression((PExpression) newChild);
H A DAStringExpression.java83 void replaceChild(@SuppressWarnings("unused") Node oldChild, @SuppressWarnings("unused") Node newChild) argument
88 setValue((TString) newChild);
H A DAVariableExpression.java83 void replaceChild(@SuppressWarnings("unused") Node oldChild, @SuppressWarnings("unused") Node newChild) argument
88 setVariable((PVariable) newChild);
H A DNode.java26 abstract void replaceChild(Node oldChild, Node newChild); argument
/external/webkit/Source/JavaScriptCore/API/tests/
H A DNode.c64 void Node_replaceChild(Node* node, Node* newChild, Node* oldChild) argument
71 current->node = newChild;
/external/apache-xml/src/main/java/org/apache/xalan/templates/
H A DElemTemplateElement.java249 * @param newChild Child to be added to child list
254 public Node appendChild(Node newChild) throws DOMException argument
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 argument
400 ElemTemplateElement newChildElem = ((ElemTemplateElement) newChild);
427 * @param newChild New child node to insert
434 public Node insertBefore(Node newChild, Nod argument
[all...]
H A DElemCallTemplate.java324 * @param newChild Child to add to this node's children list
330 public ElemTemplateElement appendChild(ElemTemplateElement newChild) argument
333 int type = ((ElemTemplateElement) newChild).getXSLToken();
337 setParamElem((ElemWithParam) newChild);
342 return super.appendChild(newChild);
H A DElemSort.java309 * @param newChild Child to add to the child list
315 public Node appendChild(Node newChild) throws DOMException argument
319 new Object[]{ newChild.getNodeName(),
320 this.getNodeName() }); //"Can not add " +((ElemTemplateElement)newChild).m_elemName +
H A DElemForEach.java429 * @param newChild Child to add to child list
433 public ElemTemplateElement appendChild(ElemTemplateElement newChild) argument
436 int type = ((ElemTemplateElement) newChild).getXSLToken();
440 setSortElem((ElemSort) newChild);
442 return newChild;
445 return super.appendChild(newChild);
H A DElemValueOf.java261 * @param newChild Child to add to children list
267 public ElemTemplateElement appendChild(ElemTemplateElement newChild) argument
271 new Object[]{ newChild.getNodeName(),
272 this.getNodeName() }); //"Can not add " +((ElemTemplateElement)newChild).m_elemName +
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime.Tests/
H A DITreeFixture.cs257 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/
H A DTestTrees.java240 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...]
/external/chromium/chrome/common/extensions/docs/examples/extensions/benchmark/jst/
H A Dutil.js395 * @param {Node} newChild Node to insert.
399 function domInsertBefore(newChild, oldChild) {
400 return oldChild.parentNode.insertBefore(newChild, oldChild);
406 * @param {Node} newChild New child to append.
410 function domReplaceChild(newChild, oldChild) {
411 return oldChild.parentNode.replaceChild(newChild, oldChild);
/external/chromium/chrome/common/extensions/docs/examples/extensions/irc/servlet/jstemplate/
H A Dutil.js395 * @param {Node} newChild Node to insert.
399 function domInsertBefore(newChild, oldChild) {
400 return oldChild.parentNode.insertBefore(newChild, oldChild);
406 * @param {Node} newChild New child to append.
410 function domReplaceChild(newChild, oldChild) {
411 return oldChild.parentNode.replaceChild(newChild, oldChild);
/external/webkit/Source/WebCore/dom/
H A DContainerNode.h47 bool insertBefore(PassRefPtr<Node> newChild, Node* refChild, ExceptionCode&, bool shouldLazyAttach = false);
48 bool replaceChild(PassRefPtr<Node> newChild, Node* oldChild, ExceptionCode&, bool shouldLazyAttach = false);
50 bool appendChild(PassRefPtr<Node> newChild, ExceptionCode&, bool shouldLazyAttach = false);
57 void parserInsertBefore(PassRefPtr<Node> newChild, Node* refChild);
/external/webkit/Source/WebCore/rendering/
H A DRenderDetails.h43 virtual void addChild(RenderObject* newChild, RenderObject *beforeChild = 0);
H A DRenderDetails.cpp58 void RenderDetails::addChild(RenderObject* newChild, RenderObject* beforeChild) argument
62 contentBlock()->addChild(newChild, beforeChild);
/external/webkit/Source/WebCore/bindings/v8/custom/
H A DV8NodeCustom.cpp67 Node* newChild = V8Node::HasInstance(args[0]) ? V8Node::toNative(v8::Handle<v8::Object>::Cast(args[0])) : 0; local
69 bool success = imp->insertBefore(newChild, refChild, ec, true);
86 Node* newChild = V8Node::HasInstance(args[0]) ? V8Node::toNative(v8::Handle<v8::Object>::Cast(args[0])) : 0; local
88 bool success = imp->replaceChild(newChild, oldChild, ec, true);
122 Node* newChild = V8Node::HasInstance(args[0]) ? V8Node::toNative(v8::Handle<v8::Object>::Cast(args[0])) : 0; local
123 bool success = imp->appendChild(newChild, ec, true );
/external/webkit/Source/WebCore/html/
H A DHTMLElement.h54 Element* insertAdjacentElement(const String& where, Element* newChild, ExceptionCode&);
103 Node* insertAdjacent(const String& where, Node* newChild, ExceptionCode&);

Completed in 3053 milliseconds

123456789