HomeSort by relevance Sort by last modified time
    Searched refs:tilt (Results 1 - 16 of 16) sorted by null

  /hardware/ti/omap4xxx/camera/
SensorListener.cpp 54 int tilt = 0, orient = 0; local
64 tilt = (int) asinf(z / radius) * RADIANS_2_DEG;
80 listener->handleOrientation(orient, tilt);
81 CAMHAL_LOGVB(" tilt = %d orientation = %d", tilt, orient);
184 void SensorListener::handleOrientation(uint32_t orientation, uint32_t tilt) {
190 mOrientationCb(orientation, tilt, mCbCookie);
CameraHal.cpp 61 static void orientation_cb(uint32_t orientation, uint32_t tilt, void* cookie) {
66 camera->onOrientationEvent(orientation, tilt);
75 void CameraHal::onOrientationEvent(uint32_t orientation, uint32_t tilt) {
79 mCameraAdapter->onOrientationEvent(orientation, tilt);
    [all...]
BaseCameraAdapter.cpp     [all...]
  /hardware/ti/omap4xxx/camera/inc/
SensorListener.h 39 typedef void (*orientation_callback_t) (uint32_t orientation, uint32_t tilt, void* cookie);
85 void handleOrientation(uint32_t orientation, uint32_t tilt);
BaseCameraAdapter.h 144 virtual void onOrientationEvent(uint32_t orientation, uint32_t tilt);
CameraHal.h 840 virtual void onOrientationEvent(uint32_t orientation, uint32_t tilt) = 0;
931 void onOrientationEvent(uint32_t orientation, uint32_t tilt);
    [all...]
  /development/samples/ApiDemos/src/com/example/android/apis/graphics/
TouchPaint.java 48 * an eraser tool. Second, the tilt angle and orientation of the stylus can be
420 float distance, float tilt) {
443 drawSplat(mCanvas, x, y, orientation, distance, tilt, mPaint);
475 * indicated by the orientation and tilt of the tool and throws paint at
481 float distance, float tilt, Paint paint) {
485 float nx = (float) (Math.sin(orientation) * Math.sin(tilt));
486 float ny = (float) (- Math.cos(orientation) * Math.sin(tilt));
487 float nz = (float) Math.cos(tilt);
505 // Apply the nozzle tilt angle.
507 vy = temp * Math.cos(tilt) - vz * Math.sin(tilt)
    [all...]
  /frameworks/base/core/java/android/view/
WindowOrientationListener.java 181 * The elevation angle is referred to as the "tilt" below.
186 * - If the tilt angle is too close to horizontal (near 90 or -90 degrees), do nothing.
188 * The tilt angle thresholds are set differently for each orientation and different
240 // If the tilt angle remains greater than the specified angle for a minimum of
246 // If the tilt angle has increased by at least delta degrees within the specified amount
248 // down towards flat (tilt = 90).
263 // try to calculate the tilt and orientation angles.
294 // singularities in the tilt and orientation calculations.
307 // Maximum absolute tilt angle at which to consider orientation data. Beyond this (i.e.
311 // The tilt angle range in degrees for each orientation
    [all...]
  /hardware/ti/omap4xxx/camera/inc/V4LCameraAdapter/
V4LCameraAdapter.h 94 virtual void onOrientationEvent(uint32_t orientation, uint32_t tilt);
  /external/replicaisland/src/com/replica/replicaisland/
GhostComponent.java 93 final InputXY tilt = input.getTilt(); local
95 tilt.getX() * mMovementSpeed;
98 tilt.getY() * mMovementSpeed;
  /hardware/ti/omap4xxx/camera/V4LCameraAdapter/
V4LCameraAdapter.cpp 477 void V4LCameraAdapter::onOrientationEvent(uint32_t orientation, uint32_t tilt)
  /frameworks/base/services/input/
InputReader.cpp 4120 float tilt; local
    [all...]
InputReader.h 1395 InputDeviceInfo::MotionRange tilt; member in struct:android::TouchInputMapper::OrientedRanges
    [all...]
  /hardware/ti/omap4xxx/camera/OMXCameraAdapter/
OMXCameraAdapter.cpp     [all...]
  /hardware/ti/omap4xxx/camera/inc/OMXCameraAdapter/
OMXCameraAdapter.h 413 virtual void onOrientationEvent(uint32_t orientation, uint32_t tilt);
    [all...]
  /frameworks/base/services/input/tests/
InputReader_test.cpp 3203 float tilt = acosf(cosf(tiltXAngle) * cosf(tiltYAngle)); local
    [all...]

Completed in 385 milliseconds