HomeSort by relevance Sort by last modified time
    Searched refs:xmlDoc (Results 1 - 13 of 13) sorted by null

  /external/webkit/LayoutTests/fast/dom/EntityReference/script-tests/
readonly-exceptions.js 3 var xmlDoc = document.implementation.createDocument("http://www.w3.org/1999/xhtml", "html", null);
5 var entityReference = xmlDoc.createEntityReference("gt");
8 shouldBe("entityReference.ownerDocument", "xmlDoc")
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/animator/
AnimationEditorDelegate.java 86 * @param xmlDoc The XML document, if available, or null if none exists.
89 public void delegateXmlModelChanged(Document xmlDoc) {
90 Element rootElement = xmlDoc.getDocumentElement();
116 getUiRootNode().setXmlDocument(xmlDoc);
122 getUiRootNode().loadFromXmlNode(xmlDoc);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/drawable/
DrawableEditorDelegate.java 86 public void delegateXmlModelChanged(Document xmlDoc) {
87 Element rootElement = xmlDoc.getDocumentElement();
108 getUiRootNode().setXmlDocument(xmlDoc);
114 getUiRootNode().loadFromXmlNode(xmlDoc);
  /external/robolectric/src/main/java/com/xtremelabs/robolectric/res/
DrawableResourceLoader.java 71 Document xmlDoc = documents.get(resourceExtractor.getResourceName(resId));
72 NodeList nodes = xmlDoc.getElementsByTagName("selector");
74 return buildStateListDrawable(xmlDoc);
77 nodes = xmlDoc.getElementsByTagName("layer-list");
82 nodes = xmlDoc.getElementsByTagName("animation-list");
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/color/
ColorEditorDelegate.java 80 public void delegateXmlModelChanged(Document xmlDoc) {
84 Element rootElement = xmlDoc.getDocumentElement();
  /external/webkit/LayoutTests/fast/dom/Node/script-tests/
initial-values.js 3 var xmlDoc = document.implementation.createDocument("http://www.w3.org/1999/xhtml", "html", null);
30 attr = xmlDoc.createAttribute("foo");
43 attr = xmlDoc.createAttributeNS("http://www.example.com", "example:foo");
63 var cdata = xmlDoc.createCDATASection("foo");
150 element = xmlDoc.createElement("pre");
160 element = xmlDoc.createElementNS("http://www.w3.org/1999/xhtml", "html:pre");
171 var entityReference = xmlDoc.createEntityReference("gt");
182 var processingInstruction = xmlDoc.createProcessingInstruction('xml-stylesheet', 'type="text/xsl" href="missing.xsl"');
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/manifest/
ManifestEditor.java 249 private void loadFromXml(Document xmlDoc) {
250 mUiManifestNode.setXmlDocument(xmlDoc);
251 Node node = getManifestXmlNode(xmlDoc);
259 private Node getManifestXmlNode(Document xmlDoc) {
260 if (xmlDoc != null) {
266 Node node = xmlDoc.getDocumentElement();
271 for (node = xmlDoc.getFirstChild();
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/uimodel/
UiElementNode.java 383 * @param xmlDoc The new XML document to associate this node with.
385 public void setXmlDocument(Document xmlDoc) {
387 mXmlDocument = xmlDoc;
389 mUiParent.setXmlDocument(xmlDoc);
    [all...]
  /external/libxml2/include/libxml/
tree.h 61 * 1) xmlNs gets an additional field @context (a xmlDoc)
62 * 2) when creating a tree, xmlNs->href is stored in the dict of xmlDoc.
356 struct _xmlDoc *context; /* normally an xmlDoc */
506 * xmlDoc:
510 typedef struct _xmlDoc xmlDoc;
511 typedef xmlDoc *xmlDocPtr;
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/
LayoutEditorDelegate.java 371 Document xmlDoc = mUiDocRootNode.getXmlDocument();
374 mUiDocRootNode.loadFromXmlNode(xmlDoc);
377 // No need to call AndroidXmlEditor.xmlModelChanged(xmlDoc) since it's
398 // No need to call AndroidXmlEditor.xmlModelChanged(xmlDoc) since it's
    [all...]
  /external/libxml2/
HTMLparser.c     [all...]
tree.c 1153 cur = (xmlDocPtr) xmlMalloc(sizeof(xmlDoc));
1158 memset(cur, 0, sizeof(xmlDoc));
    [all...]
  /prebuilts/tools/common/m2/internal/xalan/xalan/2.6.0/
xalan-2.6.0.jar 

Completed in 528 milliseconds