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

  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/refactoring/changes/
AndroidDocumentChange.java 106 * @param xmlDoc the document
113 private Attr findAttribute(IDOMDocument xmlDoc, String element, String attributeName,
115 NodeList nodes = xmlDoc.getElementsByTagName(element);
139 * @param xmlDoc the document
145 protected String getElementAttribute(IDOMDocument xmlDoc, String element,
147 NodeList nodes = xmlDoc.getElementsByTagName(element);
201 IDOMDocument xmlDoc = xmlModel.getDocument();
202 return xmlDoc;
212 IDOMDocument xmlDoc = getDOMDocument();
213 mAppPackage = getElementAttribute(xmlDoc, AndroidManifest.NODE_MANIFEST
    [all...]
AndroidLayoutChange.java 165 IDOMDocument xmlDoc = getDOMDocument();
167 NodeList nodes = xmlDoc.getElementsByTagName(className);
195 IDOMDocument xmlDoc = xmlModel.getDocument();
196 return xmlDoc;
235 IDOMDocument xmlDoc = getDOMDocument();
237 Attr attr = findAttribute(xmlDoc, elementName, argumentName, oldName);
251 * @param xmlDoc the document
258 private Attr findAttribute(IDOMDocument xmlDoc, String element, String attributeName,
260 NodeList nodes = xmlDoc.getElementsByTagName(element);
  /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);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/refactoring/core/
AndroidTypeRenameParticipant.java 242 IDOMDocument xmlDoc = xmlModel.getDocument();
243 NodeList nodes = xmlDoc
263 nodes = xmlDoc.getElementsByTagName(className);
329 IDOMDocument xmlDoc = xmlModel.getDocument();
330 add(xmlDoc, androidElements, AndroidManifest.NODE_ACTIVITY,
332 add(xmlDoc, androidElements, AndroidManifest.NODE_APPLICATION,
334 add(xmlDoc, androidElements, AndroidManifest.NODE_PROVIDER,
336 add(xmlDoc, androidElements, AndroidManifest.NODE_RECEIVER,
338 add(xmlDoc, androidElements, AndroidManifest.NODE_SERVICE,
353 * @param xmlDoc the documen
    [all...]
AndroidPackageRenameParticipant.java 355 IDOMDocument xmlDoc = xmlModel.getDocument();
356 NodeList nodes = xmlDoc.getElementsByTagName(SdkConstants.VIEW);
384 nodes = xmlDoc.getElementsByTagName(className);
468 IDOMDocument xmlDoc = xmlModel.getDocument();
469 add(xmlDoc, androidElements, AndroidManifest.NODE_ACTIVITY,
471 add(xmlDoc, androidElements, AndroidManifest.NODE_APPLICATION,
473 add(xmlDoc, androidElements, AndroidManifest.NODE_PROVIDER,
475 add(xmlDoc, androidElements, AndroidManifest.NODE_RECEIVER,
477 add(xmlDoc, androidElements, AndroidManifest.NODE_SERVICE,
492 * @param xmlDoc the documen
    [all...]
AndroidTypeMoveParticipant.java 281 IDOMDocument xmlDoc = xmlModel.getDocument();
282 NodeList nodes = xmlDoc.getElementsByTagName(SdkConstants.VIEW);
301 nodes = xmlDoc.getElementsByTagName(className);
366 IDOMDocument xmlDoc = xmlModel.getDocument();
367 add(xmlDoc, androidElements, AndroidManifest.NODE_ACTIVITY,
369 add(xmlDoc, androidElements, AndroidManifest.NODE_APPLICATION,
371 add(xmlDoc, androidElements, AndroidManifest.NODE_PROVIDER,
373 add(xmlDoc, androidElements, AndroidManifest.NODE_RECEIVER,
375 add(xmlDoc, androidElements, AndroidManifest.NODE_SERVICE,
390 * @param xmlDoc the documen
    [all...]
  /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();
  /tools/motodev/src/plugins/preflighting.core/src/com/motorolamobility/preflighting/core/internal/utils/
ProjectUtils.java 332 Document[] xmlDoc = new Document[1];
337 Type elementType = checkElementType(file, appElement, xmlDoc);
340 if (xmlDoc[0] != null)
355 // fill each node of xmlDoc with line number information
358 populateLineNumber(file, xmlDoc);
361 ((XMLElement) element).setDocument(xmlDoc[0]);
428 private static void populateLineNumber(File xmlFile, Document[] xmlDoc)
431 xmlDoc[0].getDocumentElement().normalize();
432 populateSequencialNodesList(xmlDoc[0], nodesSequencialList, xmlDoc);
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/uimodel/
UiElementNode.java 382 * @param xmlDoc The new XML document to associate this node with.
384 public void setXmlDocument(Document xmlDoc) {
386 mXmlDocument = xmlDoc;
388 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 367 Document xmlDoc = mUiDocRootNode.getXmlDocument();
370 mUiDocRootNode.loadFromXmlNode(xmlDoc);
373 // No need to call AndroidXmlEditor.xmlModelChanged(xmlDoc) since it's
394 // 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...]

Completed in 1105 milliseconds