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

1 2 3 4 5 6 7 8 9

  /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/androidplot/AndroidPlot-Core/src/main/java/com/androidplot/xy/
XYGraphBounds.java 25 private Number maxY;
RectRegion.java 42 * @param maxY
44 public RectRegion(Number minX, Number maxX, Number minY, Number maxY, String label) {
46 yLineRegion = new LineRegion(minY, maxY);
51 public RectRegion(Number minX, Number maxX, Number minY, Number maxY) {
52 this(minX, maxX, minY, maxY, null);
69 //return RectRegion.isBetween(value, minY, maxY);
86 * @param maxY
89 public boolean intersects(Number minX, Number maxX, Number minY, Number maxY) {
90 return xLineRegion.intersects(minX, maxX) && yLineRegion.intersects(minY, maxY);
128 * @param maxY
    [all...]
  /external/opencv3/3rdparty/openexr/IlmImf/
ImfTiledMisc.h 55 int minY, int maxY,
60 int minY, int maxY,
68 int minY, int maxY,
ImfTiledMisc.cpp 75 int minY, int maxY,
82 levelSize (minY, maxY, ly, tileDesc.roundingMode) - 1);
91 int minY, int maxY,
101 (tileDesc, minX, maxX, minY, maxY, lx, ly).max;
182 int minY, int maxY)
197 int h = maxY - minY + 1;
222 int minY, int maxY)
237 int h = maxY - minY + 1;
245 int h = maxY - minY + 1;
278 int minY, int maxY,
    [all...]
  /cts/tests/openglperf2/jni/graphics/
Vector2D.h 27 void limit(float maxX, float maxY);
  /development/samples/ApiDemos/src/com/example/android/apis/view/
SystemPointerIconButton.java 49 final int maxY = getHeight() - minY;
53 if ((x < minX && y < minY) || (x > maxX && y > maxY)) {
56 } else if ((x < minX && y > maxY) || (x > maxX && y < minY)) {
62 } else if (y < minY || y > maxY) {
  /frameworks/support/compat/java/android/support/v4/widget/
ScrollerCompat.java 170 * @param maxY Maximum Y value. The scroller will not scroll past this
174 int minX, int maxX, int minY, int maxY) {
175 mScroller.fling(startX, startY, velocityX, velocityY, minX, maxX, minY, maxY);
194 * @param maxY Maximum Y value. The scroller will not scroll past this
202 int minX, int maxX, int minY, int maxY, int overX, int overY) {
204 minX, maxX, minY, maxY, overX, overY);
215 * @param maxY Maximum valid Y value
219 public boolean springBack(int startX, int startY, int minX, int maxX, int minY, int maxY) {
220 return mScroller.springBack(startX, startY, minX, maxX, minY, maxY);
  /external/opencv3/modules/imgproc/src/opencl/
boxFilter.cl 64 #define EXTRAPOLATE(x, y, minX, minY, maxX, maxY) \
67 y = max(min(y, maxY - 1), minY); \
70 #define EXTRAPOLATE(x, y, minX, minY, maxX, maxY) \
77 y -= ((y - maxY + 1) / maxY) * maxY; \
78 if (y >= maxY) \
79 y %= maxY; \
82 #define EXTRAPOLATE_(x, y, minX, minY, maxX, maxY, delta) \
96 if (maxY - minY == 1)
    [all...]
filter2DSmall.cl 86 #define EXTRAPOLATE(x, y, minX, minY, maxX, maxY) \
89 y = max(min(y, maxY - 1), minY); \
92 #define EXTRAPOLATE(x, y, minX, minY, maxX, maxY) \
99 y -= ((y - maxY + 1) / maxY) * maxY; \
100 if (y >= maxY) \
101 y %= maxY; \
104 #define EXTRAPOLATE_(x, y, minX, minY, maxX, maxY, delta) \
118 if (maxY - minY == 1)
    [all...]
  /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);
  /external/skia/src/core/
