Searched refs:acceleration (Results 1 - 6 of 6) sorted by relevance

/frameworks/base/services/sensorservice/
H A DGravitySensor.cpp53 x = mX.init(event.acceleration.x);
54 y = mY.init(event.acceleration.y);
55 z = mZ.init(event.acceleration.z);
59 x = mX(event.acceleration.x);
60 y = mY(event.acceleration.y);
61 z = mZ(event.acceleration.z);
H A DLinearAccelerationSensor.cpp43 mData[0] = event.acceleration.x;
44 mData[1] = event.acceleration.y;
45 mData[2] = event.acceleration.z;
H A DRotationVectorSensor.cpp76 Ax = mAX.init(event.acceleration.x);
77 Ay = mAY.init(event.acceleration.y);
78 Az = mAZ.init(event.acceleration.z);
82 Ax = mAX(event.acceleration.x);
83 Ay = mAY(event.acceleration.y);
84 Az = mAZ(event.acceleration.z);
/frameworks/base/services/sensorservice/tests/
H A Dsensorservicetest.cpp38 buffer[i].acceleration.x,
39 buffer[i].acceleration.y,
40 buffer[i].acceleration.z);
/frameworks/base/native/include/android/
H A Dsensor.h119 ASensorVector acceleration; member in union:ASensorEvent::__anon683
/frameworks/base/core/java/android/view/
H A DViewRoot.java2295 + x.step + " dir=" + x.dir + " acc=" + x.acceleration
2298 + y.step + " dir=" + y.dir + " acc=" + y.acceleration
2317 accel = x.acceleration;
2325 accel = y.acceleration;
3120 * The maximum amount of acceleration we will apply.
3127 * and thus apply an acceleration.
3133 * much to multiple/divide the current acceleration. When movement
3134 * is < FAST_MOVE_TIME this multiplies the acceleration; when >
3141 float acceleration = 1; field in class:ViewRoot.TrackballAxis
3149 acceleration
[all...]

Completed in 106 milliseconds