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

1 2

  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gre/
NodeFactory.java 57 public NodeProxy create(UiViewElementNode uiNode) {
58 return create(uiNode, null /*bounds*/);
71 private NodeProxy create(UiViewElementNode uiNode, Rectangle bounds) {
72 NodeProxy proxy = mNodeMap.get(uiNode);
76 proxy = new NodeProxy(uiNode, bounds, this);
77 mNodeMap.put(uiNode, proxy);
NodeProxy.java 73 * @param uiNode The node to wrap.
81 /*package*/ NodeProxy(UiViewElementNode uiNode, Rectangle bounds, NodeFactory factory) {
82 mNode = uiNode;
362 UiElementNode uiNode = mNode;
378 if (uiNode.getXmlNode() != null) {
379 Node xmlNode = uiNode.getXmlNode();
395 UiElementNode uiNode = mNode;
401 for (AttributeDescriptor desc : uiNode.getAttributeDescriptors()) {
440 UiElementNode uiNode = mNode;
442 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 55 * @param uiNode The node to select. Can be null (in which case nothing should happen)
57 abstract protected void selectUiNode(UiElementNode uiNode);
67 public void doAdd(UiElementNode uiNode, Shell shell) {
68 doAdd(uiNode, null /* descriptorFilters */, shell, new UiModelTreeLabelProvider());
77 public void doAdd(UiElementNode uiNode,
90 uiNode, rootNode);
208 UiElementNode uiNode = uiLastNode[0] = uiNodes.get(i);
210 uiNode,
269 UiElementNode uiNode,
275 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 519 for (UiElementNode uiNode : selected) {
520 if (uiNode.getXmlNode() != null) {
    [all...]
UiElementDetail.java 349 public void uiElementNodeUpdated(UiElementNode uiNode, UiUpdateState state) {
351 updateUnknownAttributesSection(uiNode, unknownTable, managedForm,
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/uimodel/
UiElementNode.java 207 UiAttributeNode uiNode = desc.createUiNode(this);
208 if (uiNode != null) { // Some AttributeDescriptors do not have UI associated
209 mUiAttributes.put(desc, uiNode);
366 for (UiElementNode uiNode = getUiParent();
367 uiNode != null;
368 uiNode = uiNode.getUiParent()) {
369 if (!includeRoot && uiNode.getUiParent() == null) {
372 sb.insert(0, String.format("%1$s > ", uiNode.getShortDescription())); //$NON-NLS-1$
767 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 158 UiElementNode uiNode = getUiParent();
159 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 50 UiElementNode uiNode = pair.getSecond();
51 Node node = uiNode.getXmlNode();
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/
UiElementPullParser.java 148 // get the current uiNode
149 UiElementNode uiNode = getCurrentNode();
152 Node xmlNode = uiNode.getXmlNode();
360 // get the current uiNode
361 UiElementNode uiNode = getCurrentNode();
364 Node xmlNode = uiNode.getXmlNode();
ProjectCallback.java 581 UiViewElementNode uiNode = (UiViewElementNode) adapterCookie;
582 AdapterBinding binding = LayoutMetadata.getNodeBinding(viewObject, uiNode);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/manifest/model/
UiPackageAttributeNode.java 246 UiElementNode uiNode = getUiParent();
247 AndroidXmlEditor editor = uiNode.getEditor();
UiClassAttributeNode.java 440 UiElementNode uiNode = getUiParent();
441 AndroidXmlEditor editor = uiNode.getEditor();
458 // 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/gle2/
MoveGesture.java 419 for (UiElementNode uiNode : added) {
420 if (uiNode instanceof UiViewElementNode) {
421 NodeProxy node = nodeFactory.create((UiViewElementNode) uiNode);
    [all...]
LayoutMetadata.java 323 * @param uiNode the ui node corresponding to the view object
329 @NonNull UiViewElementNode uiNode) {
330 Node xmlNode = uiNode.getXmlNode();
CanvasViewInfo.java 513 UiViewElementNode uiNode = getUiViewNode();
515 String fqcn = SimpleXmlTransfer.getFqcn(uiNode.getDescriptor());
520 UiElementNode uiParent = uiNode.getUiParent();
530 for (UiAttributeNode attr : uiNode.getAllUiAttributes()) {
    [all...]
RenderService.java 556 UiViewElementNode uiNode = (UiViewElementNode) info.getCookie();
557 NodeProxy node = mNodeFactory.create(uiNode);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/
VisualRefactoring.java 201 UiViewElementNode uiNode = viewInfo.getUiViewNode();
202 if (uiNode == null) {
205 Node xmlNode = uiNode.getXmlNode();
674 UiViewElementNode uiNode = viewInfo.getUiViewNode();
675 if (uiNode == null) {
678 Node xmlNode = uiNode.getXmlNode();
    [all...]
ExtractIncludeRefactoring.java 159 UiViewElementNode uiNode = infos.get(0).getUiViewNode();
160 if (uiNode != null) {
161 Node xmlNode = uiNode.getXmlNode();
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/
AdtUtils.java 789 final UiElementNode uiNode = rootUiNode.findXmlNode(element);
790 if (uiNode != null) {
791 editor.scheduleNodeReformat(uiNode, true /*attributesOnly*/);
800 Node xmlNode = uiNode.getXmlNode();
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/descriptors/
DescriptorsUtils.java     [all...]

Completed in 722 milliseconds

1 2