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

  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/eclipse/adt/internal/editors/layout/gre/
MockNodeProxy.java 64 UiViewElementNode uiNode = new UiViewElementNode(desc);
65 return uiNode;
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gre/
NodeProxy.java 65 * @param uiNode The node to wrap.
73 /*package*/ NodeProxy(UiViewElementNode uiNode, Rectangle bounds, NodeFactory factory) {
74 mNode = uiNode;
280 UiElementNode uiNode = mNode;
286 if (uiNode.getXmlNode() != null) {
287 Node xmlNode = uiNode.getXmlNode();
302 UiElementNode uiNode = mNode;
308 for (AttributeDescriptor desc : uiNode.getAttributeDescriptors()) {
322 UiElementNode uiNode = mNode;
324 if (uiNode.getXmlNode() != null)
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/parts/
UiDocumentEditPart.java 187 UiElementNode uiNode = getUiNode();
188 if (uiNode instanceof UiDocumentNode) {
190 Object editData = uiNode.getEditData();
UiElementEditPart.java 175 UiElementNode uiNode = getUiNode();
176 if (uiNode.getXmlNode() != null) {
177 Node xmlNode = uiNode.getXmlNode();
DropFeedback.java 118 UiElementNode uiNode = actions.addElement(uiParent, uiSibling, descriptor,
122 adjustAbsoluteAttributes(uiNode, where);
124 adustRelativeAttributes(uiNode, info);
174 * Note: by "UI sibling" here we mean the sibling in the UiNode hierarchy. By design the
175 * UiNode model has the <em>exact</em> same order as the XML model. This has nothing to do
182 UiElementNode uiNode = part.getUiNode();
183 if (uiNode != null) {
184 uiNode = uiNode.getUiNextSibling();
186 if (uiNode != null)
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/ui/tree/
CopyCutAction.java 119 for (UiElementNode uiNode : mUiNodes) {
121 Node xml_node = uiNode.getXmlNode();
139 nodesToCut.add(uiNode);
145 uiNode.getBreadcrumbTrailDescription(true));
147 } // for uiNode
154 for (UiElementNode uiNode : nodesToCut) {
155 uiNode.deleteXmlNode();
UiTreeBlock.java 513 for (UiElementNode uiNode : selected) {
514 if (uiNode.getXmlNode() != null) {
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/uimodel/
UiFlagAttributeNode.java 145 UiElementNode uiNode = getUiParent();
146 AndroidXmlEditor editor = uiNode.getEditor();
UiListAttributeNode.java 158 UiElementNode uiNode = getUiParent();
159 AndroidXmlEditor editor = uiNode.getEditor();
UiResourceAttributeNode.java 124 UiElementNode uiNode = getUiParent();
125 AndroidXmlEditor editor = uiNode.getEditor();
200 UiElementNode uiNode = getUiParent();
201 AndroidXmlEditor editor = uiNode.getEditor();
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/
UiElementPullParser.java 97 // get the current uiNode
98 UiElementNode uiNode = getCurrentNode();
101 Node xmlNode = uiNode.getXmlNode();
279 // get the current uiNode
280 UiElementNode uiNode = getCurrentNode();
283 Node xmlNode = uiNode.getXmlNode();
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/manifest/model/
UiPackageAttributeNode.java 244 UiElementNode uiNode = getUiParent();
245 AndroidXmlEditor editor = uiNode.getEditor();
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
LayoutCanvas.java     [all...]

Completed in 229 milliseconds