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

1 2 3 4

  /external/chromium_org/third_party/WebKit/Source/core/platform/graphics/
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 89 float maxX() const { return std::max(vertex1().x(), vertex2().x()); }
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.cpp 65 && isWithinIntRange(maxX()) && isWithinIntRange(maxY());
72 && x() < other.maxX() && other.x() < maxX()
78 return x() <= other.x() && maxX() >= other.maxX()
86 return x() < point.x() && maxX() > point.x() && y() < point.y() && maxY() > point.y();
93 float r = min(maxX(), other.maxX());
124 float maxX = max(this->maxX(), other.maxX())
    [all...]
FloatRect.h 76 float maxX() const { return x() + width(); }
109 float delta = edge - maxX();
142 { 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 28 const int maxX = s.fBitmap->width() - 1;
43 int x0 = SkClampMax(SkScalarCeilToInt(srcPt.fX-s.getBitmapFilter()->width()), maxX);
44 int x1 = SkClampMax(SkScalarFloorToInt(srcPt.fX+s.getBitmapFilter()->width()), 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 28 const int maxX = s.fBitmap->width() - 1;
43 int x0 = SkClampMax(SkScalarCeilToInt(srcPt.fX-s.getBitmapFilter()->width()), maxX);
44 int x1 = SkClampMax(SkScalarFloorToInt(srcPt.fX+s.getBitmapFilter()->width()), 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());
96 m_layoutOverflow.setWidth(maxX - m_layoutOverflow.x());
102 LayoutUnit maxX = std::max(rect.maxX(), m_visualOverflow.maxX());
106 m_visualOverflow.setWidth(maxX - m_visualOverflow.x());
  /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/chromium_org/third_party/skia/src/effects/
SkDashPathEffect.cpp 128 SkScalar maxX = pts[1].fX;
130 if (maxX < bounds.fLeft || minX > bounds.fRight) {
135 SkTSwap(minX, maxX);
146 if (maxX > bounds.fRight) {
147 maxX = bounds.fRight + SkScalarMod(maxX - bounds.fRight,
151 SkASSERT(maxX >= minX);
153 SkTSwap(minX, maxX);
156 pts[1].fX = maxX;
  /external/chromium_org/third_party/skia/src/opts/
SkBitmapFilter_opts_SSE2.cpp 54 const int maxX = s.fBitmap->width() - 1;
73 int x1 = SkTMin(maxX, int(floor(sx+s.getBitmapFilter()->width() + 0.5f)));
118 const int maxX = s.fBitmap->width() - 1;
140 int x1 = SkTMin(maxX, int(floor(sx+s.getBitmapFilter()->width() + 0.5f)));

Completed in 790 milliseconds

1 2 3 4