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

1 2 3 4

  /external/androidplot/AndroidPlot-Core/src/main/java/com/androidplot/xy/
XYGraphBounds.java 23 private Number maxX;
LineAndPointRenderer.java 198 double maxX = getPlot().getCalculatedMaxX().doubleValue();
203 for (RectRegion r : RectRegion.regionsWithin(formatter.getRegions().elements(), minX, maxX, minY, maxY)) {
205 RectF regionRect = r.getRectF(plotArea, minX, maxX, minY, maxY);
  /packages/apps/Camera2/src/com/android/camera/ui/
TouchCoordinate.java 25 private float maxX;
32 * @param maxX Highest X value possible for any touch.
35 public TouchCoordinate(float x, float y, float maxX, float maxY) {
38 this.maxX = maxX;
51 return this.maxX;
  /external/skia/src/core/
SkBitmapProcState_matrix_template.h 22 const unsigned maxX = s.fBitmap->width() - 1;
34 if (0 == maxX) {
42 if (tryDecal && can_truncate_to_fixed_for_decal(fx, dx, count, maxX)) {
49 a = TileProc::X(s, SkFractionalIntToFixed(fx), maxX); fx += dx;
50 b = TileProc::X(s, SkFractionalIntToFixed(fx), maxX); fx += dx;
56 a = TileProc::X(s, SkFractionalIntToFixed(fx), maxX); fx += dx;
57 b = TileProc::X(s, SkFractionalIntToFixed(fx), maxX); fx += dx;
66 *xx++ = TileProc::X(s, SkFractionalIntToFixed(fx), maxX); fx += dx;
92 int maxX = s.fBitmap->width() - 1;
97 TileProc::X(s, SkFractionalIntToFixed(fx), maxX);
    [all...]
SkBitmapProcState_matrix.h 58 const unsigned maxX = s.fBitmap->width() - 1;
76 if (can_truncate_to_fixed_for_decal(fx, dx, count, maxX)) {
84 *xy++ = PACK_FILTER_X_NAME(fixedFx, maxX, one PREAMBLE_ARG_X);
109 unsigned maxX = s.fBitmap->width() - 1;
115 *xy++ = PACK_FILTER_X_NAME(fx, maxX, oneX PREAMBLE_ARG_X);
126 unsigned maxX = s.fBitmap->width() - 1;
140 *xy++ = PACK_FILTER_X_NAME(srcXY[0] - (oneX >> 1), maxX,
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;
GameObjectCollisionSystem.java 117 final float maxX = record.boundingVolume.getMaxXPosition(sFlip) + position.x;
126 if (otherPosition.x + other.boundingVolume.getMinXPosition(sOtherFlip) > maxX) {
SphereCollisionVolume.java 130 final float maxX;
137 maxX = Math.max(getMaxX(), other.getMaxX());
142 maxX = other.getMaxX();
147 final float horizontalDelta = maxX - minX;
  /external/skia/gm/
ovals.cpp 147 int maxX = fMatrices.count();
161 mat.postTranslate(kXStart + SK_Scalar1 * kXStep * (testCount % maxX) +
163 kYStart + SK_Scalar1 * kYStep * (testCount / maxX) +
roundrects.cpp 150 int maxX = fMatrices.count();
164 mat.postTranslate(kXStart + SK_Scalar1 * kXStep * (testCount % maxX) +
166 kYStart + SK_Scalar1 * kYStep * (testCount / 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/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/samplecode/
SampleEncode.cpp 173 SkScalar x = 0, y = 0, maxX = 0;
205 if (x > maxX) {
206 maxX = x;
211 x = maxX + SkIntToScalar(10);
  /external/skia/src/effects/
SkDashPathEffect.cpp 90 SkScalar maxX = pts[1].fX;
93 SkTSwap(minX, maxX);
96 SkASSERT(minX < maxX);
97 if (maxX <= bounds.fLeft || minX >= bounds.fRight) {
108 if (maxX > bounds.fRight) {
109 maxX = bounds.fRight + SkScalarMod(maxX - bounds.fRight, intervalLength);
112 SkASSERT(maxX > minX);
114 SkTSwap(minX, maxX);
117 pts[1].fX = maxX;
    [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;
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/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/utils/ui/dialogs/
ResizableDialog.java 109 int maxX = windowBounds.x + windowBounds.width - initialSize.x;
111 if (x > maxX) {
112 x = maxX;
  /external/skia/src/utils/
SkDashPath.cpp 116 SkScalar maxX = pts[1].fX;
119 SkTSwap(minX, maxX);
122 SkASSERT(minX <= maxX);
123 if (maxX < bounds.fLeft || minX > bounds.fRight) {
135 if (maxX > bounds.fRight) {
136 maxX = bounds.fRight + SkScalarMod(maxX - bounds.fRight,
140 SkASSERT(maxX >= minX);
142 SkTSwap(minX, maxX);
145 pts[1].fX = maxX;
    [all...]
  /frameworks/base/core/java/android/transition/
Explode.java 165 int maxX = Math.max(focalX, sceneRoot.getWidth() - focalX);
167 return Math.hypot(maxX, maxY);
  /frameworks/base/libs/input/
PointerController.cpp 170 float minX, minY, maxX, maxY;
171 if (getBoundsLocked(&minX, &minY, &maxX, &maxY)) {
174 } else if (x >= maxX) {
175 mLocked.pointerX = maxX;
328 float minX, minY, maxX, maxY;
329 if (getBoundsLocked(&minX, &minY, &maxX, &maxY)) {
330 mLocked.pointerX = (minX + maxX) * 0.5f;
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
LintOverlay.java 80 int maxX = mHScale.translate(0) + mHScale.getScaledImgSize();
103 if (x > maxX || y > maxY) {

Completed in 897 milliseconds

1 2 3 4