Searched refs:cellWidth (Results 1 – 3 of 3) sorted by relevance
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/ |
D | RelativeLayoutConversionHelper.java | 1254 int cellWidth = 20; in toString() local 1258 out.printf("%" + cellWidth + "s", ""); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ in toString() 1260 out.printf("|%-" + (cellWidth - 1) + "d", mLeft[col]); //$NON-NLS-1$ //$NON-NLS-2$ in toString() 1264 out.printf("%" + cellWidth + "d", mTop[row]); //$NON-NLS-1$ //$NON-NLS-2$ in toString() 1276 if (id.length() > cellWidth - 2) { in toString() 1277 id = id.substring(0, cellWidth - 2); in toString() 1285 … if (cellString.contains(",") && cellString.length() > cellWidth - 2) { //$NON-NLS-1$ in toString() 1286 cellString = cellString.substring(0, cellWidth - 6) + "...,"; //$NON-NLS-1$ in toString() 1288 … out.printf("|%-" + (cellWidth - 2) + "s ", cellString); //$NON-NLS-1$ //$NON-NLS-2$ in toString()
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/layout/grid/ |
D | GridModel.java | 693 int cellWidth = layoutBounds.w / CELL_COUNT; in assignCellBoundsFromView() local 697 xs[i] = i * cellWidth; in assignCellBoundsFromView() 1550 int cellWidth = 25; in toString() local 1580 out.printf("%" + cellWidth + "s", ""); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ in toString() 1582 out.printf("|%-" + (cellWidth - 1) + "d", mLeft[col]); //$NON-NLS-1$ //$NON-NLS-2$ in toString() 1586 out.printf("%" + cellWidth + "d", mTop[row]); //$NON-NLS-1$ //$NON-NLS-2$ in toString() 1599 if (id.length() > cellWidth - 2) { in toString() 1600 id = id.substring(0, cellWidth - 2); in toString() 1608 if (cellString.contains(",") && cellString.length() > cellWidth - 2) { //$NON-NLS-1$ in toString() 1609 cellString = cellString.substring(0, cellWidth - 6) + "...,"; //$NON-NLS-1$ in toString() [all …]
|
D | GridDropHandler.java | 206 int cellWidth = leftDistance + rightDistance; in computeMatches() 212 && dragBounds != null && dragBounds.w < cellWidth - 10) { in computeMatches() 217 int centerDistance = Math.abs(cellWidth / 2 - leftDistance); in computeMatches()
|