HomeSort by relevance Sort by last modified time
    Searched refs:maxY (Results 1 - 25 of 218) sorted by null

1 2 3 4 5 6 7 8 9

  /external/chromium/chrome/browser/ui/cocoa/
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/chromium_org/chrome/browser/ui/cocoa/
browser_window_controller_private.h 57 - (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/
IntRect.cpp 54 && 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...]
LayoutRect.cpp 51 && 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...]
FloatRect.cpp 62 && 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(), other.maxY())
    [all...]
FloatRoundedRect.cpp 108 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())
  /cts/suite/cts/deviceTests/opengl/jni/graphics/
Vector2D.h 27 void limit(float maxX, float maxY);
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderOverflow.h 93 LayoutUnit maxY = std::max(rect.maxY(), m_layoutOverflow.maxY());
98 m_layoutOverflow.setHeight(maxY - minY);
100 m_layoutOverflow.setY(maxY - m_layoutOverflow.height());
106 LayoutUnit maxY = std::max(rect.maxY(), m_visualOverflow.maxY());
110 m_visualOverflow.setHeight(maxY - m_visualOverflow.y());
ScrollBehavior.cpp 126 if ((exposeRect.maxY() > visibleRect.maxY() && exposeRect.height() < visibleRect.height())
127 || (exposeRect.maxY() < visibleRect.maxY() && exposeRect.height() > visibleRect.height())) {
137 y = exposeRect.maxY() - visibleRect.height();
RenderRegionSet.cpp 59 LayoutUnit logicalHeightWithOverflow = (isHorizontal ? layoutRect.maxY() : layoutRect.maxX()) - logicalTopOffset;
  /external/chromium_org/third_party/WebKit/Source/core/rendering/shapes/
RectangleShape.cpp 85 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;
179 if (maxY > bounds.maxY())
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/page/scrolling/
ScrollingConstraints.cpp 43 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());
  /cts/tests/tests/graphics/src/android/graphics/cts/
DiscretePathEffectTest.java 77 int maxY = 0;
84 maxY = Math.max(maxY, y);
96 assertTrue(maxY - minY > 0);
98 assertTrue(maxY - minY <= 1 + 2 * DEVIATION);
  /external/jmonkeyengine/engine/src/bullet-common/com/jme3/bullet/control/ragdoll/
RagdollPreset.java 65 private float maxX, minX, maxY, minY, maxZ, minZ;
70 public JointPreset(float maxX, float minX, float maxY, float minY, float maxZ, float minZ) {
73 this.maxY = maxY;
82 joint.getRotationalLimitMotor(1).setHiLimit(maxY);
  /frameworks/support/v4/java/android/support/v4/widget/
ScrollerCompat.java 44 int minX, int maxX, int minY, int maxY);
46 int minX, int maxX, int minY, int maxY, int overX, int overY);
100 int minX, int maxX, int minY, int maxY) {
101 ((Scroller) scroller).fling(startX, startY, velX, velY, minX, maxX, minY, maxY);
106 int minX, int maxX, int minY, int maxY, int overX, int overY) {
107 ((Scroller) scroller).fling(startX, startY, velX, velY, minX, maxX, minY, maxY);
187 int minX, int maxX, int minY, int maxY) {
189 minX, maxX, minY, maxY);
194 int minX, int maxX, int minY, int maxY, int overX, int overY) {
196 minX, maxX, minY, maxY, overX, overY)
    [all...]
  /external/chromium_org/third_party/skia/src/pathops/
SkReduceOrder.cpp 38 int minX, int maxX, int minY, int maxY, SkDQuad& reduction) {
64 int index, minX, maxX, minY, maxY;
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;
206 minX = maxX = minY = maxY = 0;
218 if (cubic[maxY].fY < cubic[index].fY)
    [all...]
  /external/skia/src/pathops/
SkReduceOrder.cpp 38 int minX, int maxX, int minY, int maxY, SkDQuad& reduction) {
64 int index, minX, maxX, minY, maxY;
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;
206 minX = maxX = minY = maxY = 0;
218 if (cubic[maxY].fY < cubic[index].fY)
    [all...]
  /development/samples/devbytes/animation/Bouncer/src/com/example/android/bouncer/
Bouncer.java 106 int maxY = mShapeY + mShapeH;
109 maxY = Math.max(mShapeY + mShapeH, maxY);
110 invalidate(mShapeX, minY, mShapeX + mShapeW, maxY);
Bouncer1.java 76 int maxY = mShapeY + mShapeH;
79 maxY = Math.max(mShapeY + mShapeH, maxY);
80 invalidate(mShapeX, minY, mShapeX + mShapeW, maxY);
Bouncer2.java 77 int maxY = mShapeY + mShapeH;
80 maxY = Math.max(mShapeY + mShapeH, maxY);
81 invalidate(mShapeX, minY, mShapeX + mShapeW, maxY);
Bouncer3.java 77 int maxY = mShapeY + mShapeH;
80 maxY = Math.max(mShapeY + mShapeH, maxY);
81 invalidate(mShapeX, minY, mShapeX + mShapeW, maxY);
  /external/chromium_org/third_party/WebKit/Source/core/dom/
ClientRect.h 47 float bottom() const { return m_rect.maxY(); }
  /external/chromium_org/third_party/skia/src/core/
SkBitmapProcState_shaderproc.h 40 const unsigned maxY = s.fBitmap->height() - 1;
42 subY = TILEY_LOW_BITS(fy, maxY);
43 int y0 = TILEY_PROCF(fy, maxY);
44 int y1 = TILEY_PROCF((fy + s.fFilterOneY), maxY);
  /external/replicaisland/src/com/replica/replicaisland/
AABoxCollisionVolume.java 107 final float maxY;
113 maxY = Math.max(getMaxY(), other.getMaxY());
118 maxY = other.getMaxY();
122 final float verticalDelta = maxY - minY;
  /external/skia/src/core/
SkBitmapProcState_shaderproc.h 40 const unsigned maxY = s.fBitmap->height() - 1;
42 subY = TILEY_LOW_BITS(fy, maxY);
43 int y0 = TILEY_PROCF(fy, maxY);
44 int y1 = TILEY_PROCF((fy + s.fFilterOneY), maxY);

Completed in 532 milliseconds

1 2 3 4 5 6 7 8 9