Searched defs:appendChild (Results 1 - 25 of 40) 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
/external/webkit/Source/WebCore/bindings/cpp/
H A DWebDOMNodeCustom.cpp67 WebDOMNode WebDOMNode::appendChild(const WebDOMNode& newChild) function in class:WebDOMNode
73 if (impl()->appendChild(toWebCore(newChild), ec, true))
/external/webkit/Source/WebCore/bindings/js/
H A DJSNodeCustom.cpp222 JSValue JSNode::appendChild(ExecState* exec) function in class:WebCore::JSNode
226 bool ok = imp->appendChild(toNode(exec->argument(0)), ec, true);
/external/webkit/Source/WebCore/svg/
H A DSVGElementInstance.cpp87 void SVGElementInstance::appendChild(PassRefPtr<SVGElementInstance> child) function in class:WebCore::SVGElementInstance
/external/webkit/Source/WebCore/page/
H A DFrameTree.cpp85 void FrameTree::appendChild(PassRefPtr<Frame> child) function in class:WebCore::FrameTree
/external/webkit/Source/WebCore/inspector/front-end/
H A Dtreeoutline.js436 TreeOutline.prototype.appendChild = TreeOutline._appendChild;
576 this._listItemNode.appendChild(this._title);
581 TreeElement.prototype.appendChild = TreeOutline._appendChild;
H A DDataGrid.js58 this._scrollContainer.appendChild(this._dataTable);
60 this.element.appendChild(this._headerTable);
61 this.element.appendChild(this._scrollContainer);
76 columnGroup.appendChild(col);
85 div.appendChild(column.titleDOMFragment);
88 cell.appendChild(div);
103 headerRow.appendChild(cell);
112 headerRow.appendChild(cell);
115 this._headerTable.appendChild(this._headerTableColumnGroup);
116 this.headerTableBody.appendChild(headerRo
[all...]
/external/webkit/Source/WebKit2/UIProcess/
H A DWebFrameProxy.cpp189 void WebFrameProxy::appendChild(WebFrameProxy* child) function in class:WebKit::WebFrameProxy
/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/webkit/Source/WebKit/win/
H A DDOMCoreClasses.h177 virtual HRESULT STDMETHODCALLTYPE appendChild(
401 virtual HRESULT STDMETHODCALLTYPE appendChild( function in class:DOMDocument
403 /* [retval][out] */ IDOMNode** result) { return DOMNode::appendChild(oldChild, result); }
632 virtual HRESULT STDMETHODCALLTYPE appendChild( function in class:DOMElement
634 /* [retval][out] */ IDOMNode** result) { return DOMNode::appendChild(oldChild, result); }
/external/chromium/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/webkit/Source/WebCore/dom/
H A DContainerNode.cpp111 // insertBefore(node, 0) is equivalent to appendChild(node)
113 return appendChild(newChild, ec, shouldLazyAttach);
571 bool ContainerNode::appendChild(PassRefPtr<Node> newChild, ExceptionCode& ec, bool shouldLazyAttach) function in class:WebCore::ContainerNode
651 ASSERT(!newChild->parentNode()); // Use appendChild if you need to handle reparenting (and want DOM mutation events).
814 clone->appendChild(n->cloneNode(true), ec);

Completed in 672 milliseconds

12