Searched refs:rawX (Results 1 - 4 of 4) sorted by relevance

/frameworks/base/core/java/android/widget/
H A DZoomButtonsController.java623 * @param rawX The raw X.
627 private View findViewForTouch(int rawX, int rawY) { argument
629 int containerCoordsX = rawX - mContainerRawLocation[0];
H A DTextView.java10657 final float rawX = ev.getRawX();
10673 final float newPosX = rawX - mTouchToWindowOffsetX + mHotspotX;
/frameworks/base/services/input/tests/
H A DInputReader_test.cpp2415 float toDisplayX(int32_t rawX);
2470 float TouchInputMapperTest::toDisplayX(int32_t rawX) { argument
2471 return float(rawX - RAW_X_MIN) * DISPLAY_WIDTH / (RAW_X_MAX - RAW_X_MIN + 1);
3121 int32_t rawX = 100; local
3129 float x = toDisplayX(rawX);
3143 processDown(mapper, rawX, rawY);
4374 int32_t rawX = 100; local
4385 float x = toDisplayX(rawX);
4396 processPosition(mapper, rawX, rawY);
4425 int32_t rawX local
4468 int32_t rawX = 100; local
4518 int32_t rawX = 100; local
4551 int32_t rawX = 100; local
[all...]
/frameworks/base/libs/ui/
H A DInput.cpp551 // rawX and rawY. So we apply the transformation to the first point
552 // then derive an appropriate new X/Y offset that will preserve rawX and rawY.
554 float rawX = getRawX(0); local
556 matrix->mapXY(SkFloatToScalar(rawX + oldXOffset), SkFloatToScalar(rawY + oldYOffset),
560 float newXOffset = newX - rawX;

Completed in 146 milliseconds