HomeSort by relevance Sort by last modified time
    Searched refs:newBounds (Results 1 - 22 of 22) sorted by null

  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/layout/relative/
ResizeHandler.java 107 protected void snapVertical(Segment vEdge, int x, Rect newBounds) {
110 int margin = mSnap ? 0 : abs(newBounds.x - x);
114 newBounds.w += newBounds.x - x;
115 newBounds.x = x;
118 int margin = mSnap ? 0 : abs(newBounds.x - (x - newBounds.w));
122 newBounds.w = x - newBounds.x;
130 protected void snapHorizontal(Segment hEdge, int y, Rect newBounds) {
    [all...]
MoveHandler.java 114 protected void snapVertical(Segment vEdge, int x, Rect newBounds) {
117 int margin = !mSnap ? 0 : abs(newBounds.x - x);
121 newBounds.x = x;
124 int margin = !mSnap ? 0 : abs(newBounds.x - (x - newBounds.w));
128 newBounds.x = x - newBounds.w;
131 newBounds.x = x - newBounds.w / 2;
139 protected void snapHorizontal(Segment hEdge, int y, Rect newBounds) {
    [all...]
GuidelineHandler.java 387 protected void snapVertical(Segment vEdge, int x, Rect newBounds) {
388 newBounds.x = x;
391 protected void snapHorizontal(Segment hEdge, int y, Rect newBounds) {
392 newBounds.y = y;
    [all...]
  /external/chromium_org/ui/message_center/cocoa/
popup_controller.h 77 - (void)showWithAnimation:(NSRect)newBounds;
90 - (void)setBounds:(NSRect)newBounds;
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/layout/
AbsoluteLayoutRule.java 225 Rect previousBounds, Rect newBounds, SegmentType horizontalEdge,
227 super.setNewSizeBounds(resizeState, node, layout, previousBounds, newBounds,
229 if (verticalEdge != null && newBounds.x != previousBounds.x) {
232 mRulesEngine.pxToDp(newBounds.x - node.getParent().getBounds().x)));
234 if (horizontalEdge != null && newBounds.y != previousBounds.y) {
237 mRulesEngine.pxToDp(newBounds.y - node.getParent().getBounds().y)));
243 Rect newBounds, SegmentType horizontalEdge, SegmentType verticalEdge) {
246 return super.getResizeUpdateMessage(resizeState, child, parent, newBounds,
250 mRulesEngine.pxToDp(newBounds.x - parentBounds.x),
251 mRulesEngine.pxToDp(newBounds.y - parentBounds.y)
    [all...]
BaseLayoutRule.java 753 @NonNull INode parent, @NonNull Rect newBounds, int modifierMask) {
755 state.bounds = newBounds;
764 if (Math.abs(newBounds.h - b.h) < maxMatchDistance) {
767 newBounds.y += newBounds.h - b.h;
769 newBounds.h = b.h;
773 if (Math.abs(newBounds.w - b.w) < maxMatchDistance) {
776 newBounds.x += newBounds.w - b.w;
778 newBounds.w = b.w
    [all...]
LinearLayoutRule.java     [all...]
RelativeLayoutRule.java 277 @NonNull INode parent, @NonNull Rect newBounds,
284 state.updateResize(feedback, child, newBounds, modifierMask);
289 @NonNull INode parent, final @NonNull Rect newBounds) {
GridLayoutRule.java 462 Rect oldBounds, Rect newBounds, SegmentType horizontalEdge, SegmentType verticalEdge) {
494 super.setNewSizeBounds(state, node, layout, oldBounds, newBounds, horizontalEdge,
524 Rect newBounds, SegmentType horizontalEdge, SegmentType verticalEdge) {
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
ResizeGesture.java 80 Rect newBounds = getNewBounds(pos);
86 mFeedback = rulesEngine.callOnResizeBegin(mChildNode, mParentNode, newBounds,
110 Rect newBounds = getNewBounds(pos);
112 rulesEngine.callOnResizeUpdate(mFeedback, mChildNode, mParentNode, newBounds,
123 Rect newBounds = getNewBounds(pos);
124 rulesEngine.callOnResizeEnd(mFeedback, mChildNode, mParentNode, newBounds);
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderObject.cpp     [all...]
RenderFrameSet.cpp 477 LayoutRect newBounds = boundsRectForPaintInvalidation(repaintContainer);
478 if (newBounds != oldBounds)
479 invalidatePaintUsingContainer(repaintContainer, pixelSnappedIntRect(newBounds), InvalidationSelfLayout);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gre/
RulesEngine.java 443 public DropFeedback callOnResizeBegin(NodeProxy child, NodeProxy parent, Rect newBounds,
462 Rect newBounds, int modifierMask) {
467 rule.onResizeUpdate(feedback, child, parent, newBounds, modifierMask);
476 Rect newBounds) {
481 rule.onResizeEnd(feedback, child, parent, newBounds);
    [all...]
  /external/chromium_org/third_party/skia/src/fonts/
SkGScalerContext.cpp 104 const SkRect& newBounds = paint.doComputeFastBounds(path.getBounds(),
108 newBounds.roundOut(&ibounds);
  /external/skia/src/fonts/
SkGScalerContext.cpp 104 const SkRect& newBounds = paint.doComputeFastBounds(path.getBounds(),
108 newBounds.roundOut(&ibounds);
  /prebuilts/devtools/tools/lib/
rule-api.jar 
  /frameworks/base/services/accessibility/java/com/android/server/accessibility/
ScreenMagnifier.java 215 Region newBounds = Region.obtain(bounds);
216 mHandler.obtainMessage(MESSAGE_ON_MAGNIFIED_BOUNDS_CHANGED, newBounds).sendToTarget();
    [all...]
  /packages/apps/Gallery/src/com/android/camera/
GalleryPicker.java 696 Rect newBounds = new Rect(left, top, left + overlayWidth,
698 mVideoOverlay.setBounds(newBounds);
  /frameworks/support/v7/recyclerview/tests/src/android/support/v7/widget/
StaggeredGridLayoutManagerTest.java     [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.swt.gtk.linux.x86_3.6.1.v3657a.jar 
org.eclipse.ui.workbench_3.6.1.M20101117-0800.jar 
  /prebuilts/tools/common/eclipse/
org.eclipse.ui.workbench_3.6.2.M20110210-1200.jar 

Completed in 845 milliseconds