HomeSort by relevance Sort by last modified time
    Searched refs:newChild (Results 1 - 25 of 293) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/apache-xml/src/main/java/org/apache/xalan/templates/
ElemText.java 123 * @param newChild Child to add to children list
129 public ElemTemplateElement appendChild(ElemTemplateElement newChild)
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);
ElemAttributeSet.java 138 * @param newChild Child to be added to this node's list of children
144 public ElemTemplateElement appendChildElem(ElemTemplateElement newChild)
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);
ElemChoose.java 128 * @param newChild Child to add to this node's child list
134 public ElemTemplateElement appendChild(ElemTemplateElement newChild)
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);
ElemComment.java 97 * @param newChild Child to add to this node's child list
103 public ElemTemplateElement appendChild(ElemTemplateElement newChild)
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);
ElemApplyImport.java 98 * @param newChild New element to append to this element's children list
102 public ElemTemplateElement appendChild(ElemTemplateElement newChild)
106 new Object[]{ newChild.getNodeName(),
107 this.getNodeName() }); //"Can not add " +((ElemTemplateElement)newChild).m_elemName +
  /external/webkit/Source/WebCore/bindings/cpp/
WebDOMNodeCustom.cpp 28 WebDOMNode WebDOMNode::insertBefore(const WebDOMNode& newChild, const WebDOMNode& refChild)
34 if (impl()->insertBefore(toWebCore(newChild), toWebCore(refChild), ec, true))
35 return newChild;
41 WebDOMNode WebDOMNode::replaceChild(const WebDOMNode& newChild, const WebDOMNode& oldChild)
47 if (impl()->replaceChild(toWebCore(newChild), toWebCore(oldChild), ec, true))
67 WebDOMNode WebDOMNode::appendChild(const WebDOMNode& newChild)
73 if (impl()->appendChild(toWebCore(newChild), ec, true))
74 return newChild;
  /external/webkit/Source/WebCore/rendering/
CounterNode.cpp 192 void CounterNode::insertAfter(CounterNode* newChild, CounterNode* refChild, const AtomicString& identifier)
194 ASSERT(newChild);
195 ASSERT(!newChild->m_parent);
196 ASSERT(!newChild->m_previousSibling);
197 ASSERT(!newChild->m_nextSibling);
200 if (newChild->m_hasResetType) {
209 refChild->m_nextSibling = newChild;
212 m_firstChild = newChild;
215 newChild->m_parent = this;
216 newChild->m_previousSibling = refChild
    [all...]
RenderObjectChildList.cpp 141 void RenderObjectChildList::appendChildNode(RenderObject* owner, RenderObject* newChild, bool fullAppend)
143 ASSERT(newChild->parent() == 0);
144 ASSERT(!owner->isBlockFlow() || (!newChild->isTableSection() && !newChild->isTableRow() && !newChild->isTableCell()));
146 newChild->setParent(owner);
150 newChild->setPreviousSibling(lChild);
151 lChild->setNextSibling(newChild);
153 setFirstChild(newChild);
155 setLastChild(newChild);
    [all...]
  /libcore/dom/src/test/java/org/w3c/domts/level1/core/
hc_nodeappendchildgetnodename.java 31 * The "appendChild(newChild)" method returns the node
68 Node newChild;
75 newChild = doc.createElement("br");
76 appendNode = employeeNode.appendChild(newChild);
hc_nodeappendchildinvalidnodetype.java 31 * The "appendChild(newChild)" method raises a
33 * a type that does not allow children of the type "newChild"
71 Node newChild;
75 newChild = doc.createAttribute("newAttribute");
80 appendedChild = rootNode.appendChild(newChild);
nodeappendchildgetnodename.java 31 * The "appendChild(newChild)" method returns the node
36 * "getNodeName()" method should return "newChild".
68 Node newChild;
75 newChild = doc.createElement("newChild");
76 appendNode = employeeNode.appendChild(newChild);
78 assertEquals("nodeAppendChildGetNodeNameAssert1", "newChild", childName);
nodeappendchildinvalidnodetype.java 31 * The "appendChild(newChild)" method raises a
33 * a type that does not allow children of the type "newChild"
72 Node newChild;
76 newChild = doc.createAttribute("newAttribute");
81 appendedChild = rootNode.appendChild(newChild);
nodeappendchildnodeancestor.java 31 * The "appendChild(newChild)" method raises a
70 Node newChild;
75 newChild = doc.getDocumentElement();
82 appendedChild = employeeNode.appendChild(newChild);
nodeappendchildchildexists.java 31 * If the "newChild" is already in the tree, it is first
36 * the "appendChild(newChild)" method is invoked the first
68 Node newChild;
78 newChild = childNode.getFirstChild();
79 initialName = newChild.getNodeName();
80 appendedChild = childNode.appendChild(newChild);
attrreplacechild1.java 65 Node newChild;
74 newChild = doc.createTextNode("Yesterday");
79 removedNode = attrNode.replaceChild(newChild, textNode);
hc_attrappendchild2.java 64 Node newChild;
72 newChild = doc.createElement("terday");
77 retval = titleAttr.appendChild(newChild);
hc_nodeappendchildnewchilddiffdocument.java 31 * The "appendChild(newChild)" method raises a
32 * WRONG_DOCUMENT_ERR DOMException if the "newChild" was
72 Node newChild;
78 newChild = doc1.createElement("br");
85 appendedChild = elementNode.appendChild(newChild);
hc_nodeappendchildnodeancestor.java 31 * The "appendChild(newChild)" method raises a
68 Node newChild;
75 newChild = doc.getDocumentElement();
82 appendedChild = employeeNode.appendChild(newChild);
  /external/jsilver/src/com/google/clearsilver/jsilver/syntax/node/
AMultipleCommand.java 78 void replaceChild(@SuppressWarnings("unused") Node oldChild, @SuppressWarnings("unused") Node newChild)
85 if(newChild != null)
87 i.set((PCommand) newChild);
88 newChild.parent(this);
AOptimizedMultipleCommand.java 40 void replaceChild(Node oldChild, Node newChild) {
41 if (newChild == null) {
42 throw new IllegalArgumentException("newChild cannot be null.");
47 commands[i] = (PCommand) newChild;
48 newChild.parent(this);
ASequenceExpression.java 78 void replaceChild(@SuppressWarnings("unused") Node oldChild, @SuppressWarnings("unused") Node newChild)
85 if(newChild != null)
87 i.set((PExpression) newChild);
88 newChild.parent(this);
AFunctionExpression.java 115 void replaceChild(@SuppressWarnings("unused") Node oldChild, @SuppressWarnings("unused") Node newChild)
120 setName((PVariable) newChild);
128 if(newChild != null)
130 i.set((PExpression) newChild);
131 newChild.parent(this);
ADefCommand.java 183 void replaceChild(@SuppressWarnings("unused") Node oldChild, @SuppressWarnings("unused") Node newChild)
188 setPosition((PPosition) newChild);
196 if(newChild != null)
198 i.set((TWord) newChild);
199 newChild.parent(this);
214 if(newChild != null)
216 i.set((PVariable) newChild);
217 newChild.parent(this);
230 setCommand((PCommand) newChild);
ACallCommand.java 146 void replaceChild(@SuppressWarnings("unused") Node oldChild, @SuppressWarnings("unused") Node newChild)
151 setPosition((PPosition) newChild);
159 if(newChild != null)
161 i.set((TWord) newChild);
162 newChild.parent(this);
177 if(newChild != null)
179 i.set((PExpression) newChild);
180 newChild.parent(this);
  /external/webkit/Source/JavaScriptCore/API/tests/
Node.h 48 extern void Node_replaceChild(Node* node, Node* newChild, Node* oldChild);

Completed in 417 milliseconds

1 2 3 4 5 6 7 8 91011>>