HomeSort by relevance Sort by last modified time
    Searched full:maxy (Results 1 - 25 of 175) sorted by null

1 2 3 4 5 6 7

  /external/chromium/chrome/browser/ui/cocoa/
browser_window_controller_private.mm 192 CGFloat maxY = NSMaxY(contentBounds) + yOffset;
193 CGFloat startMaxY = maxY;
196 // If we need to lay out the top tab strip, replace |maxY| and |startMaxY|
199 startMaxY = maxY = NSHeight(windowFrame) + yOffset;
200 maxY = [self layoutTabStripAtMaxY:maxY width:width fullscreen:isFullscreen];
203 // Sanity-check |maxY|.
204 DCHECK_GE(maxY, minY);
205 DCHECK_LE(maxY, NSMaxY(contentBounds) + yOffset);
218 maxY = [self layoutToolbarAtMinX:minX maxY:maxY width:width]
    [all...]
browser_window_controller_private.h 48 - (CGFloat)layoutTabStripAtMaxY:(CGFloat)maxY
56 maxY:(CGFloat)maxY
65 // call it with the appropriate |maxY| which depends on whether or not the
69 maxY:(CGFloat)maxY
81 maxY:(CGFloat)maxY
  /external/webkit/Source/WebCore/platform/graphics/
IntRect.cpp 48 && y() < other.maxY() && other.y() < maxY();
54 && y() <= other.y() && maxY() >= other.maxY();
62 int b = min(maxY(), other.maxY());
91 int b = max(maxY(), other.maxY());
112 int bottom = max(maxY(), other.maxY());
    [all...]
FloatRect.cpp 55 && y() < other.maxY() && other.y() < maxY();
61 && y() <= other.y() && maxY() >= other.maxY();
69 float b = min(maxY(), other.maxY());
95 float b = max(maxY(), other.maxY());
113 float bottom = max(maxY(), other.maxY());
    [all...]
  /external/skia/src/core/
SkBitmapProcState_matrix.h 51 const unsigned maxY = s.fBitmap->height() - 1;
52 *xy++ = TILEY_PROCF(fx, maxY);
119 int maxY = s.fBitmap->height() - 1;
122 *xy++ = (TILEY_PROCF(fy, maxY) << 16) | TILEX_PROCF(fx, maxX);
134 int maxY = s.fBitmap->height() - 1;
143 *xy++ = (TILEY_PROCF(srcXY[1], maxY) << 16) |
184 const unsigned maxY = s.fBitmap->height() - 1;
186 *xy++ = PACK_FILTER_Y_NAME(fy, maxY, s.fFilterOneY PREAMBLE_ARG_Y);
227 unsigned maxY = s.fBitmap->height() - 1;
230 *xy++ = PACK_FILTER_Y_NAME(fy, maxY, oneY PREAMBLE_ARG_Y)
    [all...]
SkBitmapProcState_shaderproc.h 42 const unsigned maxY = s.fBitmap->height() - 1;
44 subY = TILEY_LOW_BITS(fy, maxY);
45 int y0 = TILEY_PROCF(fy, maxY);
46 int y1 = TILEY_PROCF((fy + s.fFilterOneY), maxY);
SkBitmapSampler.cpp 108 int maxY = fMaxY;
112 int tmpy = procY(iy, maxY);
118 int tmpy1 = procY(iy + 1, maxY);
156 int maxY = fMaxY;
160 int tmpy = procY(iy, maxY);
166 int tmpy1 = procY(iy + 1, maxY);
211 int maxY = fMaxY;
215 int tmpy = procY(iy, maxY);
221 int tmpy1 = procY(iy + 1, maxY);
270 int maxY = fMaxY
    [all...]
SkBitmapProcState_matrix_clamp.h 72 const unsigned maxY = s.fBitmap->height() - 1;
73 *xy++ = TILEY_PROCF(fx, maxY);
181 int maxY = s.fBitmap->height() - 1;
195 /* my sets of maxx/maxy for clamping */
196 int32_t maxpair = (maxX&0xffff) | ((maxY&0xffff)<<16);
268 *xy++ = (TILEY_PROCF(fy, maxY) << 16) | TILEX_PROCF(fx, maxX);
283 int maxY = s.fBitmap->height() - 1;
315 int16x4_t maxY4 = vdup_n_s16((int16_t)maxY);
350 /* clamp Y>>16 (aka yhi) to 0..maxY */
352 yhi = vmin_s16(yhi, maxY4); /* now 0..maxY */
    [all...]
