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

/frameworks/base/core/java/android/widget/
H A DZoomButtonsController.java608 * @param rawX The raw X.
612 private View findViewForTouch(int rawX, int rawY) { argument
614 int containerCoordsX = rawX - mContainerRawLocation[0];
/frameworks/native/libs/input/
H A DInput.cpp387 // rawX and rawY. So we apply the transformation to the first point
388 // then derive an appropriate new X/Y offset that will preserve rawX
393 float rawX = getRawX(0); local
395 transformPoint(matrix, rawX + oldXOffset, rawY + oldYOffset, &newX, &newY);
396 mXOffset = newX - rawX;
/frameworks/native/services/inputflinger/tests/
H A DInputReader_test.cpp2499 float toCookedX(float rawX, float rawY);
2500 float toCookedY(float rawX, float rawY);
2501 float toDisplayX(int32_t rawX);
2562 float TouchInputMapperTest::toCookedX(float rawX, float rawY) { argument
2563 AFFINE_TRANSFORM.applyTo(rawX, rawY);
2564 return rawX;
2567 float TouchInputMapperTest::toCookedY(float rawX, float rawY) { argument
2568 AFFINE_TRANSFORM.applyTo(rawX, rawY);
2572 float TouchInputMapperTest::toDisplayX(int32_t rawX) { argument
2573 return float(rawX
3223 int32_t rawX = 100; local
3268 int32_t rawX = 100; local
4500 int32_t rawX = 100; local
4551 int32_t rawX = 100; local
4594 int32_t rawX = 100; local
4644 int32_t rawX = 100; local
4677 int32_t rawX = 100; local
[all...]

Completed in 102 milliseconds