SkBitmapProcState_matrix_template.h 26 const unsigned maxY = s.fPixmap.height() - 1;
27 *xy++ = TileProc::Y(s, mapper.fixedY(), maxY);
87 int maxY = s.fPixmap.height() - 1;
90 *xy++ = (TileProc::Y(s, SkFractionalIntToFixed(fy), maxY) << 16) |
102 int maxY = s.fPixmap.height() - 1;
111 *xy++ = (TileProc::Y(s, srcXY[1], maxY) << 16) |
SkBitmapProcState_shaderproc.h 36 const unsigned maxY = s.fPixmap.height() - 1;
38 subY = TILEY_LOW_BITS(fy, maxY);
39 int y0 = TILEY_PROCF(fy, maxY);
40 int y1 = TILEY_PROCF((fy + s.fFilterOneY), maxY);
  /external/skia/src/pathops/
SkReduceOrder.cpp 38 int minX, int maxX, int minY, int maxY, SkDQuad& reduction) {
55 int index, minX, maxX, minY, maxY;
57 minX = maxX = minY = maxY = 0;
69 if (quad[maxY].fY < quad[index].fY) {
70 maxY = index;
90 int result = check_linear(quad, minX, maxX, minY, maxY, fQuad);
149 int minX, int maxX, int minY, int maxY, SkDCubic& reduction) {
186 int index, minX, maxX, minY, maxY;
188 minX = maxX = minY = maxY = 0;
200 if (cubic[maxY].fY < cubic[index].fY)
    [all...]
  /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/replicaisland/src/com/replica/replicaisland/
AABoxCollisionVolume.java 107 final float maxY;
113 maxY = Math.max(getMaxY(), other.getMaxY());
118 maxY = other.getMaxY();
122 final float verticalDelta = maxY - minY;
CollisionVolume.java 83 final float maxY = getMaxY();
84 value = flip.parentHeight - maxY;
  /external/androidplot/AndroidPlot-Core/src/main/java/com/androidplot/util/
ValPixConverter.java 88 * @param maxY Maximum visible real value on the y (range axis.
91 public static PointF valToPix(Number x, Number y, RectF plotArea, Number minX, Number maxX, Number minY, Number maxY) {
93 float pixY = ValPixConverter.valToPix(y.doubleValue(), minY.doubleValue(), maxY.doubleValue(), plotArea.height(), true) + plotArea.top;
  /external/chromium-trace/catapult/experimental/heatmap/
input.js 49 var maxX = x + 5, maxY = y - 5;
52 var maxTime = this.getTime(maxX), maxY = this.getBucket(maxY);
56 for (var bucket = minY; bucket <= maxY; ++bucket) {
  /external/libgdx/gdx/src/com/badlogic/gdx/math/
Polygon.java 177 float maxY = vertices[1];
184 maxY = maxY < vertices[i + 1] ? vertices[i + 1] : maxY;
191 bounds.height = maxY - minY;
  /external/opencv3/modules/cudalegacy/src/cuda/
bm.cu 72 const int maxX, const int maxY, const int acceptLevel, const int escapeLevel,
92 if (0 <= X2 && X2 <= maxX && 0 <= Y2 && Y2 <= maxY)
112 if (0 <= X2 && X2 <= maxX && 0 <= Y2 && Y2 <= maxY)
152 int maxX, int maxY, int acceptLevel, int escapeLevel, const short2* ss, int ssCount, cudaStream_t stream)
161 maxX, maxY, acceptLevel, escapeLevel, ss, ssCount);
  /frameworks/base/core/tests/coretests/src/android/transition/
SlideTransitionTest.java 67 assertTrue(finalOffsetOut * 0.8 < ratchet.maxY);
68 assertTrue(finalOffsetOut + 0.1 > ratchet.maxY);
148 public float maxY = Float.NaN;
155 minX = minY = maxX = maxY = Float.NaN;
163 minY = maxY = mView.getTranslationY();
169 maxY = Math.max(maxY, mView.getTranslationY());

Completed in 465 milliseconds

1 2 3 4 5 6 7 8 9