Searched refs:maxY (Results 1 - 14 of 14) sorted by relevance

/frameworks/support/v4/java/android/support/v4/widget/
H A DScrollerCompat.java165 * @param maxY Maximum Y value. The scroller will not scroll past this
169 int minX, int maxX, int minY, int maxY) {
170 mScroller.fling(startX, startY, velocityX, velocityY, minX, maxX, minY, maxY);
168 fling(int startX, int startY, int velocityX, int velocityY, int minX, int maxX, int minY, int maxY) argument
/frameworks/base/core/java/android/webkit/
H A DOverScrollGlow.java59 * @param maxY Maximum range for vertical scrolling
61 public void pullGlow(int x, int y, int oldX, int oldY, int maxX, int maxY) { argument
83 if (maxY > 0 || mHostView.getWebView().getOverScrollMode() == View.OVER_SCROLL_ALWAYS) {
90 } else if (pulledToY > maxY) {
H A DWebViewClassic.java3362 int maxY = computeMaxScrollY();
3369 if (scrollY < 0 || scrollY > maxY) {
3381 mOverScrollGlow.pullGlow(getScrollX(), getScrollY(), oldX, oldY, maxX, maxY);
6353 final int maxY = mScrollingLayerRect.bottom;
6356 final int resultY = clampBetween(maxY, 0,
6369 rangeY = maxY;
6782 int maxY = computeMaxScrollY();
6798 maxY = mScrollingLayerRect.bottom;
6805 maxY = getMaxTextScrollY();
6817 if ((maxX == 0 && vy == 0) || (maxY
[all...]
/frameworks/base/services/input/
H A DPointerController.cpp167 float minX, minY, maxX, maxY; local
168 if (getBoundsLocked(&minX, &minY, &maxX, &maxY)) {
178 } else if (y >= maxY) {
179 mLocked.pointerY = maxY;
325 float minX, minY, maxX, maxY; local
326 if (getBoundsLocked(&minX, &minY, &maxX, &maxY)) {
328 mLocked.pointerY = (minY + maxY) * 0.5f;
H A DInputReader.cpp2248 float minX, minY, maxX, maxY; local
2249 if (mPointerController->getBounds(&minX, &minY, &maxX, &maxY)) {
2251 info->addMotionRange(AMOTION_EVENT_AXIS_Y, mSource, minY, maxY, 0.0f, 0.0f);
/frameworks/base/core/java/android/widget/
H A DOverScroller.java388 * @param maxY Minimum valid Y value
392 public boolean springBack(int startX, int startY, int minX, int maxX, int minY, int maxY) { argument
397 final boolean spingbackY = mScrollerY.springback(startY, minY, maxY);
402 int minX, int maxX, int minY, int maxY) {
403 fling(startX, startY, velocityX, velocityY, minX, maxX, minY, maxY, 0, 0);
425 * @param maxY Maximum Y value. The scroller will not scroll past this point
426 * unless overY > 0. If overfling is allowed, it will use maxY as
434 int minX, int maxX, int minY, int maxY, int overX, int overY) {
448 mScrollerY.fling(startY, velocityY, minY, maxY, overY);
401 fling(int startX, int startY, int velocityX, int velocityY, int minX, int maxX, int minY, int maxY) argument
433 fling(int startX, int startY, int velocityX, int velocityY, int minX, int maxX, int minY, int maxY, int overX, int overY) argument
H A DScroller.java428 * @param maxY Maximum Y value. The scroller will not scroll past this
432 int minX, int maxX, int minY, int maxY) {
473 mMaxY = maxY;
431 fling(int startX, int startY, int velocityX, int velocityY, int minX, int maxX, int minY, int maxY) argument
H A DScrollView.java1133 final int maxY = Math.max(0, bottom - height);
1135 dy = Math.max(0, Math.min(scrollY + dy, maxY)) - scrollY;
/frameworks/rs/
H A DrsScriptC_LibGL.cpp186 float *maxX, float *maxY, float *maxZ) {
193 *maxY = sm->mBBoxMax[1];
184 rsrMeshComputeBoundingBox(Context *rsc, Script *sc, Mesh *sm, float *minX, float *minY, float *minZ, float *maxX, float *maxY, float *maxZ) argument
H A DrsRuntime.h67 float *maxX, float *maxY, float *maxZ);
/frameworks/rs/scriptc/
H A Drs_graphics.rsh404 float *maxX, float *maxY, float *maxZ);
/frameworks/support/renderscript/v8/rs_support/scriptc/
H A Drs_graphics.rsh404 float *maxX, float *maxY, float *maxZ);
/frameworks/rs/driver/
H A DrsdRuntimeStubs.cpp324 float *maxX, float *maxY, float *maxZ) {
326 rsrMeshComputeBoundingBox(rsc, sc, m, minX, minY, minZ, maxX, maxY, maxZ);
322 SC_MeshComputeBoundingBox(Mesh *m, float *minX, float *minY, float *minZ, float *maxX, float *maxY, float *maxZ) argument
/frameworks/base/services/input/tests/
H A DInputReader_test.cpp63 void setBounds(float minX, float minY, float maxX, float maxY) { argument
68 mMaxY = maxY;

Completed in 1739 milliseconds