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

1 2 3 4

  /external/androidplot/AndroidPlot-Core/src/main/java/com/androidplot/xy/
XYGraphBounds.java 25 private Number maxY;
LineAndPointRenderer.java 200 double maxY = getPlot().getCalculatedMaxY().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 26 private float maxY;
33 * @param maxY Highest Y value possible for any touch.
35 public TouchCoordinate(float x, float y, float maxX, float maxY) {
39 this.maxY = maxY;
55 return this.maxY;
  /external/skia/src/core/
SkBitmapProcState_matrix_template.h 29 const unsigned maxY = s.fBitmap->height() - 1;
30 *xy++ = TileProc::Y(s, SkFractionalIntToFixed(fx), maxY);
93 int maxY = s.fBitmap->height() - 1;
96 *xy++ = (TileProc::Y(s, SkFractionalIntToFixed(fy), maxY) << 16) |
108 int maxY = s.fBitmap->height() - 1;
117 *xy++ = (TileProc::Y(s, srcXY[1], maxY) << 16) |
SkBitmapProcState_matrix.h 68 const unsigned maxY = s.fBitmap->height() - 1;
70 *xy++ = PACK_FILTER_Y_NAME(fy, maxY, s.fFilterOneY PREAMBLE_ARG_Y);
110 unsigned maxY = s.fBitmap->height() - 1;
113 *xy++ = PACK_FILTER_Y_NAME(fy, maxY, oneY PREAMBLE_ARG_Y);
127 unsigned maxY = s.fBitmap->height() - 1;
138 *xy++ = PACK_FILTER_Y_NAME(srcXY[1] - (oneY >> 1), maxY,
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;
SphereCollisionVolume.java 133 final float maxY;
139 maxY = Math.max(getMaxY(), other.getMaxY());
144 maxY = other.getMaxY();
148 final float verticalDelta = maxY - minY;
  /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/apache-commons-math/src/main/java/org/apache/commons/math/optimization/fitting/
GaussianParametersGuesser.java 206 double maxY = Double.NEGATIVE_INFINITY;
209 maxY = Math.max(maxY, point.getY());
211 throw new OutOfRangeException(y, minY, maxY);
  /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/effects/
SkDashPathEffect.cpp 121 SkScalar maxY = pts[1].fY;
124 SkTSwap(minY, maxY);
127 SkASSERT(minY < maxY);
128 if (maxY <= bounds.fTop || minY >= bounds.fBottom) {
139 if (maxY > bounds.fBottom) {
140 maxY = bounds.fBottom + SkScalarMod(maxY - bounds.fBottom, intervalLength);
143 SkASSERT(maxY > minY);
145 SkTSwap(minY, maxY);
148 pts[1].fY = maxY;
    [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;
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/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/utils/ui/dialogs/
ResizableDialog.java 110 int maxY = windowBounds.y + windowBounds.height - initialSize.y;
114 if (y > maxY) {
115 y = maxY;
  /frameworks/base/core/java/android/transition/
Explode.java 166 int maxY = Math.max(focalY, sceneRoot.getHeight() - focalY);
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)) {
181 } else if (y >= maxY) {
182 mLocked.pointerY = maxY;
328 float minX, minY, maxX, maxY;
329 if (getBoundsLocked(&minX, &minY, &maxX, &maxY)) {
331 mLocked.pointerY = (minY + maxY) * 0.5f;
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
LintOverlay.java 81 int maxY = mVScale.translate(0) + mVScale.getScaledImgSize();
103 if (x > maxX || y > maxY) {
  /development/samples/devbytes/graphics/ImagePixelization/src/com/example/android/imagepixelization/
ImagePixelization.java 176 int maxX, maxY;
184 maxY = Math.min(y + yPixels, height);
187 for (int j = y; j < maxY; j++) {
  /external/opencv/cvaux/src/
cvcorrimages.cpp 633 float maxX,maxY;
636 maxX = maxY = FLT_MIN;
656 if( y > maxY )
657 maxY = y;
677 if( y > maxY )
678 maxY = y;
686 subdiv = cvCreateSubdivDelaunay2D( cvRect( cvRound(minX)-5, cvRound(minY)-5, cvRound(maxX-minX)+10, cvRound(maxY-minY)+10 ), storage );
    [all...]
  /external/skia/src/opts/
SkBitmapProcState_matrix_neon.h 40 const unsigned maxY = s.fBitmap->height() - 1;
41 *xy++ = TILEY_PROCF(SkFractionalIntToFixed(fx), maxY);
126 int maxY = s.fBitmap->height() - 1;
158 hi16.val[1] = TILEY_PROCF_NEON8(ybase, y2base, maxY);
177 *xy++ = (TILEY_PROCF(SkFractionalIntToFixed(fy), maxY) << 16) |
191 int maxY = s.fBitmap->height() - 1;
211 hi16.val[1] = TILEY_PROCF_NEON8(xy1.val[1], xy2.val[1], maxY);
225 *xy++ = (TILEY_PROCF(srcXY[1], maxY) << 16) |
306 const unsigned maxY = s.fBitmap->height() - 1;
308 *xy++ = PACK_FILTER_Y_NAME(fy, maxY, s.fFilterOneY PREAMBLE_ARG_Y)
    [all...]

Completed in 277 milliseconds

1 2 3 4