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

1 2 3

  /prebuilts/misc/darwin-x86_64/sdl2/include/SDL2/
SDL_touch.h 49 float pressure; member in struct:SDL_Finger
SDL_events.h 397 float pressure; /**< Normalized in the range 0...1 */ member in struct:SDL_TouchFingerEvent
  /prebuilts/misc/windows/sdl2/i686-w64-mingw32/include/SDL2/
SDL_touch.h 49 float pressure; member in struct:SDL_Finger
SDL_events.h 397 float pressure; /**< Normalized in the range 0...1 */ member in struct:SDL_TouchFingerEvent
  /prebuilts/misc/windows/sdl2/include/
SDL_touch.h 49 float pressure; member in struct:SDL_Finger
  /prebuilts/misc/windows/sdl2/x86_64-w64-mingw32/include/SDL2/
SDL_touch.h 49 float pressure; member in struct:SDL_Finger
  /hardware/invensense/6515/libsensors_iio/
PressureSensor.IIO.secondary.cpp 35 #pragma message("HAL:build pressure sensor on Invensense MPU secondary bus")
58 LOGE("Error Instantiating Pressure Sensor\n");
158 const char *pressure = "BMP280"; local
160 if (pressure) {
161 if(!strcmp(pressure, "BMP280")) {
170 LOGE("HAL:unknown pressure id %s -- "
172 pressure);
204 LOGE("HAL: HAL configured to support Pressure sensor but not by driver");
  /hardware/invensense/65xx/libsensors_iio/
PressureSensor.IIO.secondary.cpp 35 #pragma message("HAL:build pressure sensor on Invensense MPU secondary bus")
59 LOGE("Error Instantiating Pressure Sensor\n");
159 const char *pressure = "BMP280"; local
161 if (pressure) {
162 if(!strcmp(pressure, "BMP280")) {
171 LOGE("HAL:unknown pressure id %s -- "
173 pressure);
  /cts/tests/tests/view/src/android/view/cts/
MotionEventUtils.java 80 private float pressure = 1.0f; field in class:MotionEventUtils.PointerCoordsBuilder
88 public PointerCoordsBuilder withPressure(float pressure) {
89 this.pressure = pressure;
119 pointerCoords.pressure = pressure;
138 assertEquals("Pressure should be the same", that.getPressure(), this.pressure, DELTA);
139 assertEquals("Pressure should be the same",
140 that.getAxisValue(MotionEvent.AXIS_PRESSURE), this.pressure, DELTA)
    [all...]
  /external/mesa3d/src/gallium/drivers/vc4/
vc4_qir.c 454 int pressure = 0; local
462 fprintf(stderr, "%3d ", pressure);
474 pressure++;
496 pressure--;
  /sdk/apps/SdkController/src/com/android/tools/sdkcontroller/views/
MultiTouchView.java 205 // 0 - 100 for the pressure.
206 int pressure = (int) (event.getPressure(ptr_index) * 100); local
208 if (pressure > 100) {
209 pressure = 100;
211 bb.putInt(pressure);
  /system/chre/chre_api/include/chre_api/chre/
sensor_types.h 132 * Barometric pressure sensor.
234 * reference readings[N].pressure, and an ambient light sensor
338 float pressure; //!< Unit: hectopascals (hPa) member in union:chreSensorFloatData::chreSensorFloatSampleData::__anon2621
  /developers/build/prebuilts/gradle/BasicMultitouch/Application/src/main/java/com/example/android/basicmultitouch/
TouchDisplayView.java 46 * pressure and historical positions. Objects are allocated through an
57 public float pressure = 0f; field in class:TouchDisplayView.TouchHistory
71 public static TouchHistory obtain(float x, float y, float pressure) {
77 data.setTouch(x, y, pressure);
90 public void setTouch(float x, float y, float pressure) {
93 this.pressure = pressure;
253 * data (position and pressure) and updates its stored data. A
367 * its pressure, clamped to a maximum of <code>1.0</code>.
379 * Draw the circle, size scaled to its pressure. Pressure is clamped t
383 float pressure = Math.min(data.pressure, 1f); local
    [all...]
  /developers/samples/android/input/multitouch/BasicMultitouch/Application/src/main/java/com/example/android/basicmultitouch/
TouchDisplayView.java 46 * pressure and historical positions. Objects are allocated through an
57 public float pressure = 0f; field in class:TouchDisplayView.TouchHistory
71 public static TouchHistory obtain(float x, float y, float pressure) {
77 data.setTouch(x, y, pressure);
90 public void setTouch(float x, float y, float pressure) {
93 this.pressure = pressure;
253 * data (position and pressure) and updates its stored data. A
367 * its pressure, clamped to a maximum of <code>1.0</code>.
379 * Draw the circle, size scaled to its pressure. Pressure is clamped t
383 float pressure = Math.min(data.pressure, 1f); local
    [all...]
  /development/samples/browseable/BasicMultitouch/src/com.example.android.basicmultitouch/
TouchDisplayView.java 46 * pressure and historical positions. Objects are allocated through an
57 public float pressure = 0f; field in class:TouchDisplayView.TouchHistory
71 public static TouchHistory obtain(float x, float y, float pressure) {
77 data.setTouch(x, y, pressure);
90 public void setTouch(float x, float y, float pressure) {
93 this.pressure = pressure;
253 * data (position and pressure) and updates its stored data. A
367 * its pressure, clamped to a maximum of <code>1.0</code>.
379 * Draw the circle, size scaled to its pressure. Pressure is clamped t
383 float pressure = Math.min(data.pressure, 1f); local
    [all...]
  /packages/services/Car/tests/EmbeddedKitchenSinkApp/src/com/google/android/car/kitchensink/sensor/
SensorsTestFragment.java 228 String pressure = mNaString; local
233 pressure = Float.isNaN(env.pressure) ? pressure :
234 String.valueOf(env.pressure);
237 getTimestamp(event), temperature, pressure));
  /system/chre/chre_api/legacy/v1_0/chre/
sensor.h 109 * Barometric pressure sensor.
201 * The data can be interpreted using the 'pressure' field within 'readings'.
482 * reference readings[N].pressure, and an ambient light sensor
579 float pressure; // hectopascals (hPa) member in union:chreSensorFloatData::chreSensorFloatSampleData::__anon2628
  /frameworks/base/core/jni/
android_view_MotionEvent.cpp 52 jfieldID pressure; member in struct:android::__anon45701
202 env->GetFloatField(pointerCoordsObj, gPointerCoordsClassInfo.pressure));
264 env->SetFloatField(outPointerCoordsObj, gPointerCoordsClassInfo.pressure,
    [all...]
  /frameworks/native/include/android/
sensor.h 116 * The pressure sensor value is returned in hPa (millibar).
369 float pressure; member in union:ASensorEvent::__anon46218::__anon46219
  /hardware/invensense/6515/libsensors_iio/software/core/mllite/
data_builder.h 30 /** This is a new sample of pressure data */
136 struct inv_single_sensor_t pressure; member in struct:inv_sensor_cal_t
250 inv_error_t inv_build_pressure(const long pressure, int status, inv_time_t timestamp);
  /hardware/invensense/65xx/libsensors_iio/software/core/mllite/
data_builder.h 30 /** This is a new sample of pressure data */
133 struct inv_single_sensor_t pressure; member in struct:inv_sensor_cal_t
247 inv_error_t inv_build_pressure(const long pressure, int status, inv_time_t timestamp);
  /packages/services/Car/car-lib/src/android/car/hardware/
CarSensorEvent.java 101 * Pressure in kPa.
212 public float pressure; field in class:CarSensorEvent.EnvironmentData
234 data.pressure = floatValues[INDEX_ENVIRONMENT_PRESSURE];
  /system/chre/chre_api/legacy/v1_1/chre/
sensor.h 130 * Barometric pressure sensor.
255 * The data can be interpreted using the 'pressure' field within 'readings'.
618 * reference readings[N].pressure, and an ambient light sensor
722 float pressure; //!< Unit: hectopascals (hPa) member in union:chreSensorFloatData::chreSensorFloatSampleData::__anon2635
    [all...]
  /development/cmds/monkey/src/com/android/commands/monkey/
MonkeySourceScript.java 313 float pressure = Float.parseFloat(args[5]); local
334 .addPointer(0, x, y, pressure, size);
350 float pressure = Float.parseFloat(args[5]); local
383 .addPointer(0, mLastX[0], mLastY[0], pressure, size)
384 .addPointer(1, x, y, pressure, size);
394 .addPointer(0, x, y, pressure, size);
    [all...]
  /external/llvm/lib/Target/AMDGPU/
SIMachineScheduler.cpp 38 // . The less the register pressure, the best load latencies are hidden
42 // behaviours. For example when register pressure becomes high, it can either
43 // manage to prevent register pressure from going too high, or it can
44 // increase register pressure even more than if it hadn't taken register
45 // pressure into account.
247 std::vector<unsigned> pressure; local
251 TopRPTracker.getDownwardPressure(SU->getInstr(), pressure, MaxPressure);
252 TryCand.SGPRUsage = pressure[DAG->getSGPRSetID()];
253 TryCand.VGPRUsage = pressure[DAG->getVGPRSetID()];
307 IntervalPressure Pressure, BotPressure
    [all...]

Completed in 908 milliseconds

1 2 3