Searched defs:rawY (Results 1 - 3 of 3) sorted by relevance

/frameworks/base/core/java/android/widget/
H A DZoomButtonsController.java610 * @param rawY The raw Y.
613 private View findViewForTouch(int rawX, int rawY) { argument
616 int containerCoordsY = rawY - mContainerRawLocation[1];
/frameworks/native/libs/input/
H A DInput.cpp456 // rawX and rawY. So we apply the transformation to the first point
458 // and rawY for that point.
463 float rawY = getRawY(0); local
464 transformPoint(matrix, rawX + oldXOffset, rawY + oldYOffset, &newX, &newY);
466 mYOffset = newY - rawY;
/frameworks/base/services/input/tests/
H A DInputReader_test.cpp2488 float toDisplayY(int32_t rawY);
2546 float TouchInputMapperTest::toDisplayY(int32_t rawY) { argument
2547 return float(rawY - RAW_Y_MIN) * DISPLAY_HEIGHT / (RAW_Y_MAX - RAW_Y_MIN + 1);
3194 int32_t rawY = 200; local
3202 float y = toDisplayY(rawY);
3215 processDown(mapper, rawX, rawY);
4447 int32_t rawY = 200; local
4458 float y = toDisplayY(rawY);
4468 processPosition(mapper, rawX, rawY);
4498 int32_t rawY local
4541 int32_t rawY = 200; local
4591 int32_t rawY = 200; local
4624 int32_t rawY = 200; local
[all...]

Completed in 191 milliseconds