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

12345678

/external/chromium_org/chrome/browser/ui/cocoa/
H A Dbrowser_window_controller_private.h47 - (CGFloat)layoutTabStripAtMaxY:(CGFloat)maxY
55 maxY:(CGFloat)maxY
64 // call it with the appropriate |maxY| which depends on whether or not the
68 maxY:(CGFloat)maxY
80 maxY:(CGFloat)maxY
/external/chromium_org/third_party/WebKit/Source/platform/geometry/
H A DIntRect.cpp54 && y() < other.maxY() && other.y() < maxY();
60 && y() <= other.y() && maxY() >= other.maxY();
68 int bottom = std::min(maxY(), other.maxY());
97 int bottom = std::max(maxY(), other.maxY());
118 int bottom = std::max(maxY(), other.maxY());
[all...]
H A DLayoutRect.cpp52 && y() < other.maxY() && other.y() < maxY();
58 && y() <= other.y() && maxY() >= other.maxY();
64 LayoutPoint newMaxPoint(std::min(maxX(), other.maxX()), std::min(maxY(), other.maxY()));
87 LayoutPoint newMaxPoint(std::max(maxX(), other.maxX()), std::max(maxY(), other.maxY()));
104 LayoutPoint newMaxPoint(std::max(maxX(), other.maxX()), std::max(maxY(), other.maxY()));
[all...]
H A DFloatRect.cpp62 && isWithinIntRange(maxX()) && isWithinIntRange(maxY());
70 && y() < other.maxY() && other.y() < maxY();
76 && y() <= other.y() && maxY() >= other.maxY();
83 return x() < point.x() && maxX() > point.x() && y() < point.y() && maxY() > point.y();
91 float bottom = std::min(maxY(), other.maxY());
122 float maxY = std::max(this->maxY(), othe local
145 float maxY = std::max(this->maxY(), p.y()); local
[all...]
H A DFloatRoundedRect.cpp108 if (y < rect().y() || y > rect().maxY())
120 if (!topLeftRect.isEmpty() && y >= topLeftRect.y() && y < topLeftRect.maxY())
121 minXIntercept = topLeftRect.maxX() - cornerRectIntercept(topLeftRect.maxY() - y, topLeftRect);
122 else if (!bottomLeftRect.isEmpty() && y >= bottomLeftRect.y() && y <= bottomLeftRect.maxY())
130 if (!topRightRect.isEmpty() && y >= topRightRect.y() && y <= topRightRect.maxY())
131 maxXIntercept = topRightRect.x() + cornerRectIntercept(topRightRect.maxY() - y, topRightRect);
132 else if (!bottomRightRect.isEmpty() && y >= bottomRightRect.y() && y <= bottomRightRect.maxY())
/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DRenderOverflow.h83 LayoutUnit maxY = std::max(rect.maxY(), m_layoutOverflow.maxY()); local
88 m_layoutOverflow.setHeight(maxY - minY);
90 m_layoutOverflow.setY(maxY - m_layoutOverflow.height());
96 LayoutUnit maxY = std::max(rect.maxY(), m_visualOverflow.maxY()); local
100 m_visualOverflow.setHeight(maxY - m_visualOverflow.y());
H A DRenderRegion.cpp87 LayoutUnit maxY = isLastPortion ? max(flowThreadPortionRect.maxY(), flowThreadOverflow.maxY()) : flowThreadPortionRect.maxY(); local
90 clipRect = LayoutRect(minX, minY, maxX - minX, maxY - minY);
95 LayoutUnit maxY = max(flowThreadPortionRect.y(), (flowThreadOverflow.maxY())); local
96 clipRect = LayoutRect(minX, minY, maxX - minX, maxY - minY);
197 return flowThread()->isHorizontalWritingMode() ? rect.maxY() : rect.maxX();
H A DScrollAlignment.cpp126 if ((exposeRect.maxY() > visibleRect.maxY() && exposeRect.height() < visibleRect.height())
127 || (exposeRect.maxY() < visibleRect.maxY() && exposeRect.height() > visibleRect.height())) {
137 y = exposeRect.maxY() - visibleRect.height();
/external/chromium_org/third_party/WebKit/Source/core/page/scrolling/
H A DScrollingConstraints.cpp43 offset.setHeight(viewportRect.maxY() - m_viewportRectAtLastLayout.maxY());
73 float bottomLimit = viewportRect.maxY() - m_bottomOffset;
74 float bottomDelta = std::min<float>(0, bottomLimit - m_absoluteStickyBoxRect.maxY());
85 float availableSpace = std::max<float>(0, m_absoluteContainingBlockRect.maxY() - m_absoluteStickyBoxRect.maxY());
/external/chromium_org/chrome/test/chromedriver/js/
H A Dget_element_region.js49 var maxY = minY;
56 maxY = Math.max(maxY, y);
62 'height': maxY - minY
/external/chromium_org/third_party/skia/experimental/Intersection/
H A DCubicLineSegments.cpp34 double maxY = SkTMax(hodo2[1].y, hodo2[1].y); local
35 double dist = sqrt(maxX * maxX + maxY * maxY);
H A DTestUtilities.cpp22 int index, minX, maxX, minY, maxY; local
23 minX = maxX = minY = maxY = 0;
34 if (cubic[maxY].y < cubic[index].y) {
35 maxY = index;
39 && approximately_equal(cubic[maxY].y, cubic[minY].y);
H A DLineUtilities.h24 void x_at(const _Point& p1, const _Point& p2, double minY, double maxY,
/external/skia/experimental/Intersection/
H A DCubicLineSegments.cpp34 double maxY = SkTMax(hodo2[1].y, hodo2[1].y); local
35 double dist = sqrt(maxX * maxX + maxY * maxY);
H A DTestUtilities.cpp22 int index, minX, maxX, minY, maxY; local
23 minX = maxX = minY = maxY = 0;
34 if (cubic[maxY].y < cubic[index].y) {
35 maxY = index;
39 && approximately_equal(cubic[maxY].y, cubic[minY].y);
/external/chromium_org/third_party/WebKit/Source/core/rendering/shapes/
H A DRasterShape.cpp82 for (int y = bounds().y(); y < bounds().maxY(); ++y) {
89 int marginY1 = std::min(maxY(), y + shapeMargin + 1);
100 if (marginY < bounds().maxY() && intervalAt(marginY).contains(intervalAtY))
113 for (int y = minY(); y < maxY(); ++y) {
123 int maxY = bounds().maxY(); local
124 for (int y = bounds().y(); y < maxY; y++) {
130 for (; endY < maxY; endY++) {
162 if (y2 < intervals.bounds().y() || y1 >= intervals.bounds().maxY())
166 y2 = std::min(y2, intervals.bounds().maxY());
[all...]
H A DRectangleShape.cpp65 if (y2 < bounds.y() || y1 >= bounds.maxY())
80 } else if (y1 > bounds.maxY() - marginRadiusY) {
81 float yi = y1 - (bounds.maxY() - marginRadiusY);
H A DBoxShape.cpp70 float topCornerMaxY = std::max<float>(marginBounds.topLeftCorner().maxY(), marginBounds.topRightCorner().maxY());
83 if (y1 <= marginBounds.topLeftCorner().maxY() && y2 >= marginBounds.bottomLeftCorner().y())
86 if (y1 <= marginBounds.topRightCorner().maxY() && y2 >= marginBounds.bottomRightCorner().y())
/external/chromium_org/third_party/skia/src/core/
H A DSkBitmapProcState_matrix_template.h29 const unsigned maxY = s.fBitmap->height() - 1; local
30 *xy++ = TileProc::Y(s, SkFractionalIntToFixed(fx), maxY);
93 int maxY = s.fBitmap->height() - 1; local
96 *xy++ = (TileProc::Y(s, SkFractionalIntToFixed(fy), maxY) << 16) |
108 int maxY = s.fBitmap->height() - 1; local
117 *xy++ = (TileProc::Y(s, srcXY[1], maxY) << 16) |
H A DSkBitmapProcState_shaderproc.h40 const unsigned maxY = s.fBitmap->height() - 1; local
42 subY = TILEY_LOW_BITS(fy, maxY);
43 int y0 = TILEY_PROCF(fy, maxY);
44 int y1 = TILEY_PROCF((fy + s.fFilterOneY), maxY);
/external/skia/src/core/
H A DSkBitmapProcState_matrix_template.h29 const unsigned maxY = s.fBitmap->height() - 1; local
30 *xy++ = TileProc::Y(s, SkFractionalIntToFixed(fx), maxY);
93 int maxY = s.fBitmap->height() - 1; local
96 *xy++ = (TileProc::Y(s, SkFractionalIntToFixed(fy), maxY) << 16) |
108 int maxY = s.fBitmap->height() - 1; local
117 *xy++ = (TileProc::Y(s, srcXY[1], maxY) << 16) |
/external/chromium_org/third_party/skia/src/pathops/
H A DSkReduceOrder.cpp38 int minX, int maxX, int minY, int maxY, SkDQuad& reduction) {
64 int index, minX, maxX, minY, maxY; local
66 minX = maxX = minY = maxY = 0;
78 if (quad[maxY].fY < quad[index].fY) {
79 maxY = index;
99 int result = check_linear(quad, minX, maxX, minY, maxY, fQuad);
158 int minX, int maxX, int minY, int maxY, SkDCubic& reduction) {
204 int index, minX, maxX, minY, maxY; local
206 minX = maxX = minY = maxY = 0;
218 if (cubic[maxY]
37 check_linear(const SkDQuad& quad, int minX, int maxX, int minY, int maxY, SkDQuad& reduction) argument
157 check_linear(const SkDCubic& cubic, int minX, int maxX, int minY, int maxY, SkDCubic& reduction) argument
[all...]
/external/skia/src/pathops/
H A DSkReduceOrder.cpp38 int minX, int maxX, int minY, int maxY, SkDQuad& reduction) {
64 int index, minX, maxX, minY, maxY; local
66 minX = maxX = minY = maxY = 0;
78 if (quad[maxY].fY < quad[index].fY) {
79 maxY = index;
99 int result = check_linear(quad, minX, maxX, minY, maxY, fQuad);
158 int minX, int maxX, int minY, int maxY, SkDCubic& reduction) {
204 int index, minX, maxX, minY, maxY; local
206 minX = maxX = minY = maxY = 0;
218 if (cubic[maxY]
37 check_linear(const SkDQuad& quad, int minX, int maxX, int minY, int maxY, SkDQuad& reduction) argument
157 check_linear(const SkDCubic& cubic, int minX, int maxX, int minY, int maxY, SkDCubic& reduction) argument
[all...]
/external/chromium_org/third_party/WebKit/Source/web/resources/
H A DpickerCommon.js70 get maxY() { return this.y + this.height; },
83 var maxY = Math.min(rect1.maxY, rect2.maxY);
85 var height = maxY - y;
130 var availableSpaceBelow = availRect.maxY - anchorRect.maxY;
140 windowRect.y = anchorRect.maxY;
142 windowRect.y = Math.min(windowRect.y, availRect.maxY - windowRect.height);
/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;

Completed in 476 milliseconds

12345678