Home | History | Annotate | Download | only in inputflinger

Lines Matching full:touchmajor

1530     touchMajor.clear();
2906 info->addMotionRange(mOrientedRanges.touchMajor);
2984 "touchMajor=%d, touchMinor=%d, toolMajor=%d, toolMinor=%d, "
2988 pointer.touchMajor, pointer.touchMinor,
3002 "touchMajor=%0.3f, touchMinor=%0.3f, toolMajor=%0.3f, toolMinor=%0.3f, "
3229 dumpRawAbsoluteAxisInfo(dump, mRawPointerAxes.touchMajor, "TouchMajor");
3419 if (mRawPointerAxes.touchMajor.valid
3420 && mRawPointerAxes.touchMajor.maxValue != 0) {
3421 mSizeScale = 1.0f / mRawPointerAxes.touchMajor.maxValue;
3433 mOrientedRanges.touchMajor.axis = AMOTION_EVENT_AXIS_TOUCH_MAJOR;
3434 mOrientedRanges.touchMajor.source = mSource;
3435 mOrientedRanges.touchMajor.min = 0;
3436 mOrientedRanges.touchMajor.max = diagonalSize;
3437 mOrientedRanges.touchMajor.flat = 0;
3438 mOrientedRanges.touchMajor.fuzz = 0;
3439 mOrientedRanges.touchMajor.resolution = 0;
3441 mOrientedRanges.touchMinor = mOrientedRanges.touchMajor;
3843 if (mRawPointerAxes.touchMajor.valid || mRawPointerAxes.toolMajor.valid) {
4692 float touchMajor, touchMinor, toolMajor, toolMinor, size;
4698 if (mRawPointerAxes.touchMajor.valid && mRawPointerAxes.toolMajor.valid) {
4699 touchMajor = in.touchMajor;
4700 touchMinor = mRawPointerAxes.touchMinor.valid ? in.touchMinor : in.touchMajor;
4704 ? avg(in.touchMajor, in.touchMinor) : in.touchMajor;
4705 } else if (mRawPointerAxes.touchMajor.valid) {
4706 toolMajor = touchMajor = in.touchMajor;
4708 ? in.touchMinor : in.touchMajor;
4710 ? avg(in.touchMajor, in.touchMinor) : in.touchMajor;
4712 touchMajor = toolMajor = in.toolMajor;
4720 touchMajor = 0;
4731 touchMajor /= touchingCount;
4740 touchMajor *= mGeometricScale;
4745 touchMajor = touchMajor > 0 ? sqrtf(touchMajor) : 0;
4746 touchMinor = touchMajor;
4750 touchMinor = touchMajor;
4754 mCalibration.applySizeScaleAndBias(&touchMajor);
4761 touchMajor = 0;
4803 touchMajor *= scale;
4904 out.setAxisValue(AMOTION_EVENT_AXIS_TOUCH_MAJOR, touchMajor);
6595 outPointer.touchMajor = 0;
6676 outPointer.touchMajor = inSlot->getTouchMajor();
6740 getAbsoluteAxisInfo(ABS_MT_TOUCH_MAJOR, &mRawPointerAxes.touchMajor);