/sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/common/layout/ |
RelativeLayoutRuleTest.java | 29 protected INode dragInto(Rect dragBounds, Point dragPoint, Point secondDragPoint, 43 return super.dragInto(new RelativeLayoutRule(), layout, dragBounds, dragPoint, 47 protected INode dragInto(Rect dragBounds, Point dragPoint, Point secondDragPoint, 57 return dragInto(dragBounds, dragPoint, secondDragPoint, insertIndex,
|
FrameLayoutRuleTest.java | 26 protected void dragInto(Rect dragBounds, Point dragPoint, int insertIndex, int currentIndex, 39 super.dragInto(new FrameLayoutRule(), layout, dragBounds, dragPoint, null,
|
AbsoluteLayoutRuleTest.java | 28 protected INode dragInto(Rect dragBounds, Point dragPoint, int insertIndex, int currentIndex, 41 return super.dragInto(new AbsoluteLayoutRule(), layout, dragBounds, dragPoint, null,
|
LinearLayoutRuleTest.java | 46 protected void dragIntoEmpty(Rect dragBounds) { 47 boolean haveBounds = dragBounds.isValid(); 56 "android.widget.Button", dragBounds).id("@+id/Button01")); 104 protected INode dragInto(boolean vertical, Rect dragBounds, Point dragPoint, 121 return super.dragInto(new LinearLayoutRule(), linearLayout, dragBounds, dragPoint, null,
|
LayoutTestBase.java | 55 * @param dragBounds The (original) bounds of the dragged item 68 protected INode dragInto(IViewRule rule, INode targetNode, Rect dragBounds, Point dropPoint, 76 "android.widget.Button", dragBounds).id(draggedButtonId));
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/ |
GlobalCanvasDragInfo.java | 159 * @param dragBounds the new drag bounds, or null if there are no drag bounds 161 public void setDragBounds(Rect dragBounds) { 162 mDragBounds = dragBounds;
|
MoveGesture.java | 552 Rect dragBounds = null; 563 dragBounds = new Rect(x, y, w, h); 569 df.dragBounds = dragBounds; [all...] |
GestureManager.java | [all...] |
PaletteControl.java | 759 Rect dragBounds = null; 773 dragBounds = new Rect(x, y, scaledWidth, scaledHeight); 794 dragInfo.setDragBounds(dragBounds); [all...] |
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/layout/ |
AbsoluteLayoutRule.java | 111 int offsetX = x - be.x + (feedback.dragBounds != null ? feedback.dragBounds.x : 0); 112 int offsetY = y - be.y + (feedback.dragBounds != null ? feedback.dragBounds.y : 0); 179 int deltaX = (feedback.dragBounds != null ? feedback.dragBounds.x : 0); 180 int deltaY = (feedback.dragBounds != null ? feedback.dragBounds.y : 0);
|
RelativeLayoutRule.java | 164 int offsetX = p.x + (feedback.dragBounds != null ? feedback.dragBounds.x : 0); 165 int offsetY = p.y + (feedback.dragBounds != null ? feedback.dragBounds.y : 0);
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/layout/grid/ |
GridLayoutPainter.java | 169 Rect dragBounds = first.getBounds(); 173 offsetY -= dragBounds.h; 178 offsetX -= dragBounds.w; 180 offsetX -= dragBounds.w / 2; 247 int x1 = dragBounds.x + offsetX; 248 int y1 = dragBounds.y + offsetY + feedback.dragBaseline; 249 gc.drawLine(x1, y1, x1 + dragBounds.w, y1); 295 Rect dragBounds = first.getBounds(); 296 int offsetX = cellBounds.x - dragBounds.x; 297 int offsetY = cellBounds.y - dragBounds.y [all...] |
GridDropHandler.java | 87 Rect dragBounds = feedback.dragBounds; 88 int w = dragBounds != null ? dragBounds.w : 0; 89 int h = dragBounds != null ? dragBounds.h : 0; 91 if (dragBounds != null) { 94 x1 += dragBounds.x; 95 y1 += dragBounds.y; 212 && dragBounds != null && dragBounds.w < cellWidth - 10) [all...] |
/prebuilts/devtools/tools/lib/ |
rule-api.jar | |