Home
last modified time | relevance | path

Searched refs:mTop (Results 1 – 4 of 4) sorted by relevance

/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/properties/
DLibraryProperties.java59 private Composite mTop; field in LibraryProperties
129 mTop = new Composite(parent, SWT.NONE); in LibraryProperties()
130 mTop.setLayout(new GridLayout(2, false)); in LibraryProperties()
131 mTop.setLayoutData(new GridData(GridData.FILL_BOTH)); in LibraryProperties()
132 mTop.setFont(parent.getFont()); in LibraryProperties()
133 mTop.addDisposeListener(new DisposeListener() { in LibraryProperties()
141 mTable = new Table(mTop, SWT.BORDER | SWT.FULL_SELECTION | SWT.SINGLE); in LibraryProperties()
157 Composite buttons = new Composite(mTop, SWT.NONE); in LibraryProperties()
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/layout/grid/
DGridModel.java122 private int[] mTop; field in GridModel
708 mTop = new int[ys.length]; in assignCellBoundsFromView()
713 mTop[i] = ys[i] + layoutBoundsY; in assignCellBoundsFromView()
749 mTop = new int[actualRowCount + 1]; in assignCellBoundsFromBounds()
751 mTop[i] = UNDEFINED; in assignCellBoundsFromBounds()
753 mTop[0] = layoutBounds.y; in assignCellBoundsFromBounds()
754 mTop[actualRowCount] = layoutBounds.y2(); in assignCellBoundsFromBounds()
769 if (mTop[row] == UNDEFINED) { in assignCellBoundsFromBounds()
770 mTop[row] = bounds.y; in assignCellBoundsFromBounds()
772 mTop[row] = Math.min(bounds.y, mTop[row]); in assignCellBoundsFromBounds()
[all …]
/sdk/hierarchyviewer/src/com/android/hierarchyviewer/ui/util/
DPsdFile.java286 final int mTop; field in PsdFile.Layer
326 mTop = offset.y; in Layer()
380 out.writeInt(mTop); in write()
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/
DRelativeLayoutConversionHelper.java997 private final int[] mTop; field in RelativeLayoutConversionHelper.Grid
1005 mTop = top; in Grid()
1166 return mTop[row + 1] - mTop[row]; in getRowHeight()
1264 out.printf("%" + cellWidth + "d", mTop[row]); //$NON-NLS-1$ //$NON-NLS-2$ in toString()
1424 private final Map<Integer, List<View>> mTop = new HashMap<Integer, List<View>>(); field in RelativeLayoutConversionHelper.EdgeList
1453 return mTop.get(topOffset); in getTopEdgeViews()
1487 return getOffsets(mTop.keySet(), mBottom.keySet()); in getRowOffsets()
1598 record(mTop, Integer.valueOf(bounds.y), view); in add()