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

1 2 3 4

  /external/chromium_org/third_party/WebKit/Source/platform/geometry/
RoundedRect.cpp 159 int maxX = m_rect.maxX() - max(m_radii.topRight().width(), m_radii.bottomRight().width());
161 return IntRect(minX, minY, maxX - minX, maxY - minY);
215 FloatRect rect(m_rect.maxX() - topRight.width(), m_rect.y(), topRight.width(), topRight.height());
217 FloatPoint center(m_rect.maxX() - topRight.width(), m_rect.y() + topRight.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 92 float maxX() const { return std::max(vertex1().x(), vertex2().x()); }
FloatRect.cpp 62 && isWithinIntRange(maxX()) && isWithinIntRange(maxY());
69 && x() < other.maxX() && other.x() < maxX()
75 return x() <= other.x() && maxX() >= other.maxX()
83 return x() < point.x() && maxX() > point.x() && y() < point.y() && maxY() > point.y();
90 float right = std::min(maxX(), other.maxX());
121 float maxX = std::max(this->maxX(), other.maxX())
    [all...]
Region.cpp 92 int maxX = *(segment + 1);
96 if (maxX > point.x())
232 appendSegment(rect.maxX());
346 int maxX = std::numeric_limits<int>::min();
358 if (*lastSegment > maxX)
359 maxX = *lastSegment;
365 ASSERT(minX <= maxX);
368 return IntRect(minX, minY, maxX - minX, maxY - minY);
FloatRect.h 76 float maxX() const { return x() + width(); }
109 float delta = edge - maxX();
143 return px >= x() && px <= maxX() && py >= y() && py <= maxY();
IntRect.h 71 int maxX() const { return x() + width(); }
104 int delta = edge - maxX();
130 { return px >= x() && px < maxX() && py >= y() && py < maxY(); }
LayoutRect.h 67 LayoutUnit maxX() const { return x() + width(); }
117 LayoutUnit delta = edge - maxX();
143 { return px >= x() && px < maxX() && py >= y() && py < maxY(); }
  /external/chromium_org/third_party/skia/src/core/
SkBitmapFilter.cpp 29 const int maxX = s.fBitmap->width() - 1;
44 int x0 = SkClampMax(SkScalarCeilToInt(srcPt.fX-s.getBitmapFilter()->width()), maxX);
45 int x1 = SkClampMax(SkScalarFloorToInt(srcPt.fX+s.getBitmapFilter()->width())+1, maxX);
SkBitmapProcState_matrix.h 54 const unsigned maxX = s.fBitmap->width() - 1;
66 if (0 == maxX) {
75 if (can_truncate_to_fixed_for_decal(fx, dx, count, maxX)) {
84 a = TILEX_PROCF(SkFractionalIntToFixed(fx), maxX); fx += dx;
85 b = TILEX_PROCF(SkFractionalIntToFixed(fx), maxX); fx += dx;
91 a = TILEX_PROCF(SkFractionalIntToFixed(fx), maxX); fx += dx;
92 b = TILEX_PROCF(SkFractionalIntToFixed(fx), maxX); fx += dx;
101 *xx++ = TILEX_PROCF(SkFractionalIntToFixed(fx), maxX); fx += dx;
127 int maxX = s.fBitmap->width() - 1;
132 TILEX_PROCF(SkFractionalIntToFixed(fx), maxX);
    [all...]
SkBitmapProcState_shaderproc.h 27 const unsigned maxX = s.fBitmap->width() - 1;
59 unsigned subX = TILEX_LOW_BITS(fx, maxX);
60 unsigned x0 = TILEX_PROCF(fx, maxX);
61 unsigned x1 = TILEX_PROCF((fx + oneX), maxX);
  /external/replicaisland/src/com/replica/replicaisland/
CollisionVolume.java 61 final float maxX = getMaxX();
62 value = flip.parentWidth - maxX;
AABoxCollisionVolume.java 104 final float maxX;
111 maxX = Math.max(getMaxX(), other.getMaxX());
116 maxX = other.getMaxX();
121 final float horizontalDelta = maxX - minX;
  /external/skia/gm/
ovals.cpp 146 int maxX = fMatrices.count();
160 mat.postTranslate(kXStart + SK_Scalar1 * kXStep * (testCount % maxX) +
162 kYStart + SK_Scalar1 * kYStep * (testCount / maxX) +
roundrects.cpp 149 int maxX = fMatrices.count();
163 mat.postTranslate(kXStart + SK_Scalar1 * kXStep * (testCount % maxX) +
165 kYStart + SK_Scalar1 * kYStep * (testCount / maxX) +
  /external/skia/src/core/
SkBitmapFilter.cpp 29 const int maxX = s.fBitmap->width() - 1;
44 int x0 = SkClampMax(SkScalarCeilToInt(srcPt.fX-s.getBitmapFilter()->width()), maxX);
45 int x1 = SkClampMax(SkScalarFloorToInt(srcPt.fX+s.getBitmapFilter()->width())+1, maxX);
SkBitmapProcState_matrix.h 54 const unsigned maxX = s.fBitmap->width() - 1;
66 if (0 == maxX) {
75 if (can_truncate_to_fixed_for_decal(fx, dx, count, maxX)) {
84 a = TILEX_PROCF(SkFractionalIntToFixed(fx), maxX); fx += dx;
85 b = TILEX_PROCF(SkFractionalIntToFixed(fx), maxX); fx += dx;
91 a = TILEX_PROCF(SkFractionalIntToFixed(fx), maxX); fx += dx;
92 b = TILEX_PROCF(SkFractionalIntToFixed(fx), maxX); fx += dx;
101 *xx++ = TILEX_PROCF(SkFractionalIntToFixed(fx), maxX); fx += dx;
127 int maxX = s.fBitmap->width() - 1;
132 TILEX_PROCF(SkFractionalIntToFixed(fx), maxX);
    [all...]
SkBitmapProcState_shaderproc.h 27 const unsigned maxX = s.fBitmap->width() - 1;
59 unsigned subX = TILEX_LOW_BITS(fx, maxX);
60 unsigned x0 = TILEX_PROCF(fx, maxX);
61 unsigned x1 = TILEX_PROCF((fx + oneX), maxX);
  /development/samples/devbytes/animation/Bouncer/src/com/example/android/bouncer/
Bouncer.java 93 int maxX = mShapeX + mShapeW;
96 maxX = Math.max(mShapeX + mShapeW, maxX);
97 invalidate(minX, mShapeY, maxX, mShapeY + mShapeH);
Bouncer1.java 67 int maxX = mShapeX + mShapeW;
70 maxX = Math.max(mShapeX + mShapeW, maxX);
71 invalidate(minX, mShapeY, maxX, mShapeY + mShapeH);
Bouncer2.java 68 int maxX = mShapeX + mShapeW;
71 maxX = Math.max(mShapeX + mShapeW, maxX);
72 invalidate(minX, mShapeY, maxX, mShapeY + mShapeH);
Bouncer3.java 68 int maxX = mShapeX + mShapeW;
71 maxX = Math.max(mShapeX + mShapeW, maxX);
72 invalidate(minX, mShapeY, maxX, mShapeY + mShapeH);
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderOverflow.h 92 LayoutUnit maxX = std::max(rect.maxX(), m_layoutOverflow.maxX());
97 m_layoutOverflow.setWidth(maxX - minX);
99 m_layoutOverflow.setX(maxX - m_layoutOverflow.width());
105 LayoutUnit maxX = std::max(rect.maxX(), m_visualOverflow.maxX());
109 m_visualOverflow.setWidth(maxX - m_visualOverflow.x());
  /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;
75 if (quad[maxX].fX < quad[index].fX) {
76 maxX = 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;
215 if (cubic[maxX].fX < cubic[index].fX)
    [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) {
71 this.maxX = maxX;
80 joint.getRotationalLimitMotor(0).setHiLimit(maxX);
  /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;
75 if (quad[maxX].fX < quad[index].fX) {
76 maxX = 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;
215 if (cubic[maxX].fX < cubic[index].fX)
    [all...]

Completed in 437 milliseconds

1 2 3 4