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

/frameworks/base/core/java/android/widget/
H A DZoomButtonsController.java609 * @param rawY The raw Y.
612 private View findViewForTouch(int rawX, int rawY) { argument
615 int containerCoordsY = rawY - mContainerRawLocation[1];
/frameworks/native/libs/input/
H A DInput.cpp387 // rawX and rawY. So we apply the transformation to the first point
389 // and rawY for that point.
394 float rawY = getRawY(0); local
395 transformPoint(matrix, rawX + oldXOffset, rawY + oldYOffset, &newX, &newY);
397 mYOffset = newY - rawY;
/frameworks/native/services/inputflinger/tests/
H A DInputReader_test.cpp2499 float toCookedX(float rawX, float rawY);
2500 float toCookedY(float rawX, float rawY);
2502 float toDisplayY(int32_t rawY);
2562 float TouchInputMapperTest::toCookedX(float rawX, float rawY) { argument
2563 AFFINE_TRANSFORM.applyTo(rawX, rawY);
2567 float TouchInputMapperTest::toCookedY(float rawX, float rawY) { argument
2568 AFFINE_TRANSFORM.applyTo(rawX, rawY);
2569 return rawY;
2576 float TouchInputMapperTest::toDisplayY(int32_t rawY) { argument
2577 return float(rawY
3224 int32_t rawY = 200; local
3269 int32_t rawY = 200; local
4501 int32_t rawY = 200; local
4552 int32_t rawY = 200; local
4595 int32_t rawY = 200; local
4645 int32_t rawY = 200; local
4678 int32_t rawY = 200; local
[all...]

Completed in 302 milliseconds