/external/chromium_org/third_party/WebKit/Source/platform/geometry/ |
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; 79 EdgeIntervalTree m_edgeTree; // Each EdgeIntervalTree node stores minY, maxY, and a ("UserData") pointer to a FloatPolygonEdge. 93 float maxY() const { return std::max(vertex1().y(), vertex2().y()); }
|
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...] |
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.h | 77 float maxY() const { return y() + height(); } 120 float delta = edge - maxY(); 143 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(); }
|
/external/chromium_org/third_party/skia/src/core/ |
SkBitmapFilter.cpp | 30 const int maxY = s.fBitmap->height() - 1; 42 int y0 = SkClampMax(SkScalarCeilToInt(srcPt.fY-s.getBitmapFilter()->width()), maxY); 43 int y1 = SkClampMax(SkScalarFloorToInt(srcPt.fY+s.getBitmapFilter()->width()+1), 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 | 30 const int maxY = s.fBitmap->height() - 1; 42 int y0 = SkClampMax(SkScalarCeilToInt(srcPt.fY-s.getBitmapFilter()->width()), maxY); 43 int y1 = SkClampMax(SkScalarFloorToInt(srcPt.fY+s.getBitmapFilter()->width()+1), 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()); 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());
|
/external/chromium_org/third_party/WebKit/Source/core/rendering/shapes/ |
RasterShape.cpp | 115 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(); 227 for (int y = minY; y < maxY; ++y) { 245 if (marginY < maxY && limitIntervalAt(marginY).contains(intervalAtY))
|
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/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/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/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...] |