HomeSort by relevance Sort by last modified time
    Searched defs:dragBounds (Results 1 - 6 of 6) sorted by null

  /sdk/rule_api/src/com/android/ide/common/api/
DropFeedback.java 106 public Rect dragBounds;
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/layout/grid/
GridDropHandler.java 88 Rect dragBounds = feedback.dragBounds;
89 if (dragBounds != null) {
92 x1 += dragBounds.x;
93 y1 += dragBounds.y;
96 int w = dragBounds != null ? dragBounds.w : 0;
97 int h = dragBounds != null ? dragBounds.h : 0;
GridLayoutPainter.java 167 Rect dragBounds = first.getBounds();
171 offsetY -= dragBounds.h;
176 offsetX -= dragBounds.w;
178 offsetX -= dragBounds.w / 2;
241 int x1 = dragBounds.x + x + offsetX - bounds.x;
242 int y1 = dragBounds.y + y + offsetY - bounds.y + feedback.dragBaseline;
243 gc.drawLine(x1, y1, x1 + dragBounds.w, y1);
279 Rect dragBounds = first.getBounds();
280 int offsetX = cellBounds.x - dragBounds.x;
281 int offsetY = cellBounds.y - dragBounds.y
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
MoveGesture.java 548 Rect dragBounds = null;
559 dragBounds = new Rect(x, y, w, h);
565 df.dragBounds = dragBounds;
    [all...]
GestureManager.java     [all...]
PaletteControl.java 754 Rect dragBounds = null;
768 dragBounds = new Rect(x, y, scaledWidth, scaledHeight);
789 dragInfo.setDragBounds(dragBounds);
    [all...]

Completed in 177 milliseconds