Searched refs:pressure (Results 1 - 15 of 15) sorted by relevance

/frameworks/base/tests/RenderScriptTests/Fountain/src/com/example/android/rs/fountain/
H A DFountainRS.java56 public void newTouchPosition(float x, float y, float pressure, int id) { argument
60 int rate = (int)(pressure * pressure * 500.f);
/frameworks/base/tests/RenderScriptTests/Fountain_v11/src/com/android/fountain/
H A DFountainRS.java56 public void newTouchPosition(float x, float y, float pressure, int id) { argument
60 int rate = (int)(pressure * pressure * 500.f);
/frameworks/base/tests/RenderScriptTests/FountainFbo/src/com/example/android/rs/fountainfbo/
H A DFountainFboRS.java82 public void newTouchPosition(float x, float y, float pressure, int id) { argument
86 int rate = (int)(pressure * pressure * 500.f);
/frameworks/base/tests/RenderScriptTests/Balls/src/com/example/android/rs/balls/
H A DBallsRS.java135 public void newTouchPosition(float x, float y, float pressure, int id) { argument
136 mPhysicsScript.invoke_touch(x, y, pressure, id);
/frameworks/native/include/android/
H A Dsensor.h124 float pressure; member in union:ASensorEvent::__anon1342
/frameworks/base/core/java/android/view/
H A DMotionEvent.java39 * information about the pressure, size and orientation of the contact area.
477 * <li>For a touch screen or touch pad, reports the approximate pressure applied to the surface
479 * 0 (no pressure at all) to 1 (normal pressure), although values higher than 1
490 * @see MotionEvent.PointerCoords#pressure
1502 * @param pressure The current pressure of this event. The pressure generally
1503 * ranges from 0 (no pressure at all) to 1 (normal pressure), howeve
1520 obtain(long downTime, long eventTime, int action, float x, float y, float pressure, float size, int metaState, float xPrecision, float yPrecision, int deviceId, int edgeFlags) argument
1580 obtain(long downTime, long eventTime, int action, int pointerCount, float x, float y, float pressure, float size, int metaState, float xPrecision, float yPrecision, int deviceId, int edgeFlags) argument
2733 addBatch(long eventTime, float x, float y, float pressure, float size, int metaState) argument
3223 public float pressure; field in class:MotionEvent.PointerCoords
[all...]
/frameworks/base/cmds/input/src/com/android/commands/input/
H A DInput.java188 * Sends a simple zero-pressure move event.
213 * @param pressure pressure of event
215 private void injectMotionEvent(int inputSource, int action, long when, float x, float y, float pressure) { argument
222 MotionEvent event = MotionEvent.obtain(when, when, action, x, y, pressure, DEFAULT_SIZE,
/frameworks/base/tests/RenderScriptTests/tests_v11/src/com/android/rs/test/
H A DRSTestCore.java182 public void newTouchPosition(float x, float y, float pressure, int id) { argument
/frameworks/base/tests/RenderScriptTests/tests_v14/src/com/android/rs/test/
H A DRSTestCore.java186 public void newTouchPosition(float x, float y, float pressure, int id) { argument
/frameworks/base/core/java/com/android/internal/widget/
H A DPointerLocationView.java257 canvas.drawRect(itemW * 5, 0, (itemW * 5) + (ps.mCoords.pressure * itemW) - 1,
260 .append("Prs: ").append(ps.mCoords.pressure, 2)
343 int pressureLevel = (int)(ps.mCoords.pressure * 255);
472 .append(") Pressure=").append(coords.pressure, 3)
/frameworks/base/core/jni/
H A Dandroid_view_MotionEvent.cpp50 jfieldID pressure; member in struct:android::__anon993
200 env->GetFloatField(pointerCoordsObj, gPointerCoordsClassInfo.pressure));
263 env->SetFloatField(outPointerCoordsObj, gPointerCoordsClassInfo.pressure,
877 GET_FIELD_ID(gPointerCoordsClassInfo.pressure, clazz,
878 "pressure", "F");
/frameworks/base/tests/RenderScriptTests/tests/src/com/android/rs/test/
H A DRSTestCore.java211 public void newTouchPosition(float x, float y, float pressure, int id) { argument
/frameworks/base/services/input/
H A DInputReader.cpp1398 pressure.clear();
2585 info->addMotionRange(mOrientedRanges.pressure);
2654 dump.appendFormat(INDENT4 "[%d]: id=%d, x=%d, y=%d, pressure=%d, "
2658 pointer.id, pointer.x, pointer.y, pointer.pressure,
2670 dump.appendFormat(INDENT4 "[%d]: id=%d, x=%0.3f, y=%0.3f, pressure=%0.3f, "
2857 dumpRawAbsoluteAxisInfo(dump, mRawPointerAxes.pressure, "Pressure");
3089 } else if (mRawPointerAxes.pressure.valid
3090 && mRawPointerAxes.pressure.maxValue != 0) {
3091 mPressureScale = 1.0f / mRawPointerAxes.pressure.maxValue;
3095 mOrientedRanges.pressure
4108 float pressure; local
[all...]
H A DInputReader.h713 RawAbsoluteAxisInfo pressure; member in struct:android::RawPointerAxes
736 int32_t pressure; member in struct:android::RawPointerData::Pointer
1375 InputDeviceInfo::MotionRange pressure; member in struct:android::TouchInputMapper::OrientedRanges
/frameworks/base/services/input/tests/
H A DInputReader_test.cpp1438 float x, float y, float pressure, float size,
1443 ASSERT_NEAR(pressure, coords.getAxisValue(AMOTION_EVENT_AXIS_PRESSURE), EPSILON);
2551 void processPressure(SingleTouchInputMapper* mapper, int32_t pressure);
2606 SingleTouchInputMapper* mapper, int32_t pressure) {
2607 process(mapper, ARBITRARY_TIME, DEVICE_ID, EV_ABS, ABS_PRESSURE, pressure);
3193 float pressure = float(rawPressure) / RAW_PRESSURE_MAX; local
3215 x, y, pressure, size, tool, tool, tool, tool, orientation, distance));
3527 // initially hovering because BTN_TOUCH not sent yet, pressure defaults to 0
3549 // down when BTN_TOUCH is pressed, pressure defaults to 1
3599 // initially hovering because pressure i
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
2605 processPressure( SingleTouchInputMapper* mapper, int32_t pressure) argument
3765 processPressure( MultiTouchInputMapper* mapper, int32_t pressure) argument
4449 float pressure = float(rawPressure) / RAW_PRESSURE_MAX; local
4619 float pressure = float(rawPressure) * 0.01f; local
[all...]

Completed in 5733 milliseconds