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

1 2 3 4 5 6 7 8 91011>>

  /cts/tests/src/android/renderscript/cts/
degrees_f32.rs 5 *out = degrees(*in);
9 *out = degrees (*in);
14 *out = degrees(*in);
19 *out = degrees(*in);
  /frameworks/opt/datetimepicker/src/com/android/datetimepicker/time/
RadialPickerLayout.java 126 // Prepare mapping to snap touchable degrees to selectable degrees.
322 * Split up the 360 degrees of the circle among the 60 selectable values. Assigns a larger
325 * E.g. the output of 30 degrees should have a higher range of input associated with it than
326 * the output of 24 degrees, because 30 degrees corresponds to a visible number on the clock
331 // output will correspond to a range of 14 associated input degrees, and each non-visible
332 // output will correspond to a range of 4 associate input degrees, so visible numbers
336 // If an output of 30 degrees should correspond to a range of 14 associated degrees, the
567 int degrees; local
803 int degrees = value * stepSize; local
    [all...]
  /packages/apps/Gallery/src/com/android/camera/gallery/
Image.java 59 protected void setDegreesRotated(int degrees) {
60 if (mRotation == degrees) return;
61 mRotation = degrees;
105 private void setExifRotation(int degrees) {
107 degrees %= 360;
108 if (degrees < 0) degrees += 360;
111 switch (degrees) {
137 * @param degrees
139 public boolean rotateImageBy(int degrees) {
    [all...]
  /external/chromium_org/third_party/mesa/src/src/glsl/builtins/ir/
degrees.ir 1 ((function degrees
  /external/mesa3d/src/glsl/builtins/ir/
degrees.ir 1 ((function degrees
  /external/chromium_org/content/renderer/pepper/
ppp_pdf.h 16 // Rotates the page 90 degrees clockwise from its current orientation.
18 // Rotates the page 90 degrees counterclockwise from its current orientation.
  /libcore/luni/src/test/resources/
recipe.xml 13 Preheat oven to 350 degrees F (175 degrees C).
recipe1.xml 13 Preheat oven to 350 degrees F (175 degrees C).
recipt.xml 13 Preheat oven to 350 degrees F (175 degrees C).
reciptWrong.xml 10 Preheat oven to 350 degrees F (175 degrees C).
systemid.xml 13 Preheat oven to 350 degrees F (175 degrees C).
  /external/chromium_org/chrome/app/test_data/
README 3 signed with varying degrees of validity (see cert_maker.bat for details)
  /external/eigen/doc/snippets/
Tutorial_AdvancedInitialization_LinSpaced.cpp 6 std::cout << " Degrees Radians Sine Cosine\n";
  /external/chromium_org/third_party/skia/include/effects/
SkColorMatrix.h 30 void setRotate(Axis, SkScalar degrees);
32 void preRotate(Axis, SkScalar degrees);
33 void postRotate(Axis, SkScalar degrees);
  /external/skia/include/effects/
SkColorMatrix.h 30 void setRotate(Axis, SkScalar degrees);
32 void preRotate(Axis, SkScalar degrees);
33 void postRotate(Axis, SkScalar degrees);
  /external/chromium_org/ash/rotator/
screen_rotation.cc 21 base::TimeDelta GetTransitionDuration(int degrees) {
22 if (degrees == 360)
24 if (degrees == 180)
26 if (degrees == 0)
33 ScreenRotation::ScreenRotation(int degrees, ui::Layer* layer)
35 GetTransitionDuration(degrees)),
36 degrees_(degrees) {
screen_rotation.h 31 // |degrees| are clockwise. |layer| is the target of the animation. Does not
33 ScreenRotation(int degrees, ui::Layer* layer);
53 // The number of degrees to rotate.
  /frameworks/base/core/jni/android/graphics/
Camera.cpp 33 static void Camera_rotateX(JNIEnv* env, jobject obj, float degrees) {
35 v->rotateX(SkFloatToScalar(degrees));
38 static void Camera_rotateY(JNIEnv* env, jobject obj, float degrees) {
40 v->rotateY(SkFloatToScalar(degrees));
43 static void Camera_rotateZ(JNIEnv* env, jobject obj, float degrees) {
45 v->rotateZ(SkFloatToScalar(degrees));
  /frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/
TextureViewActivity.java 126 int degrees = 0; local
130 degrees = 0;
133 degrees = 90;
136 degrees = 180;
139 degrees = 270;
143 return (info.orientation - degrees + 360) % 360;
  /external/chromium_org/content/public/common/
geoposition.h 39 // Latitude in decimal degrees north (WGS84 coordinate frame).
41 // Longitude in decimal degrees west (WGS84 coordinate frame).
49 // Heading in decimal degrees clockwise from true north.
  /cts/tests/tests/renderscript/src/android/renderscript/cts/
DegreesTest.java 80 * degrees test for float
91 * degrees test for float2
102 * degrees test for float3
113 * degrees test for float4
  /external/libyuv/files/include/libyuv/
rotate.h 24 kRotate90 = 90, // Rotate 90 degrees clockwise.
25 kRotate180 = 180, // Rotate 180 degrees.
26 kRotate270 = 270, // Rotate 270 degrees clockwise.
93 // order will result in a rotation by +- 90 degrees.
  /frameworks/base/location/java/android/location/
GpsSatellite.java 71 * Returns the elevation of the satellite in degrees.
74 * @return the elevation in degrees
81 * Returns the azimuth of the satellite in degrees.
84 * @return the azimuth in degrees
  /external/chromium_org/content/test/data/gpu/
mem_css3d.html 32 var degrees = (90.0 * i)/n;
34 block.style.WebkitTransform = "translate3d(0px, 0px, " + (i-n+1) + "px) rotateZ(" + degrees + "deg)";
  /external/chromium_org/third_party/skia/src/animator/
SkDrawMatrix.h 45 void rotate(SkScalar degrees, SkPoint& center) {
46 fMatrix.preRotate(degrees, center.fX, center.fY);

Completed in 453 milliseconds

1 2 3 4 5 6 7 8 91011>>