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

  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gre/
NodeFactory.java 56 public NodeProxy create(UiViewElementNode uiNode) {
57 return create(uiNode, null /*bounds*/);
70 private NodeProxy create(UiViewElementNode uiNode, Rectangle bounds) {
71 NodeProxy proxy = mNodeMap.get(uiNode);
75 proxy = new NodeProxy(uiNode, bounds, this);
76 mNodeMap.put(uiNode, proxy);
NodeProxy.java 69 * @param uiNode The node to wrap.
77 /*package*/ NodeProxy(UiViewElementNode uiNode, Rectangle bounds, NodeFactory factory) {
78 mNode = uiNode;
327 UiElementNode uiNode = mNode;
343 if (uiNode.getXmlNode() != null) {
344 Node xmlNode = uiNode.getXmlNode();
359 UiElementNode uiNode = mNode;
365 for (AttributeDescriptor desc : uiNode.getAttributeDescriptors()) {
401 UiElementNode uiNode = mNode;
403 if (uiNode.getXmlNode() != null)
    [all...]
  /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/ui/tree/
UiActions.java 54 * @param uiNode The node to select. Can be null (in which case nothing should happen)
56 abstract protected void selectUiNode(UiElementNode uiNode);
66 public void doAdd(UiElementNode uiNode, Shell shell) {
67 doAdd(uiNode, null /* descriptorFilters */, shell, new UiModelTreeLabelProvider());
76 public void doAdd(UiElementNode uiNode,
89 uiNode, rootNode);
205 UiElementNode uiNode = uiLastNode[0] = uiNodes.get(i);
207 uiNode,
266 UiElementNode uiNode,
272 outUiSearchRoot[0] = uiNode.getUiParent()
    [all...]
CopyCutAction.java 120 for (UiElementNode uiNode : mUiNodes) {
122 Node xml_node = uiNode.getXmlNode();
140 nodesToCut.add(uiNode);
146 uiNode.getBreadcrumbTrailDescription(true));
148 } // for uiNode
155 for (UiElementNode uiNode : nodesToCut) {
156 uiNode.deleteXmlNode();
UiTreeBlock.java 514 for (UiElementNode uiNode : selected) {
515 if (uiNode.getXmlNode() != null) {
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/uimodel/
UiElementNode.java 205 UiAttributeNode uiNode = desc.createUiNode(this);
206 if (uiNode != null) { // Some AttributeDescriptors do not have UI associated
207 mUiAttributes.put(desc, uiNode);
364 for (UiElementNode uiNode = getUiParent();
365 uiNode != null;
366 uiNode = uiNode.getUiParent()) {
367 if (!includeRoot && uiNode.getUiParent() == null) {
370 sb.insert(0, String.format("%1$s > ", uiNode.getShortDescription())); //$NON-NLS-1$
764 UiElementNode uiNode = this
    [all...]
UiListAttributeNode.java 159 UiElementNode uiNode = getUiParent();
160 AndroidXmlEditor editor = uiNode.getEditor();
UiFlagAttributeNode.java 145 UiElementNode uiNode = getUiParent();
146 AndroidXmlEditor editor = uiNode.getEditor();
UiResourceAttributeNode.java 136 UiElementNode uiNode = getUiParent();
137 AndroidXmlEditor editor = uiNode.getEditor();
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/ui/
UiElementPart.java 198 * @param uiNode The {@link UiElementNode} that contains the attributes to display.
204 protected int insertUiAttributes(UiElementNode uiNode, Composite table, IManagedForm managedForm) {
205 if (uiNode == null || table == null || managedForm == null) {
212 AttributeDescriptor[] attr_desc_list = uiNode.getAttributeDescriptors();
219 UiAttributeNode ui_attr = uiNode.findUiAttribute(attr_desc);
228 uiNode.getDescriptor().getXmlName());
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
LayoutMetadataTest.java 43 UiElementNode uiNode = pair.getSecond();
44 Node node = uiNode.getXmlNode();
128 UiElementNode uiNode = pair.getSecond();
129 Node node = uiNode.getXmlNode();
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/
UiElementPullParser.java 142 // get the current uiNode
143 UiElementNode uiNode = getCurrentNode();
146 Node xmlNode = uiNode.getXmlNode();
344 // get the current uiNode
345 UiElementNode uiNode = getCurrentNode();
348 Node xmlNode = uiNode.getXmlNode();
ProjectCallback.java 549 UiViewElementNode uiNode = (UiViewElementNode) adapterCookie;
551 AdapterBinding binding = metadata.getNodeBinding(viewObject, uiNode);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
LayoutMetadata.java 329 * @param uiNode the ui node corresponding to the view object
332 public AdapterBinding getNodeBinding(Object viewObject, UiViewElementNode uiNode) {
333 AndroidXmlEditor editor = uiNode.getEditor();
335 Node xmlNode = uiNode.getXmlNode();
MoveGesture.java 412 for (UiElementNode uiNode : added) {
413 if (uiNode instanceof UiViewElementNode) {
414 NodeProxy node = nodeFactory.create((UiViewElementNode) uiNode);
    [all...]
RenderService.java 488 UiViewElementNode uiNode = (UiViewElementNode) info.getCookie();
489 NodeProxy node = mNodeFactory.create(uiNode);
CanvasViewInfo.java 487 UiViewElementNode uiNode = getUiViewNode();
489 String fqcn = SimpleXmlTransfer.getFqcn(uiNode.getDescriptor());
494 UiElementNode uiParent = uiNode.getUiParent();
504 for (UiAttributeNode attr : uiNode.getAllUiAttributes()) {
    [all...]
  /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();
UiClassAttributeNode.java 433 UiElementNode uiNode = getUiParent();
434 AndroidXmlEditor editor = uiNode.getEditor();
451 // get the root uiNode to get the 'package' attribute value.
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/
VisualRefactoring.java 200 UiViewElementNode uiNode = viewInfo.getUiViewNode();
201 if (uiNode == null) {
204 Node xmlNode = uiNode.getXmlNode();
667 UiViewElementNode uiNode = viewInfo.getUiViewNode();
668 if (uiNode == null) {
671 Node xmlNode = uiNode.getXmlNode();
    [all...]
ExtractIncludeRefactoring.java 155 UiViewElementNode uiNode = infos.get(0).getUiViewNode();
156 if (uiNode != null) {
157 Node xmlNode = uiNode.getXmlNode();
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/descriptors/
DescriptorsUtils.java 760 * @param uiNode The UI node that gives the prefix to match
    [all...]

Completed in 1003 milliseconds