Searched refs:maxY (Results 1 - 13 of 13) 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.java3312 int maxY = computeMaxScrollY();
3319 if (scrollY < 0 || scrollY > maxY) {
3329 mOverScrollGlow.pullGlow(getScrollX(), getScrollY(), oldX, oldY, maxX, maxY);
6233 final int maxY = mScrollingLayerRect.bottom;
6237 Math.min(mScrollingLayerRect.top + contentY, maxY));
6249 rangeY = maxY;
6653 int maxY = computeMaxScrollY();
6669 maxY = mScrollingLayerRect.bottom;
6676 maxY = getMaxTextScrollY();
6688 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;
317 float minX, minY, maxX, maxY; local
318 if (getBoundsLocked(&minX, &minY, &maxX, &maxY)) {
320 mLocked.pointerY = (minY + maxY) * 0.5f;
H A DInputReader.cpp2242 float minX, minY, maxX, maxY; local
2243 if (mPointerController->getBounds(&minX, &minY, &maxX, &maxY)) {
2245 info->addMotionRange(AMOTION_EVENT_AXIS_Y, mSource, minY, maxY, 0.0f, 0.0f);
/frameworks/base/core/java/android/widget/
H A DOverScroller.java390 * @param maxY Minimum valid Y value
394 public boolean springBack(int startX, int startY, int minX, int maxX, int minY, int maxY) { argument
399 final boolean spingbackY = mScrollerY.springback(startY, minY, maxY);
404 int minX, int maxX, int minY, int maxY) {
405 fling(startX, startY, velocityX, velocityY, minX, maxX, minY, maxY, 0, 0);
427 * @param maxY Maximum Y value. The scroller will not scroll past this point
428 * unless overY > 0. If overfling is allowed, it will use maxY as
436 int minX, int maxX, int minY, int maxY, int overX, int overY) {
450 mScrollerY.fling(startY, velocityY, minY, maxY, overY);
403 fling(int startX, int startY, int velocityX, int velocityY, int minX, int maxX, int minY, int maxY) argument
435 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.java364 * @param maxY Maximum Y value. The scroller will not scroll past this
368 int minX, int maxX, int minY, int maxY) {
410 mMaxY = maxY;
367 fling(int startX, int startY, int velocityX, int velocityY, int minX, int maxX, int minY, int maxY) argument
H A DScrollView.java1112 final int maxY = Math.max(0, bottom - height);
1114 dy = Math.max(0, Math.min(scrollY + dy, maxY)) - scrollY;
/frameworks/rs/
H A DrsScriptC_LibGL.cpp252 float *maxX, float *maxY, float *maxZ) {
259 *maxY = sm->mBBoxMax[1];
250 rsrMeshComputeBoundingBox(Context *rsc, Script *sc, Mesh *sm, float *minX, float *minY, float *minZ, float *maxX, float *maxY, float *maxZ) argument
H A DrsRuntime.h80 float *maxX, float *maxY, float *maxZ);
/frameworks/rs/scriptc/
H A Drs_graphics.rsh404 float *maxX, float *maxY, float *maxZ);
/frameworks/rs/driver/
H A DrsdRuntimeStubs.cpp254 float *maxX, float *maxY, float *maxZ) {
256 rsrMeshComputeBoundingBox(rsc, sc, m, minX, minY, minZ, maxX, maxY, maxZ);
252 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 194 milliseconds