OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:dragBounds
(Results
1 - 6
of
6
) sorted by null
/sdk/rule_api/src/com/android/ide/common/api/
DropFeedback.java
98
public Rect
dragBounds
;
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/layout/grid/
GridDropHandler.java
89
Rect
dragBounds
= feedback.
dragBounds
;
90
if (
dragBounds
!= null) {
93
x1 +=
dragBounds
.x;
94
y1 +=
dragBounds
.y;
97
int w =
dragBounds
!= null ?
dragBounds
.w : 0;
98
int h =
dragBounds
!= null ?
dragBounds
.h : 0;
GridLayoutPainter.java
166
Rect
dragBounds
= first.getBounds();
170
offsetY -=
dragBounds
.h;
175
offsetX -=
dragBounds
.w;
177
offsetX -=
dragBounds
.centerX();
240
int x1 =
dragBounds
.x + x + offsetX - bounds.x;
241
int y1 =
dragBounds
.y + y + offsetY - bounds.y + feedback.dragBaseline;
242
gc.drawLine(x1, y1, x1 +
dragBounds
.w, y1);
277
Rect
dragBounds
= first.getBounds();
278
int offsetX = cellBounds.x -
dragBounds
.x;
279
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
498
Rect
dragBounds
= null;
509
dragBounds
= new Rect(x, y, w, h);
515
df.
dragBounds
=
dragBounds
;
GestureManager.java
[
all
...]
PaletteControl.java
738
Rect
dragBounds
= null;
752
dragBounds
= new Rect(x, y, scaledWidth, scaledHeight);
773
dragInfo.setDragBounds(
dragBounds
);
[
all
...]
Completed in 274 milliseconds