Searched defs:touchMajor (Results 1 - 5 of 5) sorted by relevance

/frameworks/base/core/jni/
H A Dandroid_view_MotionEvent.cpp54 jfieldID touchMajor; member in struct:android::__anon1132
206 env->GetFloatField(pointerCoordsObj, gPointerCoordsClassInfo.touchMajor));
268 env->SetFloatField(outPointerCoordsObj, gPointerCoordsClassInfo.touchMajor,
892 gPointerCoordsClassInfo.touchMajor = GetFieldIDOrDie(env, clazz, "touchMajor", "F");
/frameworks/base/core/java/android/view/
H A DMotionEvent.java618 * @see MotionEvent.PointerCoords#touchMajor
3529 public float touchMajor; field in class:MotionEvent.PointerCoords
3589 touchMajor = 0;
3619 touchMajor = other.touchMajor;
3646 return touchMajor;
3694 touchMajor = value;
/frameworks/native/services/inputflinger/
H A DInputReader.cpp1581 touchMajor.clear();
2986 info->addMotionRange(mOrientedRanges.touchMajor);
3064 "touchMajor=%d, touchMinor=%d, toolMajor=%d, toolMinor=%d, "
3068 pointer.touchMajor, pointer.touchMinor,
3082 "touchMajor=%0.3f, touchMinor=%0.3f, toolMajor=%0.3f, toolMinor=%0.3f, "
3329 dumpRawAbsoluteAxisInfo(dump, mRawPointerAxes.touchMajor, "TouchMajor");
3533 if (mRawPointerAxes.touchMajor.valid
3534 && mRawPointerAxes.touchMajor.maxValue != 0) {
3535 mSizeScale = 1.0f / mRawPointerAxes.touchMajor.maxValue;
3547 mOrientedRanges.touchMajor
4806 float touchMajor, touchMinor, toolMajor, toolMinor, size; local
[all...]
H A DInputReader.h748 RawAbsoluteAxisInfo touchMajor; member in struct:android::RawPointerAxes
771 int32_t touchMajor; member in struct:android::RawPointerData::Pointer
1540 InputDeviceInfo::MotionRange touchMajor; member in struct:android::TouchInputMapper::OrientedRanges
/frameworks/native/services/inputflinger/tests/
H A DInputReader_test.cpp1502 float touchMajor, float touchMinor, float toolMajor, float toolMinor,
1508 ASSERT_NEAR(touchMajor, coords.getAxisValue(AMOTION_EVENT_AXIS_TOUCH_MAJOR), 1);
4243 void processTouchMajor(MultiTouchInputMapper* mapper, int32_t touchMajor);
4315 MultiTouchInputMapper* mapper, int32_t touchMajor) {
4316 process(mapper, ARBITRARY_TIME, DEVICE_ID, EV_ABS, ABS_MT_TOUCH_MAJOR, touchMajor);
5027 float touchMajor = float(rawTouchMajor) * GEOMETRIC_SCALE; local
5048 x, y, pressure, size, touchMajor, touchMinor, toolMajor, toolMinor,
5073 float touchMajor = float(rawTouchMajor) * GEOMETRIC_SCALE; local
5087 x, y, 1.0f, size, touchMajor, touchMinor, toolMajor, toolMinor, 0, 0));
1500 assertPointerCoords(const PointerCoords& coords, float x, float y, float pressure, float size, float touchMajor, float touchMinor, float toolMajor, float toolMinor, float orientation, float distance) argument
4314 processTouchMajor( MultiTouchInputMapper* mapper, int32_t touchMajor) argument

Completed in 120 milliseconds