• Home
  • Raw
  • Download

Lines Matching refs:mXScale

2547         info->addMotionRange(AMOTION_EVENT_AXIS_X, mSource, -1.0f, 1.0f, 0.0f, mXScale, 0.0f);  in populateDeviceInfo()
2563 dump += StringPrintf(INDENT3 "XScale: %0.3f\n", mXScale); in dump()
2600 mXScale = 1.0f; in configure()
2608 mXScale = 1.0f / TRACKBALL_MOVEMENT_THRESHOLD; in configure()
2756 float deltaX = mCursorMotionAccumulator.getRelativeX() * mXScale; in sync()
3143 dump += StringPrintf(INDENT4 "XScale: %0.3f\n", mXScale); in dump()
3666 mXScale = float(mSurfaceWidth) / rawWidth; in configureSurface()
3670 mXPrecision = 1.0f / mXScale; in configureSurface()
3683 mGeometricScale = avg(mXScale, mYScale); in configureSurface()
3868 mOrientedRanges.y.resolution = mRawPointerAxes.x.resolution * mXScale; in configureSurface()
3879 mOrientedRanges.x.resolution = mRawPointerAxes.x.resolution * mXScale; in configureSurface()
5145 y = float(mRawPointerAxes.x.maxValue - xTransformed) * mXScale + mXTranslate; in cookPointerData()
5148 bottom = float(mRawPointerAxes.x.maxValue - rawLeft) * mXScale + mXTranslate; in cookPointerData()
5149 top = float(mRawPointerAxes.x.maxValue - rawRight) * mXScale + mXTranslate; in cookPointerData()
5156 x = float(mRawPointerAxes.x.maxValue - xTransformed) * mXScale; in cookPointerData()
5158 left = float(mRawPointerAxes.x.maxValue - rawRight) * mXScale; in cookPointerData()
5159 right = float(mRawPointerAxes.x.maxValue - rawLeft) * mXScale; in cookPointerData()
5169 y = float(xTransformed - mRawPointerAxes.x.minValue) * mXScale + mXTranslate; in cookPointerData()
5172 bottom = float(rawRight - mRawPointerAxes.x.minValue) * mXScale + mXTranslate; in cookPointerData()
5173 top = float(rawLeft - mRawPointerAxes.x.minValue) * mXScale + mXTranslate; in cookPointerData()
5180 x = float(xTransformed - mRawPointerAxes.x.minValue) * mXScale + mXTranslate; in cookPointerData()
5182 left = float(rawLeft - mRawPointerAxes.x.minValue) * mXScale + mXTranslate; in cookPointerData()
5183 right = float(rawRight - mRawPointerAxes.x.minValue) * mXScale + mXTranslate; in cookPointerData()
6587 const float scaledX = x * mXScale; in isPointInsideSurface()