/frameworks/native/services/inputflinger/reader/mapper/ |
D | TouchInputMapper.cpp | 172 info.addMotionRange(*mOrientedRanges.touchMinor); in populateDeviceInfo() 238 pointer.touchMajor, pointer.touchMinor, pointer.toolMajor, in dump() 511 dumpRawAbsoluteAxisInfo(dump, mRawPointerAxes.touchMinor, "TouchMinor"); in dumpRawPointerAxes() 627 mOrientedRanges.touchMinor = mOrientedRanges.touchMajor; in initializeSizeRanges() 628 mOrientedRanges.touchMinor->axis = AMOTION_EVENT_AXIS_TOUCH_MINOR; in initializeSizeRanges() 629 if (mRawPointerAxes.touchMinor.valid) { in initializeSizeRanges() 630 mRawPointerAxes.touchMinor.resolution = in initializeSizeRanges() 631 clampResolution("touchMinor", mRawPointerAxes.touchMinor.resolution); in initializeSizeRanges() 632 mOrientedRanges.touchMinor->resolution = mRawPointerAxes.touchMinor.resolution; in initializeSizeRanges() 660 mOrientedRanges.touchMinor->resolution *= mGeometricScale; in initializeSizeRanges() [all …]
|
D | MultiTouchInputMapper.cpp | 103 outPointer.touchMinor = inSlot.getTouchMinor(); in syncTouch() 195 getAbsoluteAxisInfo(ABS_MT_TOUCH_MINOR, &mRawPointerAxes.touchMinor); in configureRawPointerAxes()
|
D | SingleTouchInputMapper.cpp | 57 outPointer.touchMinor = 0; in syncTouch()
|
D | TouchInputMapper.h | 66 RawAbsoluteAxisInfo touchMinor{}; 93 int32_t touchMinor{}; 474 std::optional<InputDeviceInfo::MotionRange> touchMinor; member 488 touchMinor = std::nullopt; in clear()
|
/frameworks/base/packages/SystemUI/multivalentTests/src/com/android/systemui/biometrics/ |
D | UdfpsControllerTest.java | 610 pc.touchMinor = minor; in obtainMotionEvent() 648 final float touchMinor = 10f; in onTouch_propagatesTouchInNativeOrientationAndResolutionParameterized() local 655 final float expectedMinor = touchMinor / scaleFactor; in onTouch_propagatesTouchInNativeOrientationAndResolutionParameterized() 663 displayHeight, touchMinor, touchMajor, orientation, 0L, 0L); in onTouch_propagatesTouchInNativeOrientationAndResolutionParameterized() 680 MotionEvent event = obtainMotionEvent(ACTION_DOWN, displayWidth, displayHeight, touchMinor, in onTouch_propagatesTouchInNativeOrientationAndResolutionParameterized() 696 event = obtainMotionEvent(ACTION_DOWN, displayHeight, 0, touchMinor, touchMajor); in onTouch_propagatesTouchInNativeOrientationAndResolutionParameterized() 711 event = obtainMotionEvent(ACTION_DOWN, 0, displayWidth, touchMinor, touchMajor); in onTouch_propagatesTouchInNativeOrientationAndResolutionParameterized() 727 event = obtainMotionEvent(ACTION_DOWN, displayWidth, displayHeight, touchMinor, touchMajor); in onTouch_propagatesTouchInNativeOrientationAndResolutionParameterized()
|
/frameworks/native/services/inputflinger/tests/ |
D | InputMapperTest.cpp | 239 float touchMajor, float touchMinor, float toolMajor, float toolMinor, in assertPointerCoords() argument 246 ASSERT_NEAR(touchMinor, coords.getAxisValue(AMOTION_EVENT_AXIS_TOUCH_MINOR), scaledAxisEpsilon); in assertPointerCoords()
|
D | InputMapperTest.h | 147 float touchMajor, float touchMinor, float toolMajor, float toolMinor,
|
D | CapturedTouchpadEventConverter_test.cpp | 161 const InputDeviceInfo::MotionRange* touchMinor = in TEST_F() local 163 ASSERT_NE(nullptr, touchMinor); in TEST_F() 164 EXPECT_NEAR(0, touchMinor->min, EPSILON); in TEST_F() 165 EXPECT_NEAR(1000, touchMinor->max, EPSILON); in TEST_F() 166 EXPECT_NEAR(30, touchMinor->resolution, EPSILON); in TEST_F()
|
D | InputReader_test.cpp | 7082 void processTouchMinor(MultiTouchInputMapper& mapper, int32_t touchMinor); 7156 int32_t touchMinor) { in processTouchMinor() argument 7157 process(mapper, ARBITRARY_TIME, READ_TIME, EV_ABS, ABS_MT_TOUCH_MINOR, touchMinor); in processTouchMinor() 7898 float touchMinor = float(rawTouchMinor) * GEOMETRIC_SCALE; in TEST_F() local 7918 x, y, pressure, size, touchMajor, touchMinor, toolMajor, toolMinor, in TEST_F() 7944 float touchMinor = float(rawTouchMinor) * GEOMETRIC_SCALE; in TEST_F() local 7957 x, y, 1.0f, size, touchMajor, touchMinor, toolMajor, toolMinor, 0, 0)); in TEST_F()
|
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/biometrics/udfps/ |
D | SinglePointerTouchProcessorTest.kt | 621 pc.touchMinor = NATIVE_MINOR * scaleFactor in genPositiveTestCases() 683 pc.touchMinor = minor in obtainMotionEvent() 719 minor: Float = this.touchMinor, in copy()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/biometrics/ |
D | UdfpsShell.kt | 208 pc.touchMinor = minor in obtainMotionEvent()
|
/frameworks/base/core/java/android/view/ |
D | MotionEvent.java | 4353 public float touchMinor; field in MotionEvent.PointerCoords 4449 touchMinor = 0; in clear() 4482 touchMinor = other.touchMinor; in copyFrom() 4513 return touchMinor; in getAxisValue() 4566 touchMinor = value; in setAxisValue()
|
/frameworks/base/core/jni/ |
D | android_view_MotionEvent.cpp | 57 jfieldID touchMinor; member 219 env->GetFloatField(pointerCoordsObj, gPointerCoordsClassInfo.touchMinor)); in pointerCoordsToNative() 441 {AMOTION_EVENT_AXIS_TOUCH_MINOR, gPointerCoordsClassInfo.touchMinor}, in android_view_MotionEvent_nativeGetPointerCoords() 943 gPointerCoordsClassInfo.touchMinor = GetFieldIDOrDie(env, clazz, "touchMinor", "F"); in register_android_view_MotionEvent()
|
/frameworks/base/core/java/com/android/internal/widget/ |
D | PointerLocationView.java | 363 ps.mCoords.touchMinor, ps.mCoords.orientation, mPaint); in onDraw() 565 .append(" TouchMinor=").append(coords.touchMinor, 3) in logCoords()
|
/frameworks/base/tools/aapt2/integration-tests/CommandTests/ |
D | android-33.jar | AndroidManifest.xml
META-INF/
META-INF/MANIFEST.MF
NOTICES/
NOTICES/libcore ... |
/frameworks/opt/setupwizard/tools/docs/ |
D | android-22.txt | 33067 field public float touchMinor;
|
/frameworks/base/core/api/ |
D | current.txt | 51979 field public float touchMinor;
|