HomeSort by relevance Sort by last modified time
    Searched defs:maxY (Results 26 - 50 of 129) sorted by null

12 3 4 5 6

  /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/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());
  /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 42 const unsigned maxY = s.fPixmap.height() - 1;
43 *xy++ = TILEY_PROCF(mapper.fixedY(), maxY);
125 int maxY = s.fPixmap.height() - 1;
157 hi16.val[1] = TILEY_PROCF_NEON8(ybase, y2base, maxY);
176 *xy++ = (TILEY_PROCF(SkFractionalIntToFixed(fy), maxY) << 16) |
190 int maxY = s.fPixmap.height() - 1;
210 hi16.val[1] = TILEY_PROCF_NEON8(xy1.val[1], xy2.val[1], maxY);
224 *xy++ = (TILEY_PROCF(srcXY[1], maxY) << 16) |
303 const unsigned maxY = s.fPixmap.height() - 1;
305 *xy++ = PACK_FILTER_Y_NAME(fy, maxY, s.fFilterOneY PREAMBLE_ARG_Y)
    [all...]
SkBitmapProcState_opts_SSE2.cpp 258 const unsigned maxY = s.fPixmap.height() - 1;
260 *xy++ = ClampX_ClampY_pack_filter(fy, maxY, s.fFilterOneY);
375 const unsigned maxY = s.fPixmap.height() - 1;
376 *xy++ = SkClampMax(mapper.intY(), maxY);
494 unsigned maxY = s.fPixmap.height() - 1;
503 __m128i wide_max = _mm_set_epi32(maxX, maxY, maxX, maxY);
541 *xy++ = ClampX_ClampY_pack_filter(fy, maxY, oneY);
565 int maxY = s.fPixmap.height() - 1;
569 *xy++ = (SkClampMax(fy >> 16, maxY) << 16)
    [all...]
  /frameworks/base/libs/input/
PointerController.cpp 187 float minX, minY, maxX, maxY;
188 if (getBoundsLocked(&minX, &minY, &maxX, &maxY)) {
198 } else if (y >= maxY) {
199 mLocked.pointerY = maxY;
367 float minX, minY, maxX, maxY;
368 if (getBoundsLocked(&minX, &minY, &maxX, &maxY)) {
370 mLocked.pointerY = (minY + maxY) * 0.5f;
  /packages/apps/Gallery2/src/com/android/gallery3d/app/
GalleryActivity.java 261 float maxY = event.getDevice().getMotionRange(MotionEvent.AXIS_Y).getMax();
264 float scaleY = decor.getHeight() / maxY;
  /external/opencv3/3rdparty/openexr/IlmImf/
ImfOutputFile.cpp 129 int maxY;
182 int maxY; // data window's max x coord
337 endY = min (lineBufferMaxY, ofd->maxY) + 1;
342 startY = min (lineBufferMaxY, ofd->maxY);
451 _lineBuffer->maxY = min (_lineBuffer->minY + _ofd->linesInBuffer - 1,
452 _ofd->maxY);
458 _lineBuffer->scanLineMax = min (_lineBuffer->maxY, scanLineMax);
585 if (y >= _lineBuffer->minY && y <= _lineBuffer->maxY)
622 _lineBuffer->maxY, _lineBuffer->dataSize);
722 _data->maxY = dataWindow.max.y
    [all...]
ImfRgbaFile.cpp 953 int maxY = max (scanLine1, scanLine2);
957 for (int y = minY; y <= maxY; ++y)
962 for (int y = maxY; y >= minY; --y)
ImfScanLineInputFile.cpp 136 int maxY;
187 int maxY; // data window's max x coord
456 int maxY = min (_lineBuffer->maxY, _ifd->maxY);
459 i <= maxY - _ifd->minY;
616 lineBuffer->maxY = lineBuffer->minY + ifd->linesInBuffer - 1;
653 scanLineMax = min (lineBuffer->maxY, scanLineMax);
680 _data->maxY = dataWindow.max.y;
885 if (scanLineMin < _data->minY || scanLineMax > _data->maxY)
    [all...]
ImfTiledInputFile.cpp 198 int maxY; // data window's max x coord
453 _ifd->minY, _ifd->maxY,
731 _data->maxY = dataWindow.max.y;
739 _data->minY, _data->maxY,
1196 return levelSize (_data->minY, _data->maxY, ly,
1251 _data->minY, _data->maxY,
1280 _data->minY, _data->maxY,
    [all...]
ImfTiledOutputFile.cpp 244 int maxY; // data window's max x coord
710 _ofd->minY, _ofd->maxY,
911 _data->maxY = dataWindow.max.y;
919 _data->minY, _data->maxY,
    [all...]
  /packages/apps/TV/src/com/android/tv/guide/
ProgramGrid.java 374 int maxY = (mSelectionRow + 1) * mRowHeight + mDetailHeight;
375 if (y > maxY) scrollBy(0, y - maxY);
  /external/skia/src/gpu/batches/
GrPLSPathRenderer.cpp 245 SkScalar maxY = SkTMax(p1.fY, SkTMax(p2.fY, p3.fY)) + 1.0f;
248 triVertices.push_back({ { minX, maxY }, p1, p2, p3, winding });
250 triVertices.push_back({ { maxX, maxY }, p1, p2, p3, winding });
251 triVertices.push_back({ { minX, maxY }, p1, p2, p3, winding });
    [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/
BatteryMeterDrawable.java 231 int maxX = 0, maxY = 0;
234 maxY = Math.max(maxY, pts[i + 1]);
239 ptsF[i + 1] = (float)pts[i + 1] / maxY;
246 int maxX = 0, maxY = 0;
249 maxY = Math.max(maxY, pts[i + 1]);
254 ptsF[i + 1] = (float)pts[i + 1] / maxY;
  /frameworks/base/packages/SystemUI/src/com/android/systemui/recents/views/
TaskStackViewTouchHandler.java 338 float maxY = mDownY + layoutAlgorithm.getYForDeltaP(mDownScrollP,
340 mScroller.fling(mDownScrollP, mDownY, y, velocity, (int) minY, (int) maxY,
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
HeadsUpManager.java 400 int maxY = topEntry.getIntrinsicHeight();
403 info.touchableRegion.set(minX, 0, maxX, maxY);
  /external/deqp/modules/glshared/
glsTextureTestUtil.cpp     [all...]
  /external/skia/src/pathops/
SkOpAngle.cpp 468 double minX, minY, maxX, maxY;
470 maxX = maxY = -SK_ScalarInfinity;
477 maxY = SkTMax(maxY, curve[idx2].fY);
479 double maxWidth = SkTMax(maxX - minX, maxY - minY);
528 double minX, minY, maxX, maxY;
530 maxX = maxY = -SK_ScalarInfinity;
537 maxY = SkTMax(maxY, curve[idx2].fY);
539 double maxWidth = SkTMax(maxX - minX, maxY - minY)
    [all...]
  /bionic/libc/kernel/uapi/linux/
omap3isp.h 372 __u8 maxY;
  /development/ndk/platforms/android-21/include/linux/
omap3isp.h 372 __u8 maxY;
  /external/freetype/src/raster/
ftraster.c 492 Long minY, maxY;
    [all...]
  /external/kernel-headers/original/uapi/linux/
omap3isp.h 559 * @maxY: Maximum Y value
565 __u8 maxY;

Completed in 1092 milliseconds

12 3 4 5 6