Searched refs:maxY (Results 1 - 25 of 151) sorted by relevance

1234567

/external/chromium/chrome/browser/ui/cocoa/
H A Dbrowser_window_controller_private.h48 - (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/skia/
H A DIntRectSkia.cpp40 SkIRect rect = { x(), y(), maxX(), maxY() };
47 rect.set(SkIntToScalar(x()), SkIntToScalar(y()), SkIntToScalar(maxX()), SkIntToScalar(maxY()));
H A DFloatRectSkia.cpp46 SkRect rect = { x(), y(), maxX(), maxY() };
/external/webkit/Source/WebCore/platform/graphics/win/
H A DIntRectWin.cpp41 RECT rect = { x(), y(), maxX(), maxY() };
/external/webkit/Source/WebCore/platform/graphics/
H A DIntRect.cpp48 && 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...]
H A DFloatRect.cpp55 && 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/webkit/Source/WebCore/platform/graphics/android/layers/
H A DScrollableLayerAndroid.cpp48 float maxX, float maxY)
53 if (maxY < 0) maxY = 0;
55 if (minY > maxY) minY = maxY;
56 m_scrollLimits.set(minX, minY, minX + maxX, minY + maxY);
47 setScrollLimits(float minX, float minY, float maxX, float maxY) argument
H A DScrollableLayerAndroid.h57 void setScrollLimits(float minX, float minY, float maxX, float maxY);
/external/jmonkeyengine/engine/src/bullet-common/com/jme3/bullet/control/ragdoll/
H A DRagdollPreset.java65 private float maxX, minX, maxY, minY, maxZ, minZ; field in class:RagdollPreset.JointPreset
70 public JointPreset(float maxX, float minX, float maxY, float minY, float maxZ, float minZ) { argument
73 this.maxY = maxY;
82 joint.getRotationalLimitMotor(1).setHiLimit(maxY);
/external/webkit/Source/WebKit2/UIProcess/qt/
H A DTiledDrawingAreaTileQt.cpp95 if (m_rect.maxY() > oldRect.maxY())
96 invalidate(IntRect(oldRect.x(), oldRect.maxY(), m_rect.width(), m_rect.maxY() - oldRect.maxY()));
/external/webkit/Source/WebCore/rendering/
H A DRenderOverflow.h45 , 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();
/external/skia/src/core/
H A DSkBitmapProcState_matrix.h45 const unsigned maxY = s.fBitmap->height() - 1; local
46 *xy++ = TILEY_PROCF(fx, maxY);
113 int maxY = s.fBitmap->height() - 1; local
116 *xy++ = (TILEY_PROCF(fy, maxY) << 16) | TILEX_PROCF(fx, maxX);
128 int maxY = s.fBitmap->height() - 1; local
137 *xy++ = (TILEY_PROCF(srcXY[1], maxY) << 16) |
178 const unsigned maxY = s.fBitmap->height() - 1; local
180 *xy++ = PACK_FILTER_Y_NAME(fy, maxY, s.fFilterOneY PREAMBLE_ARG_Y);
221 unsigned maxY = s.fBitmap->height() - 1; local
224 *xy++ = PACK_FILTER_Y_NAME(fy, maxY, one
238 unsigned maxY = s.fBitmap->height() - 1; local
[all...]
H A DSkBitmapProcState_shaderproc.h35 const unsigned maxY = s.fBitmap->height() - 1; local
37 subY = TILEY_LOW_BITS(fy, maxY);
38 int y0 = TILEY_PROCF(fy, maxY);
39 int y1 = TILEY_PROCF((fy + s.fFilterOneY), maxY);
H A DSkBitmapSampler.cpp100 int maxY = fMaxY; local
104 int tmpy = procY(iy, maxY);
110 int tmpy1 = procY(iy + 1, maxY);
148 int maxY = fMaxY; local
152 int tmpy = procY(iy, maxY);
158 int tmpy1 = procY(iy + 1, maxY);
203 int maxY = fMaxY; local
207 int tmpy = procY(iy, maxY);
213 int tmpy1 = procY(iy + 1, maxY);
262 int maxY local
[all...]
H A DSkBitmapProcState_matrix_repeat.h75 const unsigned maxY = s.fBitmap->height() - 1; local
76 *xy++ = TILEY_PROCF(fx, maxY);
209 int maxY = s.fBitmap->height() - 1; local
259 yout = vmulq_s32(yout, vdupq_n_s32(maxY+1));
286 uint32_t val = (TILEY_PROCF(ofy, maxY) << 16) | TILEX_PROCF(ofx, maxX);
298 SkDebugf("maxX %08x maxY %08x\n", maxX, maxY);
306 *xy++ = (TILEY_PROCF(fy, maxY) << 16) | TILEX_PROCF(fx, maxX);
318 int maxY = s.fBitmap->height() - 1; local
390 y = vmulq_s32(y, vdupq_n_s32(maxY
463 const unsigned maxY = s.fBitmap->height() - 1; local
506 unsigned maxY = s.fBitmap->height() - 1; local
525 unsigned maxY = s.fBitmap->height() - 1; local
[all...]
H A DSkBitmapProcState_matrix_clamp.h77 const unsigned maxY = s.fBitmap->height() - 1; local
78 *xy++ = TILEY_PROCF(fx, maxY);
186 int maxY = s.fBitmap->height() - 1; local
201 int32_t maxpair = (maxX&0xffff) | ((maxY&0xffff)<<16);
273 *xy++ = (TILEY_PROCF(fy, maxY) << 16) | TILEX_PROCF(fx, maxX);
288 int maxY = s.fBitmap->height() - 1; local
320 int16x4_t maxY4 = vdup_n_s16((int16_t)maxY);
355 /* clamp Y>>16 (aka yhi) to 0..maxY */
357 yhi = vmin_s16(yhi, maxY4); /* now 0..maxY */
385 /* clamp Y>>16 (aka yhi) to 0..maxY */
507 const unsigned maxY = s.fBitmap->height() - 1; local
621 unsigned maxY = s.fBitmap->height() - 1; local
769 unsigned maxY = s.fBitmap->height() - 1; local
[all...]
/external/replicaisland/src/com/replica/replicaisland/
H A DAABoxCollisionVolume.java107 final float maxY;
113 maxY = Math.max(getMaxY(), other.getMaxY());
118 maxY = other.getMaxY();
122 final float verticalDelta = maxY - minY;
H A DCollisionVolume.java83 final float maxY = getMaxY();
84 value = flip.parentHeight - maxY;
H A DSphereCollisionVolume.java133 final float maxY;
139 maxY = Math.max(getMaxY(), other.getMaxY());
144 maxY = other.getMaxY();
148 final float verticalDelta = maxY - minY;
/external/qemu/distrib/sdl-1.2.15/src/events/
H A DSDL_events_c.h68 extern void SDL_SetMouseRange(int maxX, int maxY);
/external/webkit/Source/WebCore/dom/
H A DClientRect.h46 float bottom() const { return m_rect.maxY(); }
/external/webkit/Source/WebCore/page/qt/
H A DFrameQt.cpp55 context->clip(FloatRect(0, 0, paintingRect.maxX(), paintingRect.maxY()));
/external/webkit/Source/WebCore/inspector/
H A DDOMNodeHighlighter.cpp173 IntPoint titleBasePoint = IntPoint(anchorBox.x(), anchorBox.maxY() - 1);
191 if (titleRect.maxY() > overlayRect.maxY()) {
192 dy = anchorBox.y() - titleRect.maxY() - borderWidthPx;
194 if (titleRect.maxY() + dy > overlayRect.maxY())
195 dy = overlayRect.maxY() - titleRect.maxY();
/external/webkit/Source/WebKit/chromium/src/
H A DDragScrollTimer.cpp50 else if (rect.maxY() < point.y())
51 dy = point.y() - rect.maxY();
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/utils/ui/dialogs/
H A DResizableDialog.java110 int maxY = windowBounds.y + windowBounds.height - initialSize.y;
114 if (y > maxY) {
115 y = maxY;

Completed in 419 milliseconds

1234567