/frameworks/base/core/java/android/widget/ |
OverScroller.java | 388 * @param maxY Minimum valid Y value 392 public boolean springBack(int startX, int startY, int minX, int maxX, int minY, int maxY) { 397 final boolean spingbackY = mScrollerY.springback(startY, minY, maxY); 402 int minX, int maxX, int minY, int maxY) { 403 fling(startX, startY, velocityX, velocityY, minX, maxX, minY, maxY, 0, 0); 425 * @param maxY Maximum Y value. The scroller will not scroll past this point 426 * unless overY > 0. If overfling is allowed, it will use maxY as 434 int minX, int maxX, int minY, int maxY, int overX, int overY) { 448 mScrollerY.fling(startY, velocityY, minY, maxY, overY); [all...] |
/packages/apps/DeskClock/src/com/android/deskclock/widget/sgv/ |
OverScrollerSGV.java | 392 * @param maxY Minimum valid Y value 396 public boolean springBack(int startX, int startY, int minX, int maxX, int minY, int maxY) { 401 final boolean spingbackY = mScrollerY.springback(startY, minY, maxY); 406 int minX, int maxX, int minY, int maxY) { 407 fling(startX, startY, velocityX, velocityY, minX, maxX, minY, maxY, 0, 0); 429 * @param maxY Maximum Y value. The scroller will not scroll past this point 430 * unless overY > 0. If overfling is allowed, it will use maxY as 438 int minX, int maxX, int minY, int maxY, int overX, int overY) { 452 mScrollerY.fling(startY, velocityY, minY, maxY, overY); [all...] |
/packages/apps/Gallery2/gallerycommon/src/com/android/gallery3d/common/ |
OverScroller.java | 390 * @param maxY Minimum valid Y value 394 public boolean springBack(int startX, int startY, int minX, int maxX, int minY, int maxY) { 399 final boolean spingbackY = mScrollerY.springback(startY, minY, maxY); 404 int minX, int maxX, int minY, int maxY) { 405 fling(startX, startY, velocityX, velocityY, minX, maxX, minY, maxY, 0, 0); 427 * @param maxY Maximum Y value. The scroller will not scroll past this point 428 * unless overY > 0. If overfling is allowed, it will use maxY as 436 int minX, int maxX, int minY, int maxY, int overX, int overY) { 450 mScrollerY.fling(startY, velocityY, minY, maxY, overY); [all...] |
/development/samples/devbytes/graphics/ImagePixelization/src/com/example/android/imagepixelization/ |
ImagePixelization.java | 176 int maxX, maxY; 184 maxY = Math.min(y + yPixels, height); 187 for (int j = y; j < maxY; j++) {
|
/external/chromium_org/skia/ |
tile_patch.diff | 109 unsigned maxY = s.fBitmap->height() - 1; 112 - *xy++ = PACK_FILTER_Y_NAME(fy, maxY, oneX PREAMBLE_ARG_Y); 113 + *xy++ = PACK_FILTER_Y_NAME(fy, maxY, oneY PREAMBLE_ARG_Y);
|
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/softpipe/ |
sp_state_derived.c | 195 sp->cliprect.maxy = MIN2(sp->scissor.maxy, surfHeight); 202 sp->cliprect.maxy = surfHeight;
|
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/vega/ |
api_path.c | 443 VGfloat maxX, maxY; 451 maxY = MAX2(pts[1], MAX2(pts[3], MAX2(pts[5], pts[7]))); 453 *height = maxY - *minY;
|
/external/chromium_org/ui/message_center/cocoa/ |
popup_collection.mm | 259 CGFloat maxY = NSMaxY(screenFrame); 268 frame.origin.y = maxY - message_center::kMarginBetweenItems - 284 maxY = NSMinY(frame);
|
/external/mesa3d/src/gallium/drivers/softpipe/ |
sp_state_derived.c | 195 sp->cliprect.maxy = MIN2(sp->scissor.maxy, surfHeight); 202 sp->cliprect.maxy = surfHeight;
|
/external/mesa3d/src/gallium/state_trackers/vega/ |
api_path.c | 443 VGfloat maxX, maxY; 451 maxY = MAX2(pts[1], MAX2(pts[3], MAX2(pts[5], pts[7]))); 453 *height = maxY - *minY;
|
/external/chromium/chrome/browser/ui/cocoa/find_bar/ |
find_bar_cocoa_controller.h | 73 - (void)positionFindBarViewAtMaxY:(CGFloat)maxY maxWidth:(CGFloat)maxWidth;
|
find_bar_cocoa_controller.mm | 134 - (void)positionFindBarViewAtMaxY:(CGFloat)maxY maxWidth:(CGFloat)maxWidth { 140 maxY += [containerView cr_lineWidth]; 141 maxY_ = maxY; 143 NSRect newFrame = NSMakeRect(x, maxY - containerHeight,
|
/external/chromium_org/chrome/browser/ui/cocoa/find_bar/ |
find_bar_cocoa_controller.h | 77 - (void)positionFindBarViewAtMaxY:(CGFloat)maxY maxWidth:(CGFloat)maxWidth;
|
/external/chromium_org/third_party/WebKit/Source/core/rendering/ |
HitTestLocation.h | 72 int bottomPadding() const { return m_boundingBox.maxY() - roundedPoint().y() - 1; }
|
/external/chromium_org/third_party/WebKit/Source/core/rendering/shapes/ |
BoxShape.cpp | 114 if (logicalTop < rect.y() || logicalTop + logicalHeight > rect.maxY())
|
RasterShape.h | 80 bool getIntervalX1Values(int minY, int maxY, int minIntervalWidth, Vector<int>& result) const;
|
Shape.h | 87 return (lineTop < rect.maxY() && lineTop + lineHeight > rect.y()) || (!lineHeight && lineTop == rect.y());
|
/external/chromium_org/third_party/WebKit/Source/core/testing/ |
MockPagePopupDriver.cpp | 69 m_iframe->setInlineStyleProperty(CSSPropertyTop, originBoundsInRootView.maxY(), CSSPrimitiveValue::CSS_PX, true);
|
/external/chromium_org/third_party/WebKit/Source/platform/graphics/skia/ |
SkiaUtils.h | 73 SkFloatToScalar(rect.maxX()), SkFloatToScalar(rect.maxY()));
|
/external/chromium_org/webkit/child/ |
fling_animator_impl_android.cc | 43 // Instead, use the largest possible bounds for minX/maxX/minY/maxY. The
|
/external/qemu/distrib/sdl-1.2.15/test/ |
testvidinfo.c | 50 int maxy; local 54 maxy = (int)screen->h - bmp->h + 1; 62 if ( maxy ) { 63 dst.y = rand() % maxy;
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/ |
BatteryMeterView.java | 230 int maxX = 0, maxY = 0; 233 maxY = Math.max(maxY, pts[i + 1]); 238 ptsF[i + 1] = (float)pts[i + 1] / maxY;
|
/external/chromium_org/native_client_sdk/src/examples/api/graphics_2d/ |
graphics_2d.cc | 191 int maxy = cy + radius >= height ? height - 1 : cy + radius; local 192 for (int y = miny; y < maxy; ++y) {
|
/external/chromium_org/third_party/lcov/contrib/galaxy/ |
posterize.pl | 291 ($Junk, $Junk, $minX, $minY, $maxX, $maxY) = split / /, $Bounds; 294 my $yRange = $maxY - $minY;
|
/external/jmonkeyengine/engine/src/bullet-common/com/jme3/bullet/control/ragdoll/ |
RagdollUtils.java | 29 public static void setJointLimit(SixDofJoint joint, float maxX, float minX, float maxY, float minY, float maxZ, float minZ) { 33 joint.getRotationalLimitMotor(1).setHiLimit(maxY);
|