/hardware/qcom/audio/msm8909/hal/audio_extn/ |
source_track.c | 46 * Starting angle (in degrees) defines the boundary starting angle for each sector. 59 /* Audio Paramater Key to identify the direction (in degrees) of arrival for desired talker 63 /* Audio Paramater Key to identify the list of directions (in degrees) of arrival for 68 * of the horizontal plane referred to by a full circle (360 degrees).
|
/hardware/qcom/msm8960/original-kernel-headers/linux/ |
msm_vidc_enc.h | 151 #define VEN_ROTATION_0 1/* 0 degrees */ 152 #define VEN_ROTATION_90 2/* 90 degrees */ 153 #define VEN_ROTATION_180 3/* 180 degrees */ 154 #define VEN_ROTATION_270 4/* 270 degrees */
|
/packages/apps/Camera2/src/com/android/camera/data/ |
FilmstripItem.java | 142 * Returns the rotation of the image in degrees clockwise. The valid values
|
/packages/apps/Camera2/src/com/android/camera/hardware/ |
HeadingSensor.java | 67 * @return current device heading in degrees. INVALID_HEADING if sensors
|
/packages/apps/Camera2/src/com/android/camera/ui/focus/ |
CameraCoordinateTransformer.java | 37 * @param displayOrientation orientation in degrees.
|
/packages/apps/DevCamera/src/com/android/devcamera/ |
CameraInterface.java | 31 * Get camera field of view, in degrees. Entry 0 is horizontal, entry 1 is vertical FOV.
|
/packages/apps/Gallery/src/com/android/camera/gallery/ |
UriImage.java | 171 public boolean rotateImageBy(int degrees) {
|
/packages/apps/Gallery2/src/com/android/gallery3d/ui/ |
GLRootView.java | 444 private void rotateCanvas(int degrees) { 445 if (degrees == 0) return; 451 mCanvas.rotate(degrees, 0, 0, 1); 452 if (degrees % 180 != 0) {
|
/packages/apps/LegacyCamera/src/com/android/camera/ui/ |
FaceView.java | 39 // indicator should be rotated 90 degrees counter-clockwise.
|
/packages/apps/TV/usbtuner/src/com/google/android/exoplayer/ |
MediaFormatUtil.java | 39 int rotationDegrees = getOptionalIntegerV16(format, "rotation-degrees");
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/alsa/sound/ |
sb16_csp.h | 59 /* maximum QSound value (180 degrees right) */
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/sound/ |
sb16_csp.h | 59 /* maximum QSound value (180 degrees right) */
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/alsa/sound/ |
sb16_csp.h | 59 /* maximum QSound value (180 degrees right) */
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/sound/ |
sb16_csp.h | 59 /* maximum QSound value (180 degrees right) */
|
/external/apache-commons-math/src/main/java/org/apache/commons/math/stat/inference/ |
UnknownDistributionChiSquareTest.java | 79 * on the formula used to compute the test statistic. The degrees of 115 * in the test. The degrees of of freedom used to perform the test is
|
/external/mesa3d/src/glsl/builtins/profiles/ |
130.glsl | 5 float radians(float degrees); 6 vec2 radians(vec2 degrees); 7 vec3 radians(vec3 degrees); 8 vec4 radians(vec4 degrees); 10 float degrees(float radians); 11 vec2 degrees(vec2 radians); 12 vec3 degrees(vec3 radians); 13 vec4 degrees(vec4 radians);
|
140.glsl | 5 float radians(float degrees); 6 vec2 radians(vec2 degrees); 7 vec3 radians(vec3 degrees); 8 vec4 radians(vec4 degrees); 10 float degrees(float radians); 11 vec2 degrees(vec2 radians); 12 vec3 degrees(vec3 radians); 13 vec4 degrees(vec4 radians); [all...] |
/external/skia/include/core/ |
SkScalar.h | 193 #define SkDegreesToRadians(degrees) ((degrees) * (SK_ScalarPI / 180))
|
/frameworks/base/docs/html/guide/appendix/ |
g-app-intents.jd | 96 <tr><td><em>yaw</em></td><td>Panorama center-of-view in degrees clockwise from North.<br /> 99 <tr><td><em>pitch</em></td><td>Panorama center-of-view in degrees from
|
/frameworks/base/graphics/java/android/graphics/ |
ColorMatrix.java | 144 public void setRotate(int axis, float degrees) { 146 double radians = degrees * Math.PI / 180d;
|
/frameworks/base/libs/hwui/ |
CanvasState.cpp | 173 void CanvasState::rotate(float degrees) { 174 mSnapshot->transform->rotate(degrees, 0.0f, 0.0f, 1.0f);
|
/packages/apps/Camera2/jni/ |
jpegutilnative.cpp | 44 * 90-degrees are suppored, so the parameter 'rot90' specifies which multiple 115 * @param rot90 the multiple of 90 degrees to rotate, one of {0, 1, 2, 3}.
|
/packages/apps/Camera2/src/com/android/camera/one/v2/ |
OneCameraZslImpl.java | 613 int degrees = CameraUtil.getJpegRotation(captureParams.orientation, mCharacteristics); local 619 degrees); 640 acquireJpegBytes(image, degrees), [all...] |
/packages/apps/Camera2/src/com/android/camera/session/ |
CaptureSession.java | 160 * @param rotationDegrees the rotation of the thumbnail in degrees 226 * @param orientation the orientaiton of the media item, in degrees.
|
/packages/apps/Messaging/src/com/android/messaging/ui/mediapicker/ |
CameraManager.java | 670 int degrees = 0; local 672 case Surface.ROTATION_0: degrees = 0; break; 673 case Surface.ROTATION_90: degrees = 90; break; 674 case Surface.ROTATION_180: degrees = 180; break; 675 case Surface.ROTATION_270: degrees = 270; break; 685 orientation = (mCameraInfo.orientation + degrees) % 360; 690 orientation = (mCameraInfo.orientation - degrees + 360) % 360; [all...] |