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

12 3 4 5 6 7 8 91011>>

  /external/chromium_org/webkit/renderer/compositor_bindings/
web_transform_operations_impl.cc 34 double degrees) {
35 transform_operations_.AppendRotate(x, y, z, degrees);
  /external/skia/src/animator/
SkDrawMatrix.h 45 void rotate(SkScalar degrees, SkPoint& center) {
46 fMatrix.preRotate(degrees, center.fX, center.fY);
  /frameworks/base/media/java/android/media/
MediaMuxer.java 94 int degrees);
153 * @param degrees the angle to be rotated clockwise in degrees.
154 * The supported angles are 0, 90, 180, and 270 degrees.
156 public void setOrientationHint(int degrees) {
157 if (degrees != 0 && degrees != 90 && degrees != 180 && degrees != 270) {
158 throw new IllegalArgumentException("Unsupported angle: " + degrees);
    [all...]
  /frameworks/base/graphics/java/android/graphics/
Matrix.java 69 public void setRotate(float degrees, float px, float py) {
74 public void setRotate(float degrees) {
123 public boolean preRotate(float degrees, float px, float py) {
129 public boolean preRotate(float degrees) {
171 public boolean postRotate(float degrees, float px, float py) {
177 public boolean postRotate(float degrees) {
250 * degrees.
311 * Set the matrix to rotate by the specified number of degrees, with a pivot
315 public void setRotate(float degrees, float px, float py) {
316 native_setRotate(native_instance, degrees, px, py)
    [all...]
Camera.java 61 * @param deg The angle of rotation around the X axis, in degrees
72 * @param deg The angle of rotation around the Y axis, in degrees
83 * @param deg The angle of rotation around the Z axis, in degrees
94 * @param x The angle of rotation around the X axis, in degrees
95 * @param y The angle of rotation around the Y axis, in degrees
96 * @param z The angle of rotation around the Z axis, in degrees
  /frameworks/av/media/libstagefright/
MediaMuxer.cpp 90 status_t MediaMuxer::setOrientationHint(int degrees) {
97 if (degrees != 0 && degrees != 90 && degrees != 180 && degrees != 270) {
98 ALOGE("setOrientationHint() get invalid degrees");
102 mFileMeta->setInt32(kKeyRotation, degrees);
  /frameworks/base/tools/orientationplot/
README.txt 44 it 90 degrees to a different orientation. Compared the rapid changes in the
50 it 90 degrees. Note that the confidence intervals will all drop to 0 at some
56 over end to a midpoint about 45 degrees between two opposing orientations.
65 angle (say, 45 degrees) is between the current orientation's ideal angle
66 (say, 0 degrees) and an adjacent orientation's ideal angle (say, 90 degrees).
75 degrees (refer to MAX_TILT constant). Consequently, you should expect there
  /external/jmonkeyengine/engine/src/desktop/jme3tools/navigation/
NavCalculator.java 235 * two degrees of latitude
265 * @param course the target's current course in degrees
491 static Quadrant getQuadrant(double degrees, boolean invert) {
493 if (degrees >= 0 && degrees <= 90) {
495 } else if (degrees > 90 && degrees <= 180) {
497 } else if (degrees > 180 && degrees <= 270) {
502 if (degrees >= 0 && degrees <= 90)
    [all...]
  /external/chromium_org/third_party/libphonenumber/src/resources/carrier/en/
64.txt 17 6422|2degrees
  /frameworks/native/opengl/tests/testViewport/
README 14 Rotate screen 90 degrees.
  /external/ceres-solver/data/nist/
DanWood.dat 18 degrees Kelvin.
46 Degrees of Freedom: 4
  /external/chromium_org/third_party/mesa/src/src/glsl/builtins/profiles/
100.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);
  /external/chromium_org/ui/gfx/
interpolated_transform.cc 20 bool IsMultipleOfNinetyDegrees(double degrees) {
21 double remainder = fabs(fmod(degrees, 90.0));
25 // Returns false if |degrees| is not a multiple of ninety degrees or if
28 // the rotation matrix corresponding to |degrees| which has entries that are all
31 float degrees) {
32 if (!IsMultipleOfNinetyDegrees(degrees) || !rotation)
37 float degrees_by_ninety = degrees / 90.0f;
interpolated_transform_unittest.cc 107 ui::InterpolatedTransform* GetScreenRotation(int degrees, bool reversed) {
114 switch (degrees) {
130 new ui::InterpolatedRotation(reversed ? degrees : 0,
131 reversed ? 0 : degrees)));
160 for (int degrees = -360; degrees <= 360; degrees += 90) {
163 GetScreenRotation(degrees, reversed));
  /external/mesa3d/src/glsl/builtins/profiles/
100.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);
  /external/skia/gm/
fontscaler.cpp 31 SkScalar degrees,
34 canvas->rotate(degrees);
  /frameworks/base/graphics/java/android/graphics/drawable/shapes/
ArcShape.java 37 * @param startAngle the angle (in degrees) where the arc begins
38 * @param sweepAngle the sweep angle (in degrees). Anything equal to or
  /external/chromium_org/third_party/skia/src/effects/
SkColorMatrix.cpp 32 void SkColorMatrix::setRotate(Axis axis, SkScalar degrees) {
35 S = SkScalarSinCos(SkDegreesToRadians(degrees), &C);
57 void SkColorMatrix::preRotate(Axis axis, SkScalar degrees) {
59 tmp.setRotate(axis, degrees);
63 void SkColorMatrix::postRotate(Axis axis, SkScalar degrees) {
65 tmp.setRotate(axis, degrees);
  /external/skia/src/effects/
SkColorMatrix.cpp 32 void SkColorMatrix::setRotate(Axis axis, SkScalar degrees) {
35 S = SkScalarSinCos(SkDegreesToRadians(degrees), &C);
57 void SkColorMatrix::preRotate(Axis axis, SkScalar degrees) {
59 tmp.setRotate(axis, degrees);
63 void SkColorMatrix::postRotate(Axis axis, SkScalar degrees) {
65 tmp.setRotate(axis, degrees);
  /frameworks/opt/datetimepicker/src/com/android/datetimepicker/time/
RadialSelectorView.java 90 * @param selectionDegrees The initial degrees to be selected.
159 * @param selectionDegrees The degrees to be selected.
163 * drawn. If false, the dot will be drawn only when the degrees is not a multiple of 30, i.e.
254 int degrees = (int) (radians * 180 / Math.PI); local
260 degrees = 90 - degrees;
262 degrees = 90 + degrees;
264 degrees = 270 - degrees;
    [all...]
  /cts/tests/tests/media/src/android/media/cts/
MediaMuxerTest.java 162 int expectedTrackCount, int degrees) throws IOException {
194 if (degrees >= 0) {
195 muxer.setOrientationHint(degrees);
258 int expectedTrackCount, int degrees) throws IOException {
260 cloneMediaUsingMuxer(srcMedia, outputMediaFile, expectedTrackCount, degrees);
261 verifyAttributesMatch(srcMedia, outputMediaFile, degrees);
276 int degrees) {
289 assertEquals("Different degrees", degrees,
  /external/eigen/unsupported/Eigen/src/Polynomials/
PolynomialUtils.h 19 * by degrees i.e. poly[i] is the coefficient of degree i of the polynomial
40 * by degrees i.e. poly[i] is the coefficient of degree i of the polynomial
67 * by degrees i.e. poly[i] is the coefficient of degree i of the polynomial
92 * by degrees i.e. poly[i] is the coefficient of degree i of the polynomial
121 * by degrees i.e. poly[i] is the coefficient of degree i of the polynomial
  /frameworks/base/core/java/android/view/
OrientationEventListener.java 161 * orientation parameter is in degrees, ranging from 0 to 359.
162 * orientation is 0 degrees when the device is oriented in its natural position,
163 * 90 degrees when its left side is at the top, 180 degrees when it is upside down,
164 * and 270 degrees when its right side is to the top.
  /development/samples/ApiDemos/src/com/example/android/apis/animation/
Rotate3dAnimation.java 39 * start angle and its end angle. Both angles are in degrees. The rotation
71 float degrees = fromDegrees + ((mToDegrees - fromDegrees) * interpolatedTime); local
85 camera.rotateY(degrees);
  /external/chromium_org/chrome/common/extensions/api/
location.idl 13 // The geographic latitude specified in degrees.
16 // The geographic longitude specified in degrees.
32 // degrees, where 0 <= heading < 360, counting clockwise relative to the

Completed in 1063 milliseconds

12 3 4 5 6 7 8 91011>>