/frameworks/base/services/input/ |
H A D | InputReader.cpp | 1400 touchMajor.clear(); 2593 info->addMotionRange(mOrientedRanges.touchMajor); 2670 "touchMajor=%d, touchMinor=%d, toolMajor=%d, toolMinor=%d, " 2674 pointer.touchMajor, pointer.touchMinor, 2686 "touchMajor=%0.3f, touchMinor=%0.3f, toolMajor=%0.3f, toolMinor=%0.3f, " 2878 dumpRawAbsoluteAxisInfo(dump, mRawPointerAxes.touchMajor, "TouchMajor"); 3061 if (mRawPointerAxes.touchMajor.valid 3062 && mRawPointerAxes.touchMajor.maxValue != 0) { 3063 mSizeScale = 1.0f / mRawPointerAxes.touchMajor.maxValue; 3075 mOrientedRanges.touchMajor 4095 float touchMajor, touchMinor, toolMajor, toolMinor, size; local [all...] |
H A D | InputReader.h | 714 RawAbsoluteAxisInfo touchMajor; member in struct:android::RawPointerAxes 737 int32_t touchMajor; member in struct:android::RawPointerData::Pointer 1395 InputDeviceInfo::MotionRange touchMajor; member in struct:android::TouchInputMapper::OrientedRanges
|
/frameworks/base/core/java/android/view/ |
H A D | MotionEvent.java | 531 * @see MotionEvent.PointerCoords#touchMajor 3244 public float touchMajor; field in class:MotionEvent.PointerCoords 3304 touchMajor = 0; 3334 touchMajor = other.touchMajor; 3361 return touchMajor; 3409 touchMajor = value;
|
/frameworks/base/core/jni/ |
H A D | android_view_MotionEvent.cpp | 52 jfieldID touchMajor; member in struct:android::__anon1020 204 env->GetFloatField(pointerCoordsObj, gPointerCoordsClassInfo.touchMajor)); 267 env->SetFloatField(outPointerCoordsObj, gPointerCoordsClassInfo.touchMajor, 881 GET_FIELD_ID(gPointerCoordsClassInfo.touchMajor, clazz, 882 "touchMajor", "F");
|
/frameworks/base/core/java/com/android/internal/widget/ |
H A D | PointerLocationView.java | 356 drawOval(canvas, ps.mCoords.x, ps.mCoords.y, ps.mCoords.touchMajor, 487 .append(" TouchMajor=").append(coords.touchMajor, 3)
|
/frameworks/base/services/input/tests/ |
H A D | InputReader_test.cpp | 1439 float touchMajor, float touchMinor, float toolMajor, float toolMinor, 1445 ASSERT_NEAR(touchMajor, coords.getAxisValue(AMOTION_EVENT_AXIS_TOUCH_MAJOR), 1); 3669 void processTouchMajor(MultiTouchInputMapper* mapper, int32_t touchMajor); 3741 MultiTouchInputMapper* mapper, int32_t touchMajor) { 3742 process(mapper, ARBITRARY_TIME, DEVICE_ID, EV_ABS, ABS_MT_TOUCH_MAJOR, touchMajor); 4453 float touchMajor = float(rawTouchMajor) * GEOMETRIC_SCALE; local 4474 x, y, pressure, size, touchMajor, touchMinor, toolMajor, toolMinor, 4499 float touchMajor = float(rawTouchMajor) * GEOMETRIC_SCALE; local 4513 x, y, 1.0f, size, touchMajor, touchMinor, toolMajor, toolMinor, 0, 0)); 1437 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 3740 processTouchMajor( MultiTouchInputMapper* mapper, int32_t touchMajor) argument
|