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/base/libs/androidfw/
H A DInput.cpp444 // rawX and rawY. So we apply the transformation to the first point
445 // then derive an appropriate new X/Y offset that will preserve rawX and rawY.
448 float rawY = getRawY(0); local
449 matrix->mapXY(SkFloatToScalar(rawX + oldXOffset), SkFloatToScalar(rawY + oldYOffset),
454 float newYOffset = newY - rawY;
/frameworks/base/services/input/tests/
H A DInputReader_test.cpp2478 float toDisplayY(int32_t rawY);
2536 float TouchInputMapperTest::toDisplayY(int32_t rawY) { argument
2537 return float(rawY - RAW_Y_MIN) * DISPLAY_HEIGHT / (RAW_Y_MAX - RAW_Y_MIN + 1);
3184 int32_t rawY = 200; local
3192 float y = toDisplayY(rawY);
3205 processDown(mapper, rawX, rawY);
4437 int32_t rawY = 200; local
4448 float y = toDisplayY(rawY);
4458 processPosition(mapper, rawX, rawY);
4488 int32_t rawY local
4531 int32_t rawY = 200; local
4581 int32_t rawY = 200; local
4614 int32_t rawY = 200; local
[all...]

Completed in 1669 milliseconds