Searched refs:maxY (Results 1 - 25 of 163) 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/chromium_org/chrome/browser/ui/cocoa/
H A Dbrowser_window_controller_private.h57 - (CGFloat)layoutTabStripAtMaxY:(CGFloat)maxY
65 maxY:(CGFloat)maxY
74 // call it with the appropriate |maxY| which depends on whether or not the
78 maxY:(CGFloat)maxY
90 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.cpp51 && y() < other.maxY() && other.y() < maxY();
57 && y() <= other.y() && maxY() >= other.maxY();
63 LayoutPoint newMaxPoint(std::min(maxX(), other.maxX()), std::min(maxY(), other.maxY()));
86 LayoutPoint newMaxPoint(std::max(maxX(), other.maxX()), std::max(maxY(), other.maxY()));
103 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.h93 LayoutUnit maxY = std::max(rect.maxY(), m_layoutOverflow.maxY()); local
98 m_layoutOverflow.setHeight(maxY - minY);
100 m_layoutOverflow.setY(maxY - m_layoutOverflow.height());
106 LayoutUnit maxY = std::max(rect.maxY(), m_visualOverflow.maxY()); local
110 m_visualOverflow.setHeight(maxY - m_visualOverflow.y());
H A DScrollBehavior.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();
H A DRenderRegionSet.cpp59 LayoutUnit logicalHeightWithOverflow = (isHorizontal ? layoutRect.maxY() : layoutRect.maxX()) - logicalTopOffset;
/external/chromium_org/third_party/WebKit/Source/core/rendering/shapes/
H A DRectangleShape.cpp85 if (y2 < bounds.y() || y1 >= bounds.maxY())
100 } else if (y1 > bounds.maxY() - marginRadiusY) {
101 float yi = y1 - (bounds.maxY() - marginRadiusY);
120 if (y1 < bounds.y() || y2 > bounds.maxY())
131 bool y2InterceptsCorner = y2 > bounds.maxY() - paddingRadiusY;
139 float yi = y2 - (bounds.maxY() - paddingRadiusY);
146 float yi = y2 - (bounds.maxY() - paddingRadiusY);
177 float maxY = minY + minIntervalHeight; local
179 if (maxY > bounds.maxY())
[all...]
H A DRasterShape.cpp115 for (int y = rect.y(); y < rect.maxY(); y++) {
158 for (int lineY = minY; lineY <= bounds().maxY() - minSize.height(); lineY++) {
185 if (y1 < bounds().y() || y2 > bounds().maxY())
205 if (y2 < bounds().y() || y1 >= bounds().maxY())
209 y2 = std::min(y2, bounds().maxY());
225 int maxY = bounds().maxY(); local
227 for (int y = minY; y < maxY; ++y) {
245 if (marginY < maxY && limitIntervalAt(marginY).contains(intervalAtY))
/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/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/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/chromium_org/third_party/skia/src/core/
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);
H A DSkBitmapProcState_matrix.h61 const unsigned maxY = s.fBitmap->height() - 1; local
62 *xy++ = TILEY_PROCF(SkFractionalIntToFixed(fx), maxY);
128 int maxY = s.fBitmap->height() - 1; local
131 *xy++ = (TILEY_PROCF(SkFractionalIntToFixed(fy), maxY) << 16) |
144 int maxY = s.fBitmap->height() - 1; local
153 *xy++ = (TILEY_PROCF(srcXY[1], maxY) << 16) |
194 const unsigned maxY = s.fBitmap->height() - 1; local
196 *xy++ = PACK_FILTER_Y_NAME(fy, maxY, s.fFilterOneY PREAMBLE_ARG_Y);
236 unsigned maxY = s.fBitmap->height() - 1; local
239 *xy++ = PACK_FILTER_Y_NAME(fy, maxY, one
253 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;
/external/skia/src/core/
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);
H A DSkBitmapProcState_matrix.h61 const unsigned maxY = s.fBitmap->height() - 1; local
62 *xy++ = TILEY_PROCF(SkFractionalIntToFixed(fx), maxY);
128 int maxY = s.fBitmap->height() - 1; local
131 *xy++ = (TILEY_PROCF(SkFractionalIntToFixed(fy), maxY) << 16) |
144 int maxY = s.fBitmap->height() - 1; local
153 *xy++ = (TILEY_PROCF(srcXY[1], maxY) << 16) |
194 const unsigned maxY = s.fBitmap->height() - 1; local
196 *xy++ = PACK_FILTER_Y_NAME(fy, maxY, s.fFilterOneY PREAMBLE_ARG_Y);
236 unsigned maxY = s.fBitmap->height() - 1; local
239 *xy++ = PACK_FILTER_Y_NAME(fy, maxY, one
253 unsigned maxY = s.fBitmap->height() - 1; local
[all...]
/external/chromium_org/third_party/skia/src/opts/
H A DSkBitmapProcState_matrix_repeat_neon.h71 const unsigned maxY = s.fBitmap->height() - 1; local
72 *xy++ = TILEY_PROCF(fx, maxY);
179 int maxY = s.fBitmap->height() - 1; local
227 yout = vmulq_s32(yout, vdupq_n_s32(maxY+1));
254 uint32_t val = (TILEY_PROCF(ofy, maxY) << 16) | TILEX_PROCF(ofx, maxX);
266 SkDebugf("maxX %08x maxY %08x\n", maxX, maxY);
273 *xy++ = (TILEY_PROCF(fy, maxY) << 16) | TILEX_PROCF(fx, maxX);
285 int maxY = s.fBitmap->height() - 1; local
356 y = vmulq_s32(y, vdupq_n_s32(maxY
428 const unsigned maxY = s.fBitmap->height() - 1; local
471 unsigned maxY = s.fBitmap->height() - 1; local
490 unsigned maxY = s.fBitmap->height() - 1; local
[all...]
/external/skia/src/opts/
H A DSkBitmapProcState_matrix_repeat_neon.h71 const unsigned maxY = s.fBitmap->height() - 1; local
72 *xy++ = TILEY_PROCF(fx, maxY);
179 int maxY = s.fBitmap->height() - 1; local
227 yout = vmulq_s32(yout, vdupq_n_s32(maxY+1));
254 uint32_t val = (TILEY_PROCF(ofy, maxY) << 16) | TILEX_PROCF(ofx, maxX);
266 SkDebugf("maxX %08x maxY %08x\n", maxX, maxY);
273 *xy++ = (TILEY_PROCF(fy, maxY) << 16) | TILEX_PROCF(fx, maxX);
285 int maxY = s.fBitmap->height() - 1; local
356 y = vmulq_s32(y, vdupq_n_s32(maxY
428 const unsigned maxY = s.fBitmap->height() - 1; local
471 unsigned maxY = s.fBitmap->height() - 1; local
490 unsigned maxY = s.fBitmap->height() - 1; local
[all...]

Completed in 595 milliseconds

1234567