HomeSort by relevance Sort by last modified time
    Searched refs:maxX (Results 51 - 75 of 257) sorted by null

1 23 4 5 6 7 8 91011

  /external/skia/experimental/Intersection/
CubicReduceOrder.cpp 95 int minX, int maxX, int minY, int maxY, Cubic& reduction) {
116 bool useX = cubic[maxX].x - cubic[minX].x >= cubic[maxY].y - cubic[minY].y;
199 int index, minX, maxX, minY, maxY;
201 minX = maxX = minY = maxY = 0;
210 if (cubic[maxX].x < cubic[index].x) {
211 maxX = index;
244 int result = check_linear(cubic, reduceStyle, minX, maxX, minY, maxY, reduction);
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderInline.cpp     [all...]
HitTestLocation.h 60 int rightPadding() const { return m_boundingBox.maxX() - roundedPoint().x() - 1; }
  /external/chromium_org/android_webview/java/src/org/chromium/android_webview/
OverScrollGlow.java 47 * @param maxX Maximum range for horizontal scrolling
50 public void pullGlow(int x, int y, int oldX, int oldY, int maxX, int maxY) {
57 if (maxX > 0) {
64 } else if (pulledToX > maxX) {
  /external/chromium_org/third_party/WebKit/Source/platform/graphics/
GradientGeneratedImage.cpp 60 if (dstX >= destRect.maxX())
65 if (dstMaxX > destRect.maxX())
66 dstMaxX = destRect.maxX();
Path.cpp 451 addLineTo(FloatPoint(rect.maxX() - topRightRadius.width(), rect.y()));
453 addBezierCurveTo(FloatPoint(rect.maxX() - topRightRadius.width() * gCircleControlPoint, rect.y()),
454 FloatPoint(rect.maxX(), rect.y() + topRightRadius.height() * gCircleControlPoint),
455 FloatPoint(rect.maxX(), rect.y() + topRightRadius.height()));
456 addLineTo(FloatPoint(rect.maxX(), rect.maxY() - bottomRightRadius.height()));
458 addBezierCurveTo(FloatPoint(rect.maxX(), rect.maxY() - bottomRightRadius.height() * gCircleControlPoint),
459 FloatPoint(rect.maxX() - bottomRightRadius.width() * gCircleControlPoint, rect.maxY()),
460 FloatPoint(rect.maxX() - bottomRightRadius.width(), rect.maxY()));
GraphicsLayerDebugInfo.cpp 64 rectArray->pushNumber(rect.maxX().toFloat());
  /external/chromium_org/third_party/WebKit/Source/web/
PopupContainer.cpp 110 if (windowRect.x() >= screen.x() && windowRect.maxX() <= screen.maxX() && (widgetRectInScreen.x() < screen.x() || widgetRectInScreen.maxX() > screen.maxX())) {
117 unsigned originalCutoff = std::max(enclosingScreen.x() - widgetRectInScreen.x(), 0) + std::max(widgetRectInScreen.maxX() - enclosingScreen.maxX(), 0);
118 unsigned inverseCutoff = std::max(enclosingScreen.x() - inverseWidgetRectInScreen.x(), 0) + std::max(inverseWidgetRectInScreen.maxX() - enclosingScreen.maxX(), 0);
126 widgetRectInScreen.setWidth(widgetRectInScreen.maxX() - screen.x());
129 } else if (widgetRectInScreen.maxX() > screen.maxX())
    [all...]
  /external/chromium_org/third_party/skia/src/core/
SkBitmapFilter.cpp 29 const int maxX = s.fBitmap->width();
44 int x0 = SkClampMax(SkScalarCeilToInt(srcPt.fX-s.getBitmapFilter()->width()), maxX);
45 int x1 = SkClampMax(SkScalarFloorToInt(srcPt.fX+s.getBitmapFilter()->width())+1, maxX);
  /external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/utils/ui/dialogs/
ResizableDialog.java 109 int maxX = windowBounds.x + windowBounds.width - initialSize.x;
111 if (x > maxX) {
112 x = maxX;
  /external/skia/src/core/
SkBitmapFilter.cpp 29 const int maxX = s.fBitmap->width();
44 int x0 = SkClampMax(SkScalarCeilToInt(srcPt.fX-s.getBitmapFilter()->width()), maxX);
45 int x1 = SkClampMax(SkScalarFloorToInt(srcPt.fX+s.getBitmapFilter()->width())+1, maxX);
  /packages/apps/Gallery2/src/com/android/gallery3d/ui/
FlingScroller.java 77 int minX, int maxX, int minY, int maxY) {
82 mMaxX = maxX;
  /external/chromium_org/third_party/WebKit/Source/core/page/
SpatialNavigation.cpp 130 return isHorizontalMove(type) ? rect.maxY() : rect.maxX();
234 return curRect.x() - targetRect.maxX() > viewSize.width();
236 return targetRect.x() - curRect.maxX() > viewSize.width();
261 return a.x() >= b.maxX()
262 || (a.x() >= b.x() && a.maxX() > b.maxX());
547 if (potentialRect.maxX() < startingRect.x())
548 entryPoint.setX(potentialRect.maxX());
560 exitPoint.setX(startingRect.maxX());
561 if (potentialRect.x() > startingRect.maxX())
    [all...]
  /external/chromium_org/third_party/skia/samplecode/
SampleEncode.cpp 173 SkScalar x = 0, y = 0, maxX = 0;
208 if (x > maxX) {
209 maxX = x;
214 x = maxX + SkIntToScalar(10);
  /external/skia/samplecode/
SampleEncode.cpp 173 SkScalar x = 0, y = 0, maxX = 0;
208 if (x > maxX) {
209 maxX = x;
214 x = maxX + SkIntToScalar(10);
  /external/chromium_org/third_party/skia/tests/
PathOpsCubicReduceOrderTest.cpp 24 int index, minX, maxX, minY, maxY;
25 minX = maxX = minY = maxY = 0;
33 if (cubic[maxX].fX < cubic[index].fX) {
34 maxX = index;
40 return approximately_equal(cubic[maxX].fX, cubic[minX].fX)
  /external/skia/tests/
PathOpsCubicReduceOrderTest.cpp 24 int index, minX, maxX, minY, maxY;
25 minX = maxX = minY = maxY = 0;
33 if (cubic[maxX].fX < cubic[index].fX) {
34 maxX = index;
40 return approximately_equal(cubic[maxX].fX, cubic[minX].fX)
  /external/chromium_org/third_party/WebKit/Source/platform/geometry/
FloatBox.h 111 float maxX = std::max(right(), high.x());
119 m_width = maxX - minX;
FloatQuad.h 57 , m_p2(inRect.maxX(), inRect.y())
58 , m_p3(inRect.maxX(), inRect.maxY())
FloatRoundedRect.h 107 return FloatRect(m_rect.maxX() - m_radii.topRight().width(), m_rect.y(), m_radii.topRight().width(), m_radii.topRight().height());
115 return FloatRect(m_rect.maxX() - m_radii.bottomRight().width(), m_rect.maxY() - m_radii.bottomRight().height(), m_radii.bottomRight().width(), m_radii.bottomRight().height());
Region.cpp 92 int maxX = *(segment + 1);
96 if (maxX > point.x())
238 appendSegment(rect.maxX());
358 int maxX = std::numeric_limits<int>::min();
370 if (*lastSegment > maxX)
371 maxX = *lastSegment;
377 ASSERT(minX <= maxX);
380 return IntRect(minX, minY, maxX - minX, maxY - minY);
  /external/chromium_org/third_party/WebKit/Source/platform/image-decoders/webp/
WEBPImageDecoder.cpp 85 if (canvasY < dst.y() || canvasY >= dst.maxY() || src.x() >= dst.maxX() || src.maxX() <= dst.x()) {
96 if (src.maxX() > dst.maxX()) {
97 left2 = dst.maxX();
98 width2 = src.maxX() - dst.maxX();
339 if (frameRect.maxX() > size().width())
  /external/qemu/distrib/sdl-1.2.15/src/events/
SDL_mouse.c 106 void SDL_SetMouseRange(int maxX, int maxY)
108 SDL_MouseMaxX = (Sint16)maxX;
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
LintOverlay.java 80 int maxX = mHScale.translate(0) + mHScale.getScaledImgSize();
103 if (x > maxX || y > maxY) {
  /development/samples/devbytes/graphics/ImagePixelization/src/com/example/android/imagepixelization/
ImagePixelization.java 176 int maxX, maxY;
183 maxX = Math.min(x + xPixels, width);
186 for (int i = x; i < maxX; i++) {

Completed in 443 milliseconds

1 23 4 5 6 7 8 91011