/frameworks/base/services/core/java/com/android/server/policy/ |
WindowOrientationListener.java | 318 * - If the tilt angle is too close to horizontal (near 90 or -90 degrees), do nothing. 337 // We work with all angles in degrees in this class. 373 // If the tilt angle has increased by at least delta degrees within the specified amount 447 // The gap angle in degrees between adjacent orientation angles for hysteresis. 454 // The tilt angle range in degrees for each orientation. 645 // the screen) in a range of [-90, 90] degrees. 646 // -90 degrees: screen horizontal and facing the ground (overhead) 647 // 0 degrees: screen vertical 648 // 90 degrees: screen horizontal and facing the sky (on table) 685 // the +y-axis, increasing clockwise in a range of [0, 360] degrees [all...] |
/frameworks/base/media/java/android/media/ |
MediaRecorder.java | 533 * @param degrees the angle to be rotated clockwise in degrees. 534 * The supported angles are 0, 90, 180, and 270 degrees. 538 public void setOrientationHint(int degrees) { 539 if (degrees != 0 && 540 degrees != 90 && 541 degrees != 180 && 542 degrees != 270) { 543 throw new IllegalArgumentException("Unsupported angle: " + degrees); 545 setParameter("video-param-rotation-angle-degrees=" + degrees) [all...] |
/cts/apps/CtsVerifier/src/com/android/cts/verifier/camera/formats/ |
CameraFormatsActivity.java | 396 int degrees = 0; local 398 case Surface.ROTATION_0: degrees = 0; break; 399 case Surface.ROTATION_90: degrees = 90; break; 400 case Surface.ROTATION_180: degrees = 180; break; 401 case Surface.ROTATION_270: degrees = 270; break; 405 mPreviewRotation = (info.orientation + degrees) % 360; 408 mPreviewRotation = (info.orientation - degrees + 360) % 360;
|
/cts/apps/CtsVerifier/src/com/android/cts/verifier/camera/video/ |
CameraVideoActivity.java | 654 int degrees = 0; local 656 case Surface.ROTATION_0: degrees = 0; break; 657 case Surface.ROTATION_90: degrees = 90; break; 658 case Surface.ROTATION_180: degrees = 180; break; 659 case Surface.ROTATION_270: degrees = 270; break; 663 mVideoRotation = (info.orientation + degrees) % 360; 666 mVideoRotation = (info.orientation - degrees + 360) % 360;
|
/external/libgdx/gdx/src/com/badlogic/gdx/graphics/g3d/decals/ |
Decal.java | 106 * @param angle Angle in degrees to set rotation to */
114 * @param angle Angle in degrees to set rotation to */
122 * @param angle Angle in degrees to set rotation to */
130 * @param angle Angle in degrees to rotate by */
139 * @param angle Angle in degrees to rotate by */
148 * @param angle Angle in degrees to rotate by */
156 * @param yaw Angle in degrees to rotate around the Y axis
157 * @param pitch Angle in degrees to rotate around the X axis
158 * @param roll Angle in degrees to rotate around the Z axis */
|
/development/samples/devbytes/animation/CardFlip/src/com/example/android/cardflip/ |
CardView.java | 128 * @param clockwise Specifies whether the horizontal animation is 180 degrees 129 * clockwise or 180 degrees counter clockwise. 272 * Returns a full rotation animator which rotates this card by 360 degrees
|
/external/apache-commons-math/src/main/java/org/apache/commons/math/stat/inference/ |
TTestImpl.java | 546 * equal and it uses approximated degrees of freedom computed from the 549 * to the degrees of freedom is used, 595 * minus 2 is used as the degrees of freedom.</p> 639 * t-statistic. Degrees of freedom are approximated using the 700 * sizes minus 2 is used as the degrees of freedom.</p> [all...] |
/external/freetype/src/base/ |
fttrigon.c | 23 /* in degrees, i.e., the angular resolution is 2^-16 degrees. Note that */ 45 /* this table was generated for FT_PI = 180L << 16, i.e. degrees */
|
ftsynth.c | 66 /* of about 12 degrees. */
|
/external/libgdx/extensions/gdx-freetype/jni/freetype-2.6.2/src/base/ |
fttrigon.c | 23 /* in degrees, i.e., the angular resolution is 2^-16 degrees. Note that */ 45 /* this table was generated for FT_PI = 180L << 16, i.e. degrees */
|
/external/libgdx/gdx/src/com/badlogic/gdx/graphics/glutils/ |
ShapeRenderer.java | 177 public void rotate (float axisX, float axisY, float axisZ, float degrees) {
178 transformMatrix.rotate(axisX, axisY, axisZ, degrees);
477 float degrees) {
478 rect(x, y, originX, originY, width, height, scaleX, scaleY, degrees, color, color, color, color);
488 float degrees, Color col1, Color col2, Color col3, Color col4) {
491 float cos = MathUtils.cosDeg(degrees);
492 float sin = MathUtils.sinDeg(degrees);
783 public void arc (float x, float y, float radius, float start, float degrees) {
784 arc(x, y, radius, start, degrees, Math.max(1, (int)(6 * (float)Math.cbrt(radius) * (degrees / 360.0f)))); [all...] |
/external/pdfium/third_party/freetype/src/base/ |
fttrigon.c | 23 /* in degrees, i.e., the angular resolution is 2^-16 degrees. Note that */ 45 /* this table was generated for FT_PI = 180L << 16, i.e. degrees */
|
/frameworks/base/core/java/android/transition/ |
ArcMotion.java | 147 * <p>The default value is 70 degrees.</p> 162 * <p>The default value is 70 degrees.</p> 174 throw new IllegalArgumentException("Arc must be between 0 and 90 degrees");
|
/packages/apps/Gallery/src/com/android/camera/ |
Util.java | 64 public static Bitmap rotate(Bitmap b, int degrees) { 65 if (degrees != 0 && b != null) { 67 m.setRotate(degrees,
|
/packages/apps/Gallery2/src/com/android/gallery3d/app/ |
VideoUtils.java | 178 int degrees = Integer.parseInt(degreesString); local 179 if (degrees >= 0) { 180 muxer.setOrientationHint(degrees);
|
/sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/testdata/ |
completion12-expected-completion75.txt | 60 android:rotation : rotation of the view, in degrees. [float] 61 android:rotationX : rotation of the view around the x axis, in degrees. [float] 62 android:rotationY : rotation of the view around the y axis, in degrees. [float]
|
/external/libgdx/backends/gdx-backends-gwt/src/com/badlogic/gdx/backends/gwt/emu/com/badlogic/gdx/math/ |
Matrix4.java | 547 /** Sets the matrix to a projection matrix with a near- and far plane, a field of view in degrees and an aspect ratio. Note that
548 * the field of view specified is the angle in degrees for the height, the field of view for the width will be calculated
553 * @param fovy The field of view of the height in degrees
[all...] |
/external/libgdx/gdx/src/com/badlogic/gdx/math/ |
Matrix4.java | 469 /** Sets the matrix to a projection matrix with a near- and far plane, a field of view in degrees and an aspect ratio. Note that
470 * the field of view specified is the angle in degrees for the height, the field of view for the width will be calculated
475 * @param fovy The field of view of the height in degrees
707 * @param degrees The angle in degrees
709 public Matrix4 setToRotation (Vector3 axis, float degrees) {
710 if (degrees == 0) {
714 return set(quat.set(axis, degrees));
735 * @param degrees The angle in degrees
[all...] |
/cts/tests/tests/graphics/src/android/graphics/drawable/shapes/cts/ |
PathShapeTest.java | 50 // draw a square rotated by 45 degrees centered on (50, 50)
|
/external/ceres-solver/data/nist/ |
Lanczos1.dat | 50 Degrees of Freedom: 18
|
Lanczos2.dat | 50 Degrees of Freedom: 18
|
Lanczos3.dat | 50 Degrees of Freedom: 18
|
MGH17.dat | 49 Degrees of Freedom: 28
|
/external/chromium-trace/catapult/dashboard/dashboard/models/ |
anomaly.py | 45 # degrees of freedom, and p-value are potentially-useful intermediary results.
|
/external/eigen/unsupported/doc/examples/ |
PolynomialSolver1.cpp | 38 cout << "Using double's almost always solves the problem for small degrees: " << endl;
|