Searched defs:appendChild (Results 1 - 25 of 49) sorted by relevance

12

/external/apache-xml/src/main/java/org/apache/xalan/templates/
H A DElemApplyImport.java102 public ElemTemplateElement appendChild(ElemTemplateElement newChild) method in class:ElemApplyImport
H A DElemChoose.java134 public ElemTemplateElement appendChild(ElemTemplateElement newChild) method in class:ElemChoose
154 return super.appendChild(newChild);
H A DElemComment.java103 public ElemTemplateElement appendChild(ElemTemplateElement newChild) method in class:ElemComment
141 return super.appendChild(newChild);
H A DElemText.java129 public ElemTemplateElement appendChild(ElemTemplateElement newChild) method in class:ElemText
146 return super.appendChild(newChild);
H A DElemAttribute.java222 public ElemTemplateElement appendChild(ElemTemplateElement newChild) method in class:ElemAttribute
260 return super.appendChild(newChild);
H A DElemPI.java184 public ElemTemplateElement appendChild(ElemTemplateElement newChild) method in class:ElemPI
222 return super.appendChild(newChild);
H A DElemCopyOf.java217 public ElemTemplateElement appendChild(ElemTemplateElement newChild) method in class:ElemCopyOf
H A DElemSort.java315 public Node appendChild(Node newChild) throws DOMException method in class:ElemSort
H A DElemValueOf.java267 public ElemTemplateElement appendChild(ElemTemplateElement newChild) method in class:ElemValueOf
H A DElemCallTemplate.java330 public ElemTemplateElement appendChild(ElemTemplateElement newChild) method in class:ElemCallTemplate
342 return super.appendChild(newChild);
H A DElemWithParam.java248 public ElemTemplateElement appendChild(ElemTemplateElement elem) method in class:ElemWithParam
257 return super.appendChild(elem);
H A DElemForEach.java433 public ElemTemplateElement appendChild(ElemTemplateElement newChild) method in class:ElemForEach
445 return super.appendChild(newChild);
H A DElemVariable.java516 public ElemTemplateElement appendChild(ElemTemplateElement elem) method in class:ElemVariable
525 return super.appendChild(elem);
H A DElemNumber.java583 public ElemTemplateElement appendChild(ElemTemplateElement newChild) method in class:ElemNumber
H A DElemLiteralResult.java753 public Node appendChild(Node newChild) throws DOMException method in class:ElemLiteralResult.Attribute
H A DElemTemplateElement.java254 public Node appendChild(Node newChild) throws DOMException method in class:ElemTemplateElement
292 public ElemTemplateElement appendChild(ElemTemplateElement elem) method in class:ElemTemplateElement
438 appendChild(newChild);
1590 appendChild((ElemTemplateElement)n);
/external/chromium-trace/catapult/third_party/beautifulsoup4/bs4/builder/
H A D_html5lib.py87 def appendChild(self, node): member in class:TreeBuilderForHtml5lib
125 def appendChild(self, node): member in class:Element
202 self.appendChild(data)
208 # (See comments in appendChild)
/external/chromium-trace/catapult/third_party/html5lib-python/html5lib/treebuilders/
H A D_base.py54 def appendChild(self, node): member in class:Node
83 newParent.appendChild(child)
249 self.document.appendChild(element)
257 self.document.appendChild(doctype)
262 parent.appendChild(self.commentClass(token["data"]))
292 self.openElements[-1].appendChild(element)
306 parent.appendChild(element)
H A Ddom.py53 def appendChild(self, node): member in class:getDomBuilder.NodeBuilder
55 self.element.appendChild(node.element)
62 self.element.appendChild(text)
77 newParent.element.appendChild(child)
124 self.document.appendChild(NodeBuilder(doctype))
142 def appendChild(self, node): member in class:getDomBuilder.TreeBuilder
143 self.dom.appendChild(node.element)
164 self.dom.appendChild(self.dom.createTextNode(data))
H A Detree.py90 def appendChild(self, node): member in class:getETreeBuilder.Element
H A Detree_lxml.py45 def appendChild(self, element): member in class:Document
242 def appendChild(self, child): member in class:TreeBuilder.__init__.Element
243 builder.Element.appendChild(self, child)
/external/apache-xml/src/main/java/org/apache/xml/dtm/ref/dom2dtm/
H A DDOM2DTMdefaultNamespaceDeclarationNode.java95 public Node appendChild(Node a) {throw new DTMException(NOT_SUPPORTED_ERR);} method in class:DOM2DTMdefaultNamespaceDeclarationNode
/external/apache-xml/src/main/java/org/apache/xml/dtm/
H A DDTM.java914 * insertionCursor.appendChild(document.importNode(newChild)))
923 public void appendChild(int newChild, boolean clone, boolean cloneDepth); method in interface:DTM
927 * to the end of the document. Behavior is otherwise like appendChild().
/external/apache-xml/src/main/java/org/apache/xml/utils/
H A DUnImplNode.java94 public Node appendChild(Node newChild) throws DOMException method in class:UnImplNode
97 error(XMLErrorResources.ER_FUNCTION_NOT_SUPPORTED); //"appendChild not supported!");
/external/apache-xml/src/main/java/org/apache/xml/dtm/ref/
H A DDTMDefaultBase.java2235 public void appendChild(int newChild, boolean clone, boolean cloneDepth) method in class:DTMDefaultBase
2237 error(XMLMessages.createXMLMessage(XMLErrorResources.ER_METHOD_NOT_SUPPORTED, null));//"appendChild not yet supported!");

Completed in 265 milliseconds

12