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

1 23 4 5 6 7 8 9

  /frameworks/base/packages/SystemUI/src/com/android/systemui/recents/views/
TaskStackViewScroller.java 147 public void fling(float downScrollP, int downY, int y, int velY, int minY, int maxY,
151 ", velY: " + velY + ", minY: " + minY + ", maxY: " + maxY);
155 mScroller.fling(0, y, 0, velY, 0, 0, minY, maxY, 0, overscroll);
  /frameworks/base/libs/input/
PointerController.cpp 211 float minX, minY, maxX, maxY;
212 if (getBoundsLocked(&minX, &minY, &maxX, &maxY)) {
222 } else if (y >= maxY) {
223 mLocked.pointerY = maxY;
391 float minX, minY, maxX, maxY;
392 if (getBoundsLocked(&minX, &minY, &maxX, &maxY)) {
394 mLocked.pointerY = (minY + maxY) * 0.5f;
  /external/v8/tools/turbolizer/
graph-view.js 836 var maxY = (graph.maxGraphY + GRAPH_MARGIN) * scale;
840 if ((maxY + baseY) < dimensions[1]) {
841 adjustYCandidate = dimensions[1] - (maxY + baseY);
843 adjustY = (dimensions[1] / 2) - (maxY - (height / 2)) - baseY;
849 if ((maxY + baseY + adjustYCandidate) < dimensions[1]) {
850 adjustY = (dimensions[1] / 2) - (maxY - (height / 2)) - baseY;
947 var minX, maxX, minY, maxY;
956 maxY = maxY ? Math.max(maxY, n.y + DEFAULT_NODE_HEIGHT)
    [all...]
  /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...]
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...]
ImfAcesFile.cpp 520 int maxY = max (scanLine1, scanLine2);
522 for (int y = minY; y <= maxY; ++y)
  /frameworks/base/core/java/android/widget/
OverScroller.java 386 * @param maxY Minimum valid Y value
390 public boolean springBack(int startX, int startY, int minX, int maxX, int minY, int maxY) {
395 final boolean spingbackY = mScrollerY.springback(startY, minY, maxY);
400 int minX, int maxX, int minY, int maxY) {
401 fling(startX, startY, velocityX, velocityY, minX, maxX, minY, maxY, 0, 0);
423 * @param maxY Maximum Y value. The scroller will not scroll past this point
424 * unless overY > 0. If overfling is allowed, it will use maxY as
432 int minX, int maxX, int minY, int maxY, int overX, int overY) {
446 mScrollerY.fling(startY, velocityY, minY, maxY, overY);
    [all...]
Scroller.java 416 * @param maxY Maximum Y value. The scroller will not scroll past this
420 int minX, int maxX, int minY, int maxY) {
461 mMaxY = maxY;
  /packages/apps/Gallery2/gallerycommon/src/com/android/gallery3d/common/
OverScroller.java 387 * @param maxY Minimum valid Y value
391 public boolean springBack(int startX, int startY, int minX, int maxX, int minY, int maxY) {
396 final boolean spingbackY = mScrollerY.springback(startY, minY, maxY);
401 int minX, int maxX, int minY, int maxY) {
402 fling(startX, startY, velocityX, velocityY, minX, maxX, minY, maxY, 0, 0);
424 * @param maxY Maximum Y value. The scroller will not scroll past this point
425 * unless overY > 0. If overfling is allowed, it will use maxY as
433 int minX, int maxX, int minY, int maxY, int overX, int overY) {
447 mScrollerY.fling(startY, velocityY, minY, maxY, overY);
    [all...]
Scroller.java 363 * @param maxY Maximum Y value. The scroller will not scroll past this
367 int minX, int maxX, int minY, int maxY) {
409 mMaxY = maxY;
  /external/libgdx/gdx/src/com/badlogic/gdx/maps/tiled/renderers/
IsometricStaggeredTiledMapRenderer.java 66 final int maxY = Math.min(layerHeight, (int)((viewBounds.y + viewBounds.height + layerTileHeight) / layerTileHeight50));
68 for (int y = maxY - 1; y >= minY; y--) {
  /frameworks/base/core/java/android/transition/
Explode.java 166 int maxY = Math.max(focalY, sceneRoot.getHeight() - focalY);
167 return Math.hypot(maxX, maxY);
  /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...]
  /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/mesa3d/src/gallium/state_trackers/vega/
api_path.c 443 VGfloat maxX, maxY;
451 maxY = MAX2(pts[1], MAX2(pts[3], MAX2(pts[5], pts[7])));
453 *height = maxY - *minY;
  /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/core/
SkBitmapProcState.cpp 387 const int maxY = s.fPixmap.height() - 1;
389 int iy = SkClampMax(s.fFilterOneY + y, maxY);
783 const unsigned maxY = s.fPixmap.height() - 1;
784 dstY = SkClampMax(mapper.intY(), maxY);
  /frameworks/base/packages/SettingsLib/src/com/android/settingslib/graph/
UsageGraph.java 103 void setMax(int maxX, int maxY) {
105 mMaxY = maxY;
  /frameworks/native/opengl/tools/glgen/specs/gles11/
GLES31Ext.spec 25 void glPrimitiveBoundingBoxEXT ( GLfloat minX, GLfloat minY, GLfloat minZ, GLfloat minW, GLfloat maxX, GLfloat maxY, GLfloat maxZ, GLfloat maxW )
GLES32.spec 26 void glPrimitiveBoundingBox ( GLfloat minX, GLfloat minY, GLfloat minZ, GLfloat minW, GLfloat maxX, GLfloat maxY, GLfloat maxZ, GLfloat maxW )
  /frameworks/rs/
rsScriptC_LibGL.cpp 182 float *maxX, float *maxY, float *maxZ) {
189 *maxY = sm->mBBoxMax[1];
  /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;
  /packages/apps/Launcher3/src/com/android/launcher3/
LauncherScroller.java 400 * @param maxY Maximum Y value. The scroller will not scroll past this
404 int minX, int maxX, int minY, int maxY) {
445 mMaxY = maxY;
  /external/freetype/src/raster/
ftraster.c 498 Long minY, maxY;
    [all...]

Completed in 774 milliseconds

1 23 4 5 6 7 8 9