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.cpp390 // rawX and rawY. So we apply the transformation to the first point
391 // then derive an appropriate new X/Y offset that will preserve rawX
396 float rawX = getRawX(0); local
398 transformPoint(matrix, rawX + oldXOffset, rawY + oldYOffset, &newX, &newY);
399 mXOffset = newX - rawX;
/frameworks/native/services/inputflinger/tests/
H A DInputReader_test.cpp2507 float toCookedX(float rawX, float rawY);
2508 float toCookedY(float rawX, float rawY);
2509 float toDisplayX(int32_t rawX);
2570 float TouchInputMapperTest::toCookedX(float rawX, float rawY) { argument
2571 AFFINE_TRANSFORM.applyTo(rawX, rawY);
2572 return rawX;
2575 float TouchInputMapperTest::toCookedY(float rawX, float rawY) { argument
2576 AFFINE_TRANSFORM.applyTo(rawX, rawY);
2580 float TouchInputMapperTest::toDisplayX(int32_t rawX) { argument
2581 return float(rawX
3231 int32_t rawX = 100; local
3276 int32_t rawX = 100; local
4508 int32_t rawX = 100; local
4559 int32_t rawX = 100; local
4602 int32_t rawX = 100; local
4652 int32_t rawX = 100; local
4685 int32_t rawX = 100; local
[all...]

Completed in 1122 milliseconds