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

1 2

  /external/sl4a/ScriptingLayerForAndroid/src/org/connectbot/util/
PreferenceConstants.java 33 public static final String ROTATION = "rotation";
  /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/packages/SystemUI/src/com/android/systemui/statusbar/phone/
SettingsButton.java 132 mAnimator = ObjectAnimator.ofFloat(this, View.ROTATION, 0, 360);
161 mAnimator = ObjectAnimator.ofFloat(this, View.ROTATION, 0, 360);
  /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 146 static final int ROTATION = 0x0020;
155 SCALE_X | SCALE_Y | ROTATION | ROTATION_X | ROTATION_Y | X | Y | Z;
520 * This method will cause the View's <code>rotation</code> property to be animated to the
527 public ViewPropertyAnimator rotation(float value) { method in class:ViewPropertyAnimator
528 animateProperty(ROTATION, value);
533 * This method will cause the View's <code>rotation</code> property to be animated by the
541 animatePropertyBy(ROTATION, value);
    [all...]
RenderNodeAnimator.java 44 public static final int ROTATION = 5;
73 put(ViewPropertyAnimator.ROTATION, ROTATION);
View.java 658 * rotation, translation and alpha of a view over time. If the animation is
    [all...]
  /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);
  /frameworks/base/libs/hwui/
Animator.h 197 ROTATION,
RenderNode.h 100 ROTATION = 1 << 7,
Animator.cpp 323 {RenderNode::ROTATION, &RenderProperties::getRotation, &RenderProperties::setRotation },
  /frameworks/base/packages/SystemUI/src/com/android/systemui/qs/
TouchAnimator.java 157 case "rotation":
158 return View.ROTATION;
  /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";
  /cts/tests/tests/view/src/android/view/cts/
MotionEventTest.java 369 // Each point 'i' is a point on a circle of radius ROTATION centered at (3,2) at an angle
372 // and check rotation. We set the orientation to the same angle.
377 final float ROTATION = ARC * 2;
409 // Apply a rotation about the origin by ROTATION degrees clockwise.
411 matrix.setRotate(ROTATION);
420 final float angle = (float) ((i * ARC + ROTATION) * PI_180);
SurfaceViewSyncTests.java 315 PropertyValuesHolder.ofFloat(View.ROTATION, 45f, 45f))),
  /frameworks/base/packages/SystemUI/src/com/android/systemui/
DessertCaseView.java 437 ObjectAnimator.ofFloat(v, View.ROTATION, rot),
  /frameworks/base/graphics/java/android/graphics/drawable/
VectorDrawable.java 121 * <dt><code>android:rotation</code></dt>
122 * <dd>The degrees of rotation of the group.</dd>
125 * <dd>The X coordinate of the pivot for the scale and rotation of the group.
129 * <dd>The Y coordinate of the pivot for the scale and rotation of the group.
236 * android:rotation=&quot;45.0&quot; &gt;
    [all...]
  /external/sl4a/ScriptingLayerForAndroid/src/org/connectbot/
ConsoleActivity.java 569 String rotate = prefs.getString(PreferenceConstants.ROTATION, rotateDefault);
    [all...]
  /frameworks/base/core/jni/
android_view_RenderNode.cpp 294 jobject clazz, jlong renderNodePtr, float rotation) {
295 return SET_AND_DIRTY(setRotation, rotation, RenderNode::ROTATION);
  /frameworks/base/core/tests/coretests/src/android/animation/
AnimatorSetActivityTest.java 59 a3 = ObjectAnimator.ofFloat(square3, View.ROTATION, 0, 90).setDuration(450);
  /prebuilts/tools/common/m2/repository/itext/itext/2.0.8/
itext-2.0.8.jar 
  /external/libgdx/backends/gdx-backend-android/libs/
android-4.4.jar 

Completed in 1066 milliseconds

1 2