SkBitmapProcState_matrix_repeat.h 70 const unsigned maxY = s.fBitmap->height() - 1;
71 *xy++ = TILEY_PROCF(fx, maxY);
204 int maxY = s.fBitmap->height() - 1;
254 yout = vmulq_s32(yout, vdupq_n_s32(maxY+1));
281 uint32_t val = (TILEY_PROCF(ofy, maxY) << 16) | TILEX_PROCF(ofx, maxX);
293 SkDebugf("maxX %08x maxY %08x\n", maxX, maxY);
301 *xy++ = (TILEY_PROCF(fy, maxY) << 16) | TILEX_PROCF(fx, maxX);
313 int maxY = s.fBitmap->height() - 1;
385 y = vmulq_s32(y, vdupq_n_s32(maxY+1))
    [all...]
  /cts/tests/tests/graphics/src/android/graphics/cts/
DiscretePathEffectTest.java 86 int maxY = 0;
93 maxY = Math.max(maxY, y);
105 assertTrue(maxY - minY > 0);
107 assertTrue(maxY - minY <= 1 + 2 * DEVIATION);
  /external/webkit/Source/WebCore/rendering/
RenderOverflow.h 45 , m_maxYLayoutOverflow(layoutRect.maxY())
49 , m_maxYVisualOverflow(visualRect.maxY())
125 m_maxYLayoutOverflow = std::max(rect.maxY(), m_maxYLayoutOverflow);
133 m_maxYVisualOverflow = std::max(rect.maxY(), m_maxYVisualOverflow);
141 m_maxYLayoutOverflow = rect.maxY();
149 m_maxYVisualOverflow = rect.maxY();
157 m_maxYLayoutOverflow = rect.maxY();
RenderThemeWinCE.cpp 389 paintInfo.context->drawLine(IntPoint(xBounds.maxX(), xBounds.y()), IntPoint(xBounds.x(), xBounds.maxY()));
492 IntPoint left = IntPoint(r.x() + 2, (r.y() + r.maxY()) / 2);
501 IntPoint right = IntPoint(left.x() + mediaElement->percentLoaded() * (r.maxX() - r.x() - 4), (r.y() + r.maxY()) / 2);
570 FloatPoint(imRect.maxX() - 1, imRect.maxY()),
576 paintInfo.context->drawLine(IntPoint(imRect.maxX(), imRect.y()), IntPoint(imRect.x(), imRect.maxY()));
598 FloatPoint pts[3] = { FloatPoint(imRect.x(), imRect.y()), FloatPoint(imRect.maxX(), (imRect.y() + imRect.maxY()) / 2.0), FloatPoint(imRect.x(), imRect.maxY()) };
610 FloatPoint pts[3] = { FloatPoint((imRect.x() + imRect.maxX()) / 2.0, imRect.y()), FloatPoint(imRect.x(), (imRect.y() + imRect.maxY()) / 2.0), FloatPoint((imRect.x() + imRect.maxX()) / 2.0, imRect.maxY()) };
611 FloatPoint pts2[3] = { FloatPoint(imRect.maxX(), imRect.y()), FloatPoint((imRect.x() + imRect.maxX()) / 2.0, (imRect.y() + imRect.maxY()) / 2.0), FloatPoint(imRect.maxX(), imRect.maxY()) }
    [all...]
  /frameworks/base/tests/RenderScriptTests/ModelViewer/src/com/android/modelviewer/
simplemodel.rs 101 float minX, minY, minZ, maxX, maxY, maxZ;
106 &maxX, &maxY, &maxZ);
108 info->bBoxMax = (maxX, maxY, maxZ);
118 float minX, minY, minZ, maxX, maxY, maxZ;
  /external/webkit/Source/WebCore/platform/graphics/skia/
IntRectSkia.cpp 40 SkIRect rect = { x(), y(), maxX(), maxY() };
47 rect.set(SkIntToScalar(x()), SkIntToScalar(y()), SkIntToScalar(maxX()), SkIntToScalar(maxY()));