Home
last modified time | relevance | path

Searched refs:xs (Results 1 – 2 of 2) sorted by relevance

/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/layout/grid/
DGridLayoutPainter.java352 int[] xs = cellBounds.getFirst(); in paintStructure() local
360 for (int column = 0; column < xs.length; column++) { in paintStructure()
361 int x = xs[column] + b.x; in paintStructure()
DGridModel.java683 int[] xs = cellBounds.getFirst(); in assignCellBoundsFromView() local
691 xs = new int[CELL_COUNT + 1]; in assignCellBoundsFromView()
697 xs[i] = i * cellWidth; in assignCellBoundsFromView()
702 actualColumnCount = xs.length - 1; in assignCellBoundsFromView()
707 mLeft = new int[xs.length]; in assignCellBoundsFromView()
709 for (int i = 0; i < xs.length; i++) { in assignCellBoundsFromView()
710 mLeft[i] = xs[i] + layoutBoundsX; in assignCellBoundsFromView()
889 int[] xs = (int[]) horizontalLocations; in getAxisBounds() local
891 return Pair.of(xs, ys); in getAxisBounds()