HomeSort by relevance Sort by last modified time
    Searched refs:ROTATION (Results 1 - 15 of 15) sorted by null

  /frameworks/base/core/java/android/transition/
Rotate.java 25 * This transition captures the rotation property of targets before and after
32 private static final String PROPNAME_ROTATION = "android:rotate:rotation";
55 return ObjectAnimator.ofFloat(view, View.ROTATION,
  /frameworks/base/tests/TransitionTests/src/com/android/transitiontests/
HitRectBug.java 63 ObjectAnimator anim = ObjectAnimator.ofFloat(mImageView, View.ROTATION, 0, 360);
  /frameworks/base/core/java/android/view/
ViewPropertyAnimator.java 141 private static final int ROTATION = 0x0010;
149 ROTATION | ROTATION_X | ROTATION_Y | X | Y;
472 * This method will cause the View's <code>rotation</code> property to be animated to the
479 public ViewPropertyAnimator rotation(float value) { method in class:ViewPropertyAnimator
480 animateProperty(ROTATION, value);
485 * This method will cause the View's <code>rotation</code> property to be animated by the
493 animatePropertyBy(ROTATION, value);
    [all...]
View.java 581 * rotation, translation and alpha of a view over time. If the animation is
    [all...]
  /frameworks/base/libs/hwui/
DisplayList.h 42 #define ROTATION 0x0002
220 void setRotation(float rotation) {
221 if (rotation != mRotation) {
222 mRotation = rotation;
225 mMatrixFlags &= ~ROTATION;
227 mMatrixFlags |= ROTATION;
  /development/samples/devbytes/animation/CardFlip/src/com/example/android/cardflip/
CardView.java 134 PropertyValuesHolder rotation = PropertyValuesHolder.ofFloat(View.ROTATION_Y, local
142 ObjectAnimator cardAnimator = ObjectAnimator.ofPropertyValuesHolder(this, rotation,
250 * Returns a rotation animation which rotates this card by some degree about
258 int rotation = cardFromTop * ROTATION_PER_CARD;
261 rotation = -rotation;
265 rotation = 0;
268 return ObjectAnimator.ofFloat(this, View.ROTATION, rotation);
272 * Returns a full rotation animator which rotates this card by 360 degree
    [all...]
  /development/samples/devbytes/animation/PropertyAnimations/src/com/example/android/propertyanimations/
PropertyAnimations.java 69 ObjectAnimator.ofFloat(rotateButton, View.ROTATION, 360);
  /frameworks/native/libs/input/tests/
InputEvent_test.cpp 537 // Each point 'i' is a point on a circle of radius ROTATION centered at (3,2) at an angle
540 // and check rotation. We set the orientation to the same angle.
545 const float ROTATION = ARC * 2;
576 // Apply a rotation about the origin by ROTATION degrees clockwise.
578 setRotationMatrix(matrix, ROTATION * PI_180);
583 float angle = float((i * ARC + ROTATION) * PI_180);
  /packages/apps/Gallery2/src/com/android/photos/data/
PhotoDatabase.java 53 { Photos.ROTATION, "INTEGER" },
PhotoProvider.java 123 * The rotation of the photo in degrees, if rotation has not already
126 public static final String ROTATION = "rotation";
  /packages/apps/DeskClock/src/com/android/deskclock/widget/sgv/
SgvAnimationHelper.java 164 * rotation value.
167 int xTranslation, int yTranslation, float rotation, int animationDelay) {
171 view.setRotation(rotation);
174 View.ROTATION, view.getRotation(), 0.0f);
  /cts/tests/tests/view/src/android/view/cts/
MotionEventTest.java 335 // Each point 'i' is a point on a circle of radius ROTATION centered at (3,2) at an angle
338 // and check rotation. We set the orientation to the same angle.
343 final float ROTATION = ARC * 2;
375 // Apply a rotation about the origin by ROTATION degrees clockwise.
377 matrix.setRotate(ROTATION);
386 final float angle = (float) ((i * ARC + ROTATION) * PI_180);
  /frameworks/base/packages/SystemUI/src/com/android/systemui/
DessertCaseView.java 411 ObjectAnimator.ofFloat(v, View.ROTATION, rot),
  /prebuilts/sdk/14/
android.jar 
  /prebuilts/sdk/18/
android.jar 

Completed in 1761 milliseconds