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.cpp390 // rawX and rawY. So we apply the transformation to the first point
392 // and rawY for that point.
397 float rawY = getRawY(0); local
398 transformPoint(matrix, rawX + oldXOffset, rawY + oldYOffset, &newX, &newY);
400 mYOffset = newY - rawY;
/frameworks/native/services/inputflinger/tests/
H A DInputReader_test.cpp2507 float toCookedX(float rawX, float rawY);
2508 float toCookedY(float rawX, float rawY);
2510 float toDisplayY(int32_t rawY);
2570 float TouchInputMapperTest::toCookedX(float rawX, float rawY) { argument
2571 AFFINE_TRANSFORM.applyTo(rawX, rawY);
2575 float TouchInputMapperTest::toCookedY(float rawX, float rawY) { argument
2576 AFFINE_TRANSFORM.applyTo(rawX, rawY);
2577 return rawY;
2584 float TouchInputMapperTest::toDisplayY(int32_t rawY) { argument
2585 return float(rawY
3232 int32_t rawY = 200; local
3277 int32_t rawY = 200; local
4509 int32_t rawY = 200; local
4560 int32_t rawY = 200; local
4603 int32_t rawY = 200; local
4653 int32_t rawY = 200; local
4686 int32_t rawY = 200; local
[all...]

Completed in 138 milliseconds