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

1 2 3 4

  /external/chromium_org/third_party/WebKit/Source/core/platform/graphics/
RoundedRect.cpp 160 int maxY = m_rect.maxY() - max(m_radii.bottomLeft().height(), m_radii.bottomRight().height());
161 return IntRect(minX, minY, maxX - minX, maxY - minY);
226 FloatRect rect(m_rect.x(), m_rect.maxY() - bottomLeft.height(), bottomLeft.width(), bottomLeft.height());
228 FloatPoint center(m_rect.x() + bottomLeft.width(), m_rect.maxY() - bottomLeft.height());
237 FloatRect rect(m_rect.maxX() - bottomRight.width(), m_rect.maxY() - bottomRight.height(), bottomRight.width(), bottomRight.height());
239 FloatPoint center(m_rect.maxX() - bottomRight.width(), m_rect.maxY() - bottomRight.height());
FloatPolygon.h 63 bool overlappingEdges(float minY, float maxY, Vector<const FloatPolygonEdge*>& result) const;
76 EdgeIntervalTree m_edgeTree; // Each EdgeIntervalTree node stores minY, maxY, and a ("UserData") pointer to a FloatPolygonEdge.
90 float maxY() const { return std::max(vertex1().y(), vertex2().y()); }
Region.cpp 83 int maxY = (span + 1)->y;
87 if (maxY <= point.y())
233 appendSpan(rect.maxY());
343 int maxY = lastSpan->y;
366 ASSERT(minY <= maxY);
368 return IntRect(minX, minY, maxX - minX, maxY - minY);
FloatRect.cpp 65 && isWithinIntRange(maxX()) && isWithinIntRange(maxY());
73 && y() < other.maxY() && other.y() < maxY();
79 && y() <= other.y() && maxY() >= other.maxY();
86 return x() < point.x() && maxX() > point.x() && y() < point.y() && maxY() > point.y();
94 float b = min(maxY(), other.maxY());
125 float maxY = max(this->maxY(), other.maxY())
    [all...]
FloatRect.h 77 float maxY() const { return y() + height(); }
120 float delta = edge - maxY();
142 { return px >= x() && px <= maxX() && py >= y() && py <= maxY(); }
IntRect.h 72 int maxY() const { return y() + height(); }
115 int delta = edge - maxY();
130 { return px >= x() && px < maxX() && py >= y() && py < maxY(); }
LayoutRect.h 68 LayoutUnit maxY() const { return y() + height(); }
128 LayoutUnit delta = edge - maxY();
143 { return px >= x() && px < maxX() && py >= y() && py < maxY(); }
  /external/chromium_org/third_party/skia/src/core/
SkBitmapFilter.cpp 29 const int maxY = s.fBitmap->height() - 1;
41 int y0 = SkClampMax(SkScalarCeilToInt(srcPt.fY-s.getBitmapFilter()->width()), maxY);
42 int y1 = SkClampMax(SkScalarFloorToInt(srcPt.fY+s.getBitmapFilter()->width()), maxY);
SkBitmapProcState_matrix.h 61 const unsigned maxY = s.fBitmap->height() - 1;
62 *xy++ = TILEY_PROCF(SkFractionalIntToFixed(fx), maxY);
128 int maxY = s.fBitmap->height() - 1;
131 *xy++ = (TILEY_PROCF(SkFractionalIntToFixed(fy), maxY) << 16) |
144 int maxY = s.fBitmap->height() - 1;
153 *xy++ = (TILEY_PROCF(srcXY[1], maxY) << 16) |
194 const unsigned maxY = s.fBitmap->height() - 1;
196 *xy++ = PACK_FILTER_Y_NAME(fy, maxY, s.fFilterOneY PREAMBLE_ARG_Y);
236 unsigned maxY = s.fBitmap->height() - 1;
239 *xy++ = PACK_FILTER_Y_NAME(fy, maxY, oneY PREAMBLE_ARG_Y)
    [all...]
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/
CollisionVolume.java 83 final float maxY = getMaxY();
84 value = flip.parentHeight - maxY;
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/
SkBitmapFilter.cpp 29 const int maxY = s.fBitmap->height() - 1;
41 int y0 = SkClampMax(SkScalarCeilToInt(srcPt.fY-s.getBitmapFilter()->width()), maxY);
42 int y1 = SkClampMax(SkScalarFloorToInt(srcPt.fY+s.getBitmapFilter()->width()), maxY);
SkBitmapProcState_matrix.h 61 const unsigned maxY = s.fBitmap->height() - 1;
62 *xy++ = TILEY_PROCF(SkFractionalIntToFixed(fx), maxY);
128 int maxY = s.fBitmap->height() - 1;
131 *xy++ = (TILEY_PROCF(SkFractionalIntToFixed(fy), maxY) << 16) |
144 int maxY = s.fBitmap->height() - 1;
153 *xy++ = (TILEY_PROCF(srcXY[1], maxY) << 16) |
194 const unsigned maxY = s.fBitmap->height() - 1;
196 *xy++ = PACK_FILTER_Y_NAME(fy, maxY, s.fFilterOneY PREAMBLE_ARG_Y);
236 unsigned maxY = s.fBitmap->height() - 1;
239 *xy++ = PACK_FILTER_Y_NAME(fy, maxY, oneY PREAMBLE_ARG_Y)
    [all...]
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);
  /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);
  /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/rendering/
RenderOverflow.h 93 LayoutUnit maxY = std::max(rect.maxY(), m_layoutOverflow.maxY());
97 m_layoutOverflow.setHeight(maxY - m_layoutOverflow.y());
103 LayoutUnit maxY = std::max(rect.maxY(), m_visualOverflow.maxY());
107 m_visualOverflow.setHeight(maxY - m_visualOverflow.y());
  /external/chromium_org/third_party/WebKit/Source/core/rendering/shapes/
RectangleShape.cpp 113 if (y2 < bounds.y() || y1 >= bounds.maxY())
125 } else if (y1 > bounds.maxY() - bounds.ry()) {
126 float yi = y1 - (bounds.maxY() - bounds.ry());
145 if (y1 < bounds.y() || y2 > bounds.maxY())
153 bool y2InterceptsCorner = y2 > bounds.maxY() - bounds.ry();
161 float yi = y2 - (bounds.maxY() - bounds.ry());
168 float yi = y2 - (bounds.maxY() - bounds.ry());
192 float maxY = minY + minIntervalHeight;
194 if (maxY > bounds.maxY())
    [all...]
  /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);
  /external/chromium_org/third_party/skia/src/opts/
SkBitmapFilter_opts_SSE2.cpp 55 const int maxY = s.fBitmap->height() - 1;
71 int y1 = SkTMin(maxY, int(floor(sy+s.getBitmapFilter()->width() + 0.5f)));
119 const int maxY = s.fBitmap->height() - 1;
128 int y1 = SkTMin(maxY, int(floor(sy+s.getBitmapFilter()->width() + 0.5f)));
SkBitmapProcState_matrix_repeat_neon.h 71 const unsigned maxY = s.fBitmap->height() - 1;
72 *xy++ = TILEY_PROCF(fx, maxY);
179 int maxY = s.fBitmap->height() - 1;
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;
356 y = vmulq_s32(y, vdupq_n_s32(maxY+1))
    [all...]

Completed in 800 milliseconds

1 2 3 4