Home
last modified time | relevance | path

Searched refs:xmlParent (Results 1 – 2 of 2) sorted by relevance

/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/ui/tree/
DUiActions.java285 Node xmlParent = uiParentNode == null ? null : uiParentNode.getXmlNode(); in doUpInternal() local
286 if (xmlParent == null) { in doUpInternal()
308 xmlPrev.appendChild(xmlParent.removeChild(xmlNode)); in doUpInternal()
316 xmlParent.insertBefore( in doUpInternal()
317 xmlParent.removeChild(xmlNode), in doUpInternal()
321 } else if (uiParentNode != null && !(xmlParent instanceof Document)) { in doUpInternal()
341 xmlParent.removeChild(xmlNode), in doUpInternal()
342 xmlParent); in doUpInternal() local
467 Node xmlParent = uiParentNode == null ? null : uiParentNode.getXmlNode(); in doDownInternal() local
468 if (xmlParent == null) { in doDownInternal()
[all …]
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/uimodel/
DUiElementNode.java1124 Node xmlParent = oldXmlNode.getParentNode(); in deleteXmlNode() local
1125 if (xmlParent == null) { in deleteXmlNode()
1126 xmlParent = getXmlDocument(); in deleteXmlNode()
1129 oldXmlNode = xmlParent.removeChild(oldXmlNode); in deleteXmlNode()
1135 xmlParent.removeChild(previousSibling); in deleteXmlNode()