Searched defs:appendChild (Results 1 - 25 of 41) 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_org/third_party/WebKit/Source/web/
H A DWebFrame.cpp109 void WebFrame::appendChild(WebFrame* child) function in class:blink::WebFrame
/external/chromium_org/third_party/WebKit/Source/wtf/
H A DTreeNode.h82 appendChild(newChild);
97 void appendChild(NodeType* child) function in class:WTF::TreeNode
146 this->appendChild(child);
/external/chromium_org/chrome/common/extensions/docs/examples/extensions/managed_bookmarks/
H A Dbackground.js85 Node.prototype.appendChild = function(node) {
124 this.appendChild(currentChild);
137 this.appendChild(newChild);
246 result.appendChild(unserializeNode(nodesMap, child));
260 this._root.appendChild(new Node(this._nodesMap, '1', 'Bookmarks Bar'));
261 this._root.appendChild(new Node(this._nodesMap, '2', 'Other Bookmarks'));
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/ui/
H A Dtreeoutline.js72 TreeOutline.prototype.appendChild = function(child)
572 this._listItemNode.appendChild(this._title);
577 TreeElement.prototype.appendChild = TreeOutline.prototype.appendChild;
/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/chromium_org/chrome/common/extensions/docs/examples/api/tabs/inspector/
H A Djstemplate_compiled.js27 appendChild(owner, element);
44 appendChild(owner, element);
121 function appendChild(parent, child) { function
122 parent.appendChild(child);
375 return node.appendChild(child);
/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/chromium_org/third_party/WebKit/Source/core/dom/
H A DContainerNode.cpp189 // insertBefore(node, 0) is equivalent to appendChild(node)
191 return appendChild(newChild, exceptionState);
680 PassRefPtrWillBeRawPtr<Node> ContainerNode::appendChild(PassRefPtrWillBeRawPtr<Node> newChild, ExceptionState& exceptionState) function in class:blink::ContainerNode
748 ASSERT(!newChild->parentNode()); // Use appendChild if you need to handle reparenting (and want DOM mutation events).
859 clone->appendChild(n->cloneNode(true), exceptionState);

Completed in 545 milliseconds

12