HomeSort by relevance Sort by last modified time
    Searched defs:appendChild (Results 1 - 25 of 52) sorted by null

1 2 3

  /dalvik/libcore/xml/src/main/java/org/apache/xalan/templates/
ElemApplyImport.java 102 public ElemTemplateElement appendChild(ElemTemplateElement newChild)
ElemComment.java 103 public ElemTemplateElement appendChild(ElemTemplateElement newChild)
141 return super.appendChild(newChild);
ElemText.java 129 public ElemTemplateElement appendChild(ElemTemplateElement newChild)
146 return super.appendChild(newChild);
ElemChoose.java 134 public ElemTemplateElement appendChild(ElemTemplateElement newChild)
154 return super.appendChild(newChild);
ElemAttribute.java 222 public ElemTemplateElement appendChild(ElemTemplateElement newChild)
260 return super.appendChild(newChild);
ElemPI.java 184 public ElemTemplateElement appendChild(ElemTemplateElement newChild)
222 return super.appendChild(newChild);
ElemSort.java 315 public Node appendChild(Node newChild) throws DOMException
ElemWithParam.java 248 public ElemTemplateElement appendChild(ElemTemplateElement elem)
257 return super.appendChild(elem);
ElemCallTemplate.java 330 public ElemTemplateElement appendChild(ElemTemplateElement newChild)
342 return super.appendChild(newChild);
ElemCopyOf.java 217 public ElemTemplateElement appendChild(ElemTemplateElement newChild)
ElemValueOf.java 267 public ElemTemplateElement appendChild(ElemTemplateElement newChild)
ElemVariable.java 516 public ElemTemplateElement appendChild(ElemTemplateElement elem)
525 return super.appendChild(elem);
  /external/webkit/WebCore/bindings/js/
JSNodeCustom.cpp 101 JSValue JSNode::appendChild(ExecState* exec, const ArgList& args)
104 bool ok = impl()->appendChild(toNode(args.at(0)), ec, true);
  /external/webkit/WebCore/svg/
SVGElementInstance.cpp 85 void SVGElementInstance::appendChild(PassRefPtr<SVGElementInstance> child)
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/editors/layout/gscripts/
INode.java 46 * that have just been created, e.g. by the {@link #appendChild(String)} method.
94 INode appendChild(String viewFqcn);
  /external/webkit/WebCore/html/
HTMLOptGroupElement.cpp 82 bool HTMLOptGroupElement::appendChild(PassRefPtr<Node> newChild, ExceptionCode& ec, bool shouldLazyAttach)
84 bool result = HTMLFormControlElement::appendChild(newChild, ec, shouldLazyAttach);
  /external/webkit/WebCore/wml/
WMLOptGroupElement.cpp 77 bool WMLOptGroupElement::appendChild(PassRefPtr<Node> newChild, ExceptionCode& ec, bool shouldLazyAttach)
79 bool result = WMLFormControlElement::appendChild(newChild, ec, shouldLazyAttach);
  /frameworks/base/media/libdrm/mobile2/src/util/domcore/
NodeImpl.cpp 179 NodeImpl* NodeImpl::appendChild(NodeImpl* newChild) throw (DOMException)
  /dalvik/libcore/xml/src/main/java/org/apache/harmony/xml/dom/
InnerNodeImpl.java 50 public Node appendChild(Node newChild) throws DOMException {
101 * This method is the generalization of the appendChild() and insertBefore()
  /external/webkit/WebCore/page/
FrameTree.cpp 64 void FrameTree::appendChild(PassRefPtr<Frame> child)
  /dalvik/libcore/xml/src/main/java/org/apache/harmony/xml/parsers/
DocumentBuilderImpl.java 207 node.appendChild(document.createProcessingInstruction(target,
247 document.appendChild(new DocumentTypeImpl(document, name, pubid, sysid));
256 node.appendChild(document.createComment(parser.getText()));
290 node.appendChild(document.createEntityReference(entity));
314 node.appendChild(element);
347 node.appendChild(element);
392 parent.appendChild(token == XmlPullParser.CDSECT
  /external/webkit/WebCore/inspector/front-end/
treeoutline.js 425 TreeOutline.prototype.appendChild = TreeOutline._appendChild;
543 TreeElement.prototype.appendChild = TreeOutline._appendChild;
DataGrid.js 57 scrollContainer.appendChild(this._dataTable);
59 this.element.appendChild(this._headerTable);
60 this.element.appendChild(scrollContainer);
75 columnGroup.appendChild(col);
83 cell.appendChild(div);
100 headerRow.appendChild(cell);
109 headerRow.appendChild(cell);
112 this._headerTable.appendChild(this._headerTableColumnGroup);
113 this.headerTableBody.appendChild(headerRow);
120 fillerRow.appendChild(cell)
    [all...]
  /dalvik/libcore/xml/src/main/java/org/w3c/dom/
Node.java 393 public Node appendChild(Node newChild)
    [all...]
  /external/webkit/WebKit/win/
DOMCoreClasses.h 178 virtual HRESULT STDMETHODCALLTYPE appendChild(
404 virtual HRESULT STDMETHODCALLTYPE appendChild(
406 /* [retval][out] */ IDOMNode **result) { return DOMNode::appendChild(oldChild, result); }
636 virtual HRESULT STDMETHODCALLTYPE appendChild(
638 /* [retval][out] */ IDOMNode **result) { return DOMNode::appendChild(oldChild, result); }
    [all...]

Completed in 278 milliseconds

1 2 3