HomeSort by relevance Sort by last modified time
    Searched refs:pressure (Results 1 - 25 of 43) sorted by null

1 2

  /external/quake/quake/src/WinQuake/
masterMain.cpp 29 float x, float y, float pressure, float size, int deviceId);
48 jfloat x, jfloat y, jfloat pressure, jfloat size, jint deviceId) {
50 action, x, y, pressure, size,
  /development/cmds/monkey/src/com/android/commands/monkey/
MonkeyMotionEvent.java 58 float x, float y, float pressure, float size, int metaState,
66 mPressure = pressure;
MonkeySourceScript.java 263 float pressure = Float.parseFloat(args[5]); local
275 y, pressure, size, metaState, xPrecision, yPrecision, device, edgeFlags);
290 float pressure = 1; local
301 y, pressure, size, metaState, xPrecision, yPrecision, device,
305 y, pressure, size, metaState, xPrecision, yPrecision, device,
  /external/quake/src/com/android/quake/
QuakeLib.java 156 * @param pressure the pressure 0..1, can be more than 1 sometimes
162 float x, float y, float pressure, float size, int deviceId);
  /device/samsung/crespo/alsa-lib/test/
playmidi1.c 322 static void do_pressure(int chan, int pitch, int pressure)
327 printf("%ld: KeyPress (%d) %d %d\n", Mf_currtime, chan, pitch, pressure);
329 snd_seq_ev_set_keypress(&ev, chan, pitch, pressure);
333 static void do_chanpressure(int chan, int pressure)
338 printf("%ld: ChanPress (%d) %d\n", Mf_currtime, chan, pressure);
340 snd_seq_ev_set_chanpress(&ev, chan, pressure);
  /frameworks/base/core/java/android/view/
MotionEvent.java 266 * Offset for the sample's pressure.
467 * @param pressure The current pressure of this event. The pressure generally
468 * ranges from 0 (no pressure at all) to 1 (normal pressure), however
486 float x, float y, float pressure, float size, int metaState,
511 ev.setPointerCoordsAtSampleIndex(0, x, y, pressure, size);
529 * @param pressure The current pressure of this event. The pressure generall
1665 public float pressure; field in class:MotionEvent.PointerCoords
    [all...]
  /cts/tests/tests/view/src/android/view/cts/
MotionEventTest.java 399 float pressure = 0.5f; local
400 mMotionEvent2.addBatch(mEventTime, 5.0f, 5.0f, pressure, 0.0f, 0);
404 assertEquals(pressure, mMotionEvent2.getHistoricalPressure(1), DELTA);
431 float pressure = 1.0f; local
442 mMotionEvent2.addBatch(eventTime, x, y, pressure, size, 0);
455 assertEquals(pressure, mMotionEvent2.getHistoricalPressure(1), DELTA);
468 float pressure = 1.0f; local
475 mMotionEvent2.addBatch(eventTime, x, y, pressure, size, 0);
  /development/ndk/platforms/android-9/include/android/
sensor.h 122 float pressure; member in union:ASensorEvent::__anon1275
  /external/webkit/WebKit/mac/WebView/
WebViewEventHandling.mm 182 eventNumber:0 clickCount:0 pressure:0];
204 eventNumber:0 clickCount:0 pressure:0];
  /frameworks/base/native/include/android/
sensor.h 124 float pressure; member in union:ASensorEvent::__anon9469
  /hardware/libhardware/include/hardware/
sensors.h 224 * Pressure
227 * The pressure sensor value is returned in hectopascal (hPa)
229 * Pressure sensors report events at a constant rate defined by setDelay().
319 /* pressure in hectopascal (hPa) */
320 float pressure; member in union:sensors_event_t::__anon9674
  /frameworks/base/include/ui/
InputReader.h 533 int32_t pressure; member in struct:android::TouchInputMapper::PointerData
544 && pressure == other.pressure
623 // Pressure
664 RawAbsoluteAxisInfo pressure; member in struct:android::TouchInputMapper::RawAxes
714 InputDeviceInfo::MotionRange pressure; member in struct:android::TouchInputMapper::LockedState::OrientedRanges
791 int32_t pressure; member in struct:android::TouchInputMapper::AveragingTouchFilterState::__anon8932::__anon8933
Input.h 155 float pressure; member in struct:android::PointerCoords
293 return getCurrentPointerCoords(pointerIndex).pressure;
343 return getHistoricalPointerCoords(pointerIndex, historicalIndex).pressure;
  /frameworks/base/cmds/input/src/com/android/commands/input/
Input.java 136 float pressure, float size) {
  /frameworks/base/libs/ui/
InputReader.cpp 643 dumpMotionRange(dump, deviceInfo, AINPUT_MOTION_RANGE_PRESSURE, "Pressure");
2360 float pressure; local
2961 int32_t pressure; local
    [all...]
  /development/samples/ApiDemos/src/com/example/android/apis/graphics/
TouchPaint.java 273 private void drawPoint(float x, float y, float pressure, float width) {
275 // + pressure + " width=" + width);
279 int pressureLevel = (int)(pressure * 255);
  /frameworks/base/core/jni/
android_view_MotionEvent.cpp 136 *(destDataSamples++) = srcSamplePointerCoords->pressure;
194 samplePointerCoords[j].pressure = *(srcDataSamples++);
212 samplePointerCoords[j].pressure = *(srcDataSamples++);
  /frameworks/base/core/java/com/android/internal/widget/
PointerLocationView.java 235 canvas.drawRect(itemW * 5, 0, (itemW * 5) + (ps.mCoords.pressure * itemW) - 1,
238 .append("Prs: ").append(ps.mCoords.pressure, 2)
290 int pressureLevel = (int)(ps.mCoords.pressure * 255);
312 .append(") Pressure=").append(coords.pressure, 3)
  /frameworks/base/libs/ui/tests/
InputReader_test.cpp 2657 float pressure = float(rawPressure) \/ RAW_PRESSURE_MAX; local
3205 float pressure = float(rawPressure) \/ RAW_PRESSURE_MAX; local
3249 float pressure = float(rawTouchMajor) \/ RAW_TOUCH_MAX; local
3300 float pressure = float(rawTouchMajor) * 0.01f; local
3351 float pressure = float(rawTouchMajor) * 0.01f; local
    [all...]
InputPublisherAndConsumer_test.cpp 161 samplePointerCoords.editTop().pressure = 0.5 * i + j;
247 EXPECT_EQ(samplePointerCoords[offset].pressure,
273 EXPECT_EQ(samplePointerCoords[offset].pressure, motionEvent->getPressure(i));
  /external/webkit/WebKitTools/DumpRenderTree/mac/
EventSendingController.mm 321 pressure:0.0];
381 pressure:0.0];
439 pressure:0.0];
469 pressure:0.0];
  /external/webkit/WebCore/page/mac/
EventHandlerMac.mm 569 pressure:[initiatingEvent pressure]];
596 pressure:0];
  /bionic/libc/kernel/common/linux/
soundcard.h 777 #define SEQ_KEY_PRESSURE(dev, chn, note, pressure) _CHN_VOICE(dev, MIDI_KEY_PRESSURE, chn, note, pressure)
783 #define SEQ_CHN_PRESSURE(dev, chn, pressure) _CHN_COMMON(dev, MIDI_CHN_PRESSURE, chn, pressure, 0, 0)
  /development/ndk/platforms/android-3/include/linux/
soundcard.h 777 #define SEQ_KEY_PRESSURE(dev, chn, note, pressure) _CHN_VOICE(dev, MIDI_KEY_PRESSURE, chn, note, pressure)
783 #define SEQ_CHN_PRESSURE(dev, chn, pressure) _CHN_COMMON(dev, MIDI_CHN_PRESSURE, chn, pressure, 0, 0)
  /external/kernel-headers/original/linux/
soundcard.h     [all...]

Completed in 572 milliseconds

1 2