HomeSort by relevance Sort by last modified time
    Searched full:acceleration (Results 26 - 50 of 508) sorted by null

12 3 4 5 6 7 8 91011>>

  /hardware/akm/AK8975_FS/akmdfs/
AK8975Driver.h 45 This function opens device driver of acceleration sensor.
53 This function closes device drivers of acceleration sensor.
58 Acquire acceleration data from acceleration sensor and convert it to Android
62 @param[out] data A acceleration data array. The coordinate system of the
  /frameworks/native/libs/input/
VelocityControl.cpp 20 // Log debug messages about acceleration.
76 // Apply full acceleration above the high speed threshold.
77 scale *= mParameters.acceleration;
79 // Linearly interpolate the acceleration to apply between the low and high
83 * (mParameters.acceleration - 1);
90 mParameters.acceleration,
97 mParameters.acceleration);
  /cts/tests/acceleration/src/android/acceleration/
HardwareAcceleratedActivity.java 17 package android.acceleration;
SoftwareAcceleratedActivity.java 17 package android.acceleration;
WindowFlagHardwareAcceleratedActivity.java 17 package android.acceleration;
  /development/samples/browseable/AccelerometerPlay/
_index.jd 12 <p>Any effects from the device's acceleration vector (including both gravity and
  /external/libgdx/extensions/gdx-controllers/gdx-controllers-desktop/jni/ois-v1-4svn/src/iphone/
iPhoneAccelerometer.mm 64 void iPhoneAccelerometer::didAccelerate(UIAcceleration *acceleration)
68 mTempState.x = acceleration.x;
69 mTempState.y = acceleration.y;
70 mTempState.z = acceleration.z;
  /frameworks/base/docs/html/guide/topics/graphics/
index.jd 3 page.landing.intro=Make your apps look and perform their best using Android's powerful graphics features such as OpenGL, hardware acceleration, and built-in UI animations.
16 support hardware acceleration on tablets. With this new pipeline, all drawing operations performed
30 href="http://android-developers.blogspot.com/2011/03/android-30-hardware-acceleration.html">
31 <h4>Android 3.0 Hardware Acceleration</h4>
  /hardware/bsp/intel/peripheral/libupm/examples/c++/
adxl335.cxx 64 accel->acceleration(&aX, &aY, &aZ);
65 cout << "Acceleration: X: " << aX << "g" << endl;
66 cout << "Acceleration: Y: " << aY << "g" << endl;
67 cout << "Acceleration: Z: " << aZ << "g" << endl;
  /hardware/bsp/intel/peripheral/libupm/examples/java/
MMA7660Sample.java 56 float[] acceleration = accel.getAcceleration(); local
57 System.out.println("Raw Values: x = " + acceleration[0] + " y = " + acceleration[1]
58 + " x = " + acceleration[2]);
  /hardware/bsp/intel/peripheral/libupm/examples/javascript/
adxl335.js 70 myAnalogGyro3Axis.acceleration(aX, aY, aZ);
71 outputStr = "Acceleration: X: " +
73 "Acceleration: Y: " +
75 "Acceleration: Z: " +
  /hardware/bsp/intel/peripheral/libupm/examples/python/
adxl335.py 68 myAnalogAccel.acceleration(aX, aY, aZ)
69 outputStr = ("Acceleration: X: {0}g\n"
70 "Acceleration: Y: {1}g\n"
71 "Acceleration: Z: {2}g").format(upmAdxl335.floatPointer_value(aX),
  /cts/tests/acceleration/
AndroidTest.xml 16 <configuration description="Config for CTS Acceleration test cases">
22 <option name="package" value="android.acceleration.cts" />
  /external/autotest/client/site_tests/video_ChromeHWDecodeUsed/
control.h264 7 PURPOSE = "Verify that H.264 video decode acceleration works in Chrome"
25 This test verifies H.264 video decode acceleration works.
control.h264.mse 7 PURPOSE = "Verify that H.264 decode acceleration works for MSE videos in Chrome"
25 This test verifies H.264 decode acceleration works for MSE videos.
control.vp8 7 PURPOSE = "Verify that VP8 video decode acceleration works in Chrome"
25 This test verifies VP8 video decode acceleration works.
control.vp8.mse 7 PURPOSE = "Verify that VP8 decode acceleration works for MSE videos in Chrome"
25 This test verifies VP8 decode acceleration works for MSE videos.
control.vp9 7 PURPOSE = "Verify that VP9 video decode acceleration works in Chrome"
25 This test verifies VP9 video decode acceleration works.
control.vp9.mse 7 PURPOSE = "Verify that VP9 decode acceleration works for MSE videos in Chrome"
25 This test verifies VP9 decode acceleration works for MSE videos.
  /frameworks/base/docs/html/guide/topics/sensors/
sensors_motion.jd 50 sensors can be either hardware-based or software-based (the gravity, linear acceleration, and
71 acceleration force data for the three coordinate axes, and the gyroscope returns rate of rotation
88 <td>Acceleration force along the x axis (including gravity).</td>
93 <td>Acceleration force along the y axis (including gravity).</td>
97 <td>Acceleration force along the z axis (including gravity).</td>
156 <td>Acceleration force along the x axis (excluding gravity).</td>
161 <td>Acceleration force along the y axis (excluding gravity).</td>
165 <td>Acceleration force along the z axis (excluding gravity).</td>
219 sensor, a linear acceleration sensor, and a rotation vector sensor. These sensors were updated in
232 <p>An acceleration sensor measures the acceleration applied to the device, including the force o
    [all...]
  /cts/tests/acceleration/src/android/acceleration/cts/
BaseAccelerationTest.java 17 package android.acceleration.cts;
19 import android.acceleration.AcceleratedView;
20 import android.acceleration.BaseAcceleratedActivity;
  /hardware/bsp/intel/peripheral/sensors/mraa/sensors/
LSM303dAccelerometer.cpp 69 data->acceleration.x = (double)rawdatap[0] * conversion_constant;
70 data->acceleration.y = (double)rawdatap[1] * conversion_constant;
71 data->acceleration.z = (double)rawdatap[2] * conversion_constant;
  /external/autotest/client/site_tests/video_PlaybackPerf/
control.h264 21 hardware acceleration support.
control.vp8 21 hardware acceleration support.
control.vp9 21 hardware acceleration support.

Completed in 1241 milliseconds

12 3 4 5 6 7 8 91011>>