Home | History | Annotate | Download | only in input

Lines Matching refs:touchMajor

1402     touchMajor.clear();
2594 info->addMotionRange(mOrientedRanges.touchMajor);
2672 "touchMajor=%d, touchMinor=%d, toolMajor=%d, toolMinor=%d, "
2676 pointer.touchMajor, pointer.touchMinor,
2688 "touchMajor=%0.3f, touchMinor=%0.3f, toolMajor=%0.3f, toolMinor=%0.3f, "
2883 dumpRawAbsoluteAxisInfo(dump, mRawPointerAxes.touchMajor, "TouchMajor");
3064 if (mRawPointerAxes.touchMajor.valid
3065 && mRawPointerAxes.touchMajor.maxValue != 0) {
3066 mSizeScale = 1.0f / mRawPointerAxes.touchMajor.maxValue;
3078 mOrientedRanges.touchMajor.axis = AMOTION_EVENT_AXIS_TOUCH_MAJOR;
3079 mOrientedRanges.touchMajor.source = mSource;
3080 mOrientedRanges.touchMajor.min = 0;
3081 mOrientedRanges.touchMajor.max = diagonalSize;
3082 mOrientedRanges.touchMajor.flat = 0;
3083 mOrientedRanges.touchMajor.fuzz = 0;
3084 mOrientedRanges.touchMajor.resolution = 0;
3086 mOrientedRanges.touchMinor = mOrientedRanges.touchMajor;
3483 if (mRawPointerAxes.touchMajor.valid || mRawPointerAxes.toolMajor.valid) {
4098 float touchMajor, touchMinor, toolMajor, toolMinor, size;
4104 if (mRawPointerAxes.touchMajor.valid && mRawPointerAxes.toolMajor.valid) {
4105 touchMajor = in.touchMajor;
4106 touchMinor = mRawPointerAxes.touchMinor.valid ? in.touchMinor : in.touchMajor;
4110 ? avg(in.touchMajor, in.touchMinor) : in.touchMajor;
4111 } else if (mRawPointerAxes.touchMajor.valid) {
4112 toolMajor = touchMajor = in.touchMajor;
4114 ? in.touchMinor : in.touchMajor;
4116 ? avg(in.touchMajor, in.touchMinor) : in.touchMajor;
4118 touchMajor = toolMajor = in.toolMajor;
4126 touchMajor = 0;
4136 touchMajor /= touchingCount;
4145 touchMajor *= mGeometricScale;
4150 touchMajor = touchMajor > 0 ? sqrtf(touchMajor) : 0;
4151 touchMinor = touchMajor;
4155 touchMinor = touchMajor;
4159 mCalibration.applySizeScaleAndBias(&touchMajor);
4166 touchMajor = 0;
4208 touchMajor *= scale;
4303 out.setAxisValue(AMOTION_EVENT_AXIS_TOUCH_MAJOR, touchMajor);
5961 outPointer.touchMajor = 0;
6042 outPointer.touchMajor = inSlot->getTouchMajor();
6107 getAbsoluteAxisInfo(ABS_MT_TOUCH_MAJOR, &mRawPointerAxes.touchMajor);