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

  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/resources/uimodel/
UiItemElementNode.java 44 Node xmlNode = getXmlNode();
45 if (xmlNode != null && xmlNode instanceof Element && xmlNode.hasAttributes()) {
47 Element elem = (Element) xmlNode;
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gre/
NodeProxy.java 185 Node xmlNode = uiNew.createXmlNode();
187 if (!(uiNew instanceof UiViewElementNode) || xmlNode == null) {
223 Node xmlNode = uiNew.createXmlNode();
225 if (!(uiNew instanceof UiViewElementNode) || xmlNode == null) {
260 Node xmlNode = uiNode.getXmlNode();
261 if (xmlNode != null) {
262 NamedNodeMap nodeAttributes = xmlNode.getAttributes();
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/
UiElementPullParser.java 102 Node xmlNode = uiNode.getXmlNode();
104 if (xmlNode != null) {
105 return xmlNode.getAttributes().item(i);
284 Node xmlNode = uiNode.getXmlNode();
286 if (xmlNode != null) {
287 Node attribute = xmlNode.getAttributes().getNamedItemNS(namespace, localName);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/parts/
UiElementEditPart.java 177 Node xmlNode = uiNode.getXmlNode();
178 if (xmlNode != null) {
179 NamedNodeMap nodeAttributes = xmlNode.getAttributes();
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/uimodel/
UiElementNode.java 620 * @param xmlNode The XML node to look for.
621 * @return The {@link UiElementNode} that contains xmlNode or null if not found,
623 public UiElementNode findXmlNode(Node xmlNode) {
624 if (xmlNode == null) {
627 if (getXmlNode() == xmlNode) {
632 UiElementNode found = uiChild.findXmlNode(xmlNode);
    [all...]
  /external/libxml2/include/libxml/
valid.h 418 xmlValidGetValidElements(xmlNode *prev,
419 xmlNode *next,
tree.h 444 * xmlNode:
448 typedef struct _xmlNode xmlNode;
449 typedef xmlNode *xmlNodePtr;
    [all...]
  /external/libxml2/
tree.c     [all...]
valid.c     [all...]
SAX2.c     [all...]
relaxng.c     [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/ui/tree/
UiActions.java 380 Node xmlNode = uiNew.createXmlNode();

Completed in 106 milliseconds