Home
last modified time | relevance | path

Searched refs:layoutView (Results 1 – 7 of 7) sorted by relevance

/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/layout/
DResizeState.java84 public Object layoutView; field in ResizeState
94 ResizeState(BaseLayoutRule rule, INode layout, Object layoutView, INode node) { in ResizeState() argument
99 this.layoutView = layoutView; in ResizeState()
DLinearLayoutRule.java781 private LinearResizeState(BaseLayoutRule rule, INode layout, Object layoutView,
783 super(rule, layout, layoutView, node);
863 protected ResizeState createResizeState(INode layout, Object layoutView, INode node) {
864 return new LinearResizeState(this, layout, layoutView, node);
DBaseLayoutRule.java614 protected ResizeState createResizeState(INode layout, Object layoutView, INode node) { in createResizeState() argument
615 return new ResizeState(this, layout, layoutView, node); in createResizeState()
DGridLayoutRule.java445 grid = GridModel.get(mRulesEngine, resizeState.layout, resizeState.layoutView); in getGrid()
/sdk/hierarchyviewer/src/com/android/hierarchyviewer/ui/
DWorkspace.java138 private LayoutRenderer layoutView; field in Workspace
762 JScrollPane p = new JScrollPane(layoutView = new LayoutRenderer(scene, sceneView)); in buildExtrasPanel()
783 layoutView.setBackground(Color.WHITE); in buildLayoutViewControlButtons()
784 layoutView.setForeground(Color.BLACK); in buildLayoutViewControlButtons()
796 layoutView.setBackground(Color.BLACK); in buildLayoutViewControlButtons()
797 layoutView.setForeground(Color.WHITE); in buildLayoutViewControlButtons()
809 layoutView.setShowExtras(((JCheckBox) e.getSource()).isSelected()); in buildLayoutViewControlButtons()
819 layoutView.repaint(); in showCaptureWindow()
1386 layoutView.repaint(); in focusChanged()
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/
DGridLayoutConverter.java138 CanvasViewInfo layoutView = findViewForElement(mRootView, mLayout); in convertToGridLayout() local
139 if (layoutView == null || layoutView.getChildren().size() == 0) { in convertToGridLayout()
145 GridModel gridModel = new GridModel(layoutView, mLayout, mFlatten); in convertToGridLayout()
DRelativeLayoutConversionHelper.java130 CanvasViewInfo layoutView = findViewForElement(mRootView, mLayout); in convertToRelative() local
131 if (layoutView == null || layoutView.getChildren().size() == 0) { in convertToRelative()
137 List<View> views = analyzeLayout(layoutView); in convertToRelative()
152 private List<View> analyzeLayout(CanvasViewInfo layoutView) { in analyzeLayout() argument
153 EdgeList edgeList = new EdgeList(layoutView); in analyzeLayout()