OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:cellbounds
(Results
1 - 3
of
3
) sorted by null
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/layout/grid/
GridLayoutPainter.java
292
Rect
cellBounds
= grid.getCellBounds(row, column, 1, 1);
296
int offsetX =
cellBounds
.x - dragBounds.x;
297
int offsetY =
cellBounds
.y - dragBounds.y;
301
gc.fillRect(new Rect(
cellBounds
.x - radius,
302
cellBounds
.y + (createRow ? -radius : radius),
303
2 * radius + 1,
cellBounds
.h - (createRow ? 0 : 2 * radius)));
307
gc.fillRect(new Rect(
cellBounds
.x + radius,
cellBounds
.y - radius,
308
cellBounds
.w - 2 * radius, 2 * radius + 1));
312
gc.fillRect(new Rect(
cellBounds
.x + radius, cellBounds.y + radius
[
all
...]
GridModel.java
681
Pair<int[], int[]>
cellBounds
= GridModel.getAxisBounds(mViewObject);
682
if (
cellBounds
!= null) {
683
int[] xs =
cellBounds
.getFirst();
684
int[] ys =
cellBounds
.getSecond();
[
all
...]
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/layout/
GridLayoutRule.java
443
Rect
cellBounds
= grid.getCellBounds(startRow, startColumn, rowSpan, columnSpan);
445
gc.drawRect(
cellBounds
);
Completed in 50 milliseconds