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

1 2 3

  /external/webkit/Source/WebCore/bindings/cpp/
WebDOMNodeCustom.cpp 67 WebDOMNode WebDOMNode::appendChild(const WebDOMNode& newChild)
73 if (impl()->appendChild(toWebCore(newChild), ec, true))
  /external/apache-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/Source/WebCore/svg/
SVGElementInstance.cpp 87 void SVGElementInstance::appendChild(PassRefPtr<SVGElementInstance> child)
  /frameworks/base/tests/RenderScriptTests/SceneGraph/src/com/android/scenegraph/
Transform.java 41 public void appendChild(Transform t) {
  /cts/suite/pts/hostTests/browser/browserlauncher/assets/octane/
code-load.js 233 pt\");c.type=\"text/javascript\";c.defer=false;c.appendChild(b.createTextNode(a\
234 ));b.body.appendChild(c);b.body.removeChild(c)}}else throw Error(\"goog.globalE\
259 Element(\"iframe\"),ck.frameBorder=ck.width=ck.height=0),b.appendChild(ck);if(!\
262 =cl.createElement(a),cl.body.appendChild(d),e=f.css(d,\"display\"),b.removeChil\
298 {var b=c.createElement(\"div\");bh.appendChild(b),b.innerHTML=a.outerHTML;retur\
316 ntsByTagName(\"tbody\")[0]||a.appendChild(a.ownerDocument.createElement(\"tbody\
483 reateElement(\"select\"),h=g.appendChild(c.createElement(\"option\")),i=p.getEl\
    [all...]
  /external/webkit/Source/WebCore/bindings/js/
JSNodeCustom.cpp 222 JSValue JSNode::appendChild(ExecState* exec)
226 bool ok = imp->appendChild(toNode(exec->argument(0)), ec, true);
  /sdk/rule_api/src/com/android/ide/common/api/
INode.java 62 * that have just been created, e.g. by the {@link #appendChild(String)} method.
139 INode appendChild(@NonNull String viewFqcn);
  /external/webkit/Source/WebCore/page/
FrameTree.cpp 85 void FrameTree::appendChild(PassRefPtr<Frame> child)
  /external/webkit/Source/WebKit2/UIProcess/
WebFrameProxy.cpp 189 void WebFrameProxy::appendChild(WebFrameProxy* child)
  /external/webkit/Source/WebCore/inspector/front-end/
treeoutline.js 436 TreeOutline.prototype.appendChild = TreeOutline._appendChild;
576 this._listItemNode.appendChild(this._title);
581 TreeElement.prototype.appendChild = TreeOutline._appendChild;
  /libcore/luni/src/main/java/org/apache/harmony/xml/parsers/
DocumentBuilderImpl.java 201 node.appendChild(document.createProcessingInstruction(target,
207 document.appendChild(new DocumentTypeImpl(document, name, publicId, systemId));
215 node.appendChild(document.createComment(parser.getText()));
249 node.appendChild(document.createEntityReference(entity));
273 node.appendChild(element);
306 node.appendChild(element);
351 parent.appendChild(token == XmlPullParser.CDSECT
  /external/webkit/Source/WebKit/win/
DOMCoreClasses.h 177 virtual HRESULT STDMETHODCALLTYPE appendChild(
401 virtual HRESULT STDMETHODCALLTYPE appendChild(
403 /* [retval][out] */ IDOMNode** result) { return DOMNode::appendChild(oldChild, result); }
632 virtual HRESULT STDMETHODCALLTYPE appendChild(
634 /* [retval][out] */ IDOMNode** result) { return DOMNode::appendChild(oldChild, result); }
    [all...]
  /libcore/luni/src/main/java/org/apache/harmony/xml/dom/
InnerNodeImpl.java 51 public Node appendChild(Node newChild) throws DOMException {
  /libcore/luni/src/main/java/org/w3c/dom/
Node.java 393 public Node appendChild(Node newChild)
    [all...]

Completed in 307 milliseconds

1 2 3