/frameworks/base/packages/DocumentsUI/res/drawable/ |
ic_breadcrumb_arrow_down.xml | 4 android:toDegrees="90"
|
/packages/apps/Camera2/res/drawable/ |
ic_options_land.xml | 6 android:toDegrees="90"
|
ic_options_port.xml | 6 android:toDegrees="0"
|
/packages/apps/UnifiedEmail/res/drawable/ |
ic_collapse_24dp.xml | 6 android:toDegrees="180"
|
ic_prev.xml | 21 android:toDegrees="180" />
|
/frameworks/base/core/java/android/view/animation/ |
RotateAnimation.java | 80 * @param toDegrees Rotation offset to apply at the end of the animation. 82 public RotateAnimation(float fromDegrees, float toDegrees) { 84 mToDegrees = toDegrees; 95 * @param toDegrees Rotation offset to apply at the end of the animation. 104 public RotateAnimation(float fromDegrees, float toDegrees, float pivotX, float pivotY) { 106 mToDegrees = toDegrees; 121 * @param toDegrees Rotation offset to apply at the end of the animation. 140 public RotateAnimation(float fromDegrees, float toDegrees, int pivotXType, float pivotXValue, 143 mToDegrees = toDegrees;
|
/frameworks/base/core/res/res/anim/ |
screen_rotate_minus_90_enter.xml | 23 <rotate android:fromDegrees="-90" android:toDegrees="0" 30 <rotate android:fromDegrees="-90" android:toDegrees="0"
|
screen_rotate_plus_90_enter.xml | 23 <rotate android:fromDegrees="90" android:toDegrees="0" 30 <rotate android:fromDegrees="90" android:toDegrees="0"
|
screen_rotate_minus_90_exit.xml | 23 <rotate android:fromDegrees="0" android:toDegrees="90" 37 <rotate android:fromDegrees="0" android:toDegrees="90"
|
/frameworks/base/core/res/res/drawable/ |
progress_large_holo.xml | 24 android:toDegrees="1080" /> 32 android:toDegrees="0" />
|
progress_medium_holo.xml | 24 android:toDegrees="1080" /> 32 android:toDegrees="0" />
|
progress_small_holo.xml | 24 android:toDegrees="1080" /> 32 android:toDegrees="0" />
|
/frameworks/opt/bitmap/sample/res/drawable/ |
progress.xml | 24 android:toDegrees="1080" /> 32 android:toDegrees="0" />
|
/cts/tests/tests/graphics/res/drawable/ |
rotatedrawable.xml | 20 android:fromDegrees="0" android:toDegrees="360"
|
rotatedrawable_abs.xml | 22 android:toDegrees="-180"
|
rotatedrawable_rel.xml | 22 android:toDegrees="360"
|
/development/samples/Snake/res/drawable-mdpi/ |
dpad_down.xml | 18 android:toDegrees="180"
|
dpad_left.xml | 18 android:toDegrees="-90"
|
dpad_right.xml | 18 android:toDegrees="90"
|
/development/samples/devbytes/animation/ViewAnimations/res/anim/ |
rotate_anim.xml | 17 android:toDegrees="360"
|
/packages/apps/UnifiedEmail/res/drawable-ldrtl/ |
ic_arrow_back_24dp_with_rtl.xml | 21 android:toDegrees="180" /
|
ic_arrow_back_wht_24dp_with_rtl.xml | 21 android:toDegrees="180" /
|
ic_next.xml | 21 android:toDegrees="180" />
|
/cts/tests/tests/view/src/android/view/animation/cts/ |
RotateAnimationTest.java | 182 public MyRotateAnimation(float fromDegrees, float toDegrees) { 183 super(fromDegrees, toDegrees); 186 public MyRotateAnimation(float fromDegrees, float toDegrees, float pivotX, float pivotY) { 187 super(fromDegrees, toDegrees, pivotX, pivotY); 190 public MyRotateAnimation(float fromDegrees, float toDegrees, int pivotXType, 192 super(fromDegrees, toDegrees, pivotXType, pivotX, pivotYType, pivotY);
|
/development/samples/ApiDemos/src/com/example/android/apis/animation/ |
Rotate3dAnimation.java | 47 * @param toDegrees the end angle of the 3D rotation 52 public Rotate3dAnimation(float fromDegrees, float toDegrees, 55 mToDegrees = toDegrees;
|