Searched defs:newChild (Results 1 - 25 of 125) sorted by relevance

12345

/external/apache-xml/src/main/java/org/apache/xalan/templates/
H A DElemApplyImport.java98 * @param newChild New element to append to this element's children list
102 public ElemTemplateElement appendChild(ElemTemplateElement newChild) argument
106 new Object[]{ newChild.getNodeName(),
107 this.getNodeName() }); //"Can not add " +((ElemTemplateElement)newChild).m_elemName +
H A DElemChoose.java128 * @param newChild Child to add to this node's child list
134 public ElemTemplateElement appendChild(ElemTemplateElement newChild) argument
137 int type = ((ElemTemplateElement) newChild).getXSLToken();
148 new Object[]{ newChild.getNodeName(),
149 this.getNodeName() }); //"Can not add " +((ElemTemplateElement)newChild).m_elemName +
154 return super.appendChild(newChild);
H A DElemComment.java97 * @param newChild Child to add to this node's child list
103 public ElemTemplateElement appendChild(ElemTemplateElement newChild) argument
106 int type = ((ElemTemplateElement) newChild).getXSLToken();
135 new Object[]{ newChild.getNodeName(),
136 this.getNodeName() }); //"Can not add " +((ElemTemplateElement)newChild).m_elemName +
141 return super.appendChild(newChild);
H A DElemText.java123 * @param newChild Child to add to children list
129 public ElemTemplateElement appendChild(ElemTemplateElement newChild) argument
132 int type = ((ElemTemplateElement) newChild).getXSLToken();
140 new Object[]{ newChild.getNodeName(),
141 this.getNodeName() }); //"Can not add " +((ElemTemplateElement)newChild).m_elemName +
146 return super.appendChild(newChild);
H A DElemAttribute.java216 * @param newChild Child to append to the list of this node's children
222 public ElemTemplateElement appendChild(ElemTemplateElement newChild) argument
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);
H A DElemAttributeSet.java138 * @param newChild Child to be added to this node's list of children
144 public ElemTemplateElement appendChildElem(ElemTemplateElement newChild) argument
147 int type = ((ElemTemplateElement) newChild).getXSLToken();
155 new Object[]{ newChild.getNodeName(),
156 this.getNodeName() }); //"Can not add " +((ElemTemplateElement)newChild).m_elemName +
161 return super.appendChild(newChild);
H A DElemPI.java178 * @param newChild Child to add to child list
184 public ElemTemplateElement appendChild(ElemTemplateElement newChild) argument
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);
/external/jsilver/src/com/google/clearsilver/jsilver/syntax/node/
H A DANoopCommand.java41 void replaceChild(@SuppressWarnings("unused") Node oldChild, @SuppressWarnings("unused") Node newChild) argument
H A DANoopExpression.java41 void replaceChild(@SuppressWarnings("unused") Node oldChild, @SuppressWarnings("unused") Node newChild) argument
H A DACsOpenPosition.java83 void replaceChild(@SuppressWarnings("unused") Node oldChild, @SuppressWarnings("unused") Node newChild) argument
88 setCsOpen((TCsOpen) newChild);
H A DADataCommand.java83 void replaceChild(@SuppressWarnings("unused") Node oldChild, @SuppressWarnings("unused") Node newChild) argument
88 setData((TData) newChild);
H A DADecNumberVariable.java83 void replaceChild(@SuppressWarnings("unused") Node oldChild, @SuppressWarnings("unused") Node newChild) argument
88 setDecNumber((TDecNumber) newChild);
H A DADecimalExpression.java83 void replaceChild(@SuppressWarnings("unused") Node oldChild, @SuppressWarnings("unused") Node newChild) argument
88 setValue((TDecNumber) newChild);
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 DAMultipleCommand.java78 void replaceChild(@SuppressWarnings("unused") Node oldChild, @SuppressWarnings("unused") Node newChild) argument
85 if(newChild != null)
87 i.set((PCommand) newChild);
88 newChild.parent(this);
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 DAOptimizedMultipleCommand.java40 void replaceChild(Node oldChild, Node newChild) { argument
41 if (newChild == null) {
42 throw new IllegalArgumentException("newChild cannot be null.");
47 commands[i] = (PCommand) newChild;
48 newChild.parent(this);
H A DASequenceExpression.java78 void replaceChild(@SuppressWarnings("unused") Node oldChild, @SuppressWarnings("unused") Node newChild) argument
85 if(newChild != null)
87 i.set((PExpression) newChild);
88 newChild.parent(this);
/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/webkit/Source/WebCore/bindings/cpp/
H A DWebDOMNodeCustom.cpp28 WebDOMNode WebDOMNode::insertBefore(const WebDOMNode& newChild, const WebDOMNode& refChild) argument
34 if (impl()->insertBefore(toWebCore(newChild), toWebCore(refChild), ec, true))
35 return newChild;
41 WebDOMNode WebDOMNode::replaceChild(const WebDOMNode& newChild, const WebDOMNode& oldChild) argument
47 if (impl()->replaceChild(toWebCore(newChild), toWebCore(oldChild), ec, true))
67 WebDOMNode WebDOMNode::appendChild(const WebDOMNode& newChild) argument
73 if (impl()->appendChild(toWebCore(newChild), ec, true))
74 return newChild;

Completed in 1033 milliseconds

12345