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

/frameworks/base/core/java/android/widget/
H A DZoomButtonsController.java624 * @param rawY The raw Y.
627 private View findViewForTouch(int rawX, int rawY) { argument
630 int containerCoordsY = rawY - mContainerRawLocation[1];
/frameworks/base/libs/ui/
H A DInput.cpp551 // rawX and rawY. So we apply the transformation to the first point
552 // then derive an appropriate new X/Y offset that will preserve rawX and rawY.
555 float rawY = getRawY(0); local
556 matrix->mapXY(SkFloatToScalar(rawX + oldXOffset), SkFloatToScalar(rawY + oldYOffset),
561 float newYOffset = newY - rawY;
/frameworks/base/services/input/tests/
H A DInputReader_test.cpp2416 float toDisplayY(int32_t rawY);
2474 float TouchInputMapperTest::toDisplayY(int32_t rawY) { argument
2475 return float(rawY - RAW_Y_MIN) * DISPLAY_HEIGHT / (RAW_Y_MAX - RAW_Y_MIN + 1);
3122 int32_t rawY = 200; local
3130 float y = toDisplayY(rawY);
3143 processDown(mapper, rawX, rawY);
4375 int32_t rawY = 200; local
4386 float y = toDisplayY(rawY);
4396 processPosition(mapper, rawX, rawY);
4426 int32_t rawY local
4469 int32_t rawY = 200; local
4519 int32_t rawY = 200; local
4552 int32_t rawY = 200; local
[all...]

Completed in 73 milliseconds