HomeSort by relevance Sort by last modified time
    Searched defs:xmlDoc (Results 1 - 7 of 7) 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);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/refactoring/core/
AndroidTypeMoveParticipant.java 283 IDOMDocument xmlDoc = xmlModel.getDocument();
284 NodeList nodes = xmlDoc.getElementsByTagName(LayoutConstants.VIEW);
303 nodes = xmlDoc.getElementsByTagName(className);
368 IDOMDocument xmlDoc = xmlModel.getDocument();
369 add(xmlDoc, androidElements, AndroidManifest.NODE_ACTIVITY,
371 add(xmlDoc, androidElements, AndroidManifest.NODE_APPLICATION,
373 add(xmlDoc, androidElements, AndroidManifest.NODE_PROVIDER,
375 add(xmlDoc, androidElements, AndroidManifest.NODE_RECEIVER,
377 add(xmlDoc, androidElements, AndroidManifest.NODE_SERVICE,
392 * @param xmlDoc the documen
    [all...]
AndroidTypeRenameParticipant.java 244 IDOMDocument xmlDoc = xmlModel.getDocument();
245 NodeList nodes = xmlDoc
265 nodes = xmlDoc.getElementsByTagName(className);
331 IDOMDocument xmlDoc = xmlModel.getDocument();
332 add(xmlDoc, androidElements, AndroidManifest.NODE_ACTIVITY,
334 add(xmlDoc, androidElements, AndroidManifest.NODE_APPLICATION,
336 add(xmlDoc, androidElements, AndroidManifest.NODE_PROVIDER,
338 add(xmlDoc, androidElements, AndroidManifest.NODE_RECEIVER,
340 add(xmlDoc, androidElements, AndroidManifest.NODE_SERVICE,
355 * @param xmlDoc the documen
    [all...]
AndroidPackageRenameParticipant.java 357 IDOMDocument xmlDoc = xmlModel.getDocument();
358 NodeList nodes = xmlDoc.getElementsByTagName(LayoutConstants.VIEW);
386 nodes = xmlDoc.getElementsByTagName(className);
470 IDOMDocument xmlDoc = xmlModel.getDocument();
471 add(xmlDoc, androidElements, AndroidManifest.NODE_ACTIVITY,
473 add(xmlDoc, androidElements, AndroidManifest.NODE_APPLICATION,
475 add(xmlDoc, androidElements, AndroidManifest.NODE_PROVIDER,
477 add(xmlDoc, androidElements, AndroidManifest.NODE_RECEIVER,
479 add(xmlDoc, androidElements, AndroidManifest.NODE_SERVICE,
494 * @param xmlDoc the documen
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/
LayoutEditorDelegate.java 355 Document xmlDoc = mUiDocRootNode.getXmlDocument();
358 mUiDocRootNode.loadFromXmlNode(xmlDoc);
361 // No need to call AndroidXmlEditor.xmlModelChanged(xmlDoc) since it's
382 // No need to call AndroidXmlEditor.xmlModelChanged(xmlDoc) since it's
    [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...]

Completed in 704 milliseconds