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

1 2 3

  /external/sl4a/ScriptingLayerForAndroid/src/org/connectbot/util/
PreferenceConstants.java 33 public static final String ROTATION = "rotation";
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/sensors/sixdof/Dialogs/
BaseResultsDialog.java 38 ROTATION,
RobustnessResultDialog.java 48 mTextViews.put(ResultType.ROTATION, (TextView) mRootView.findViewById(R.id.tvRotationResult));
  /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,
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/sensors/sixdof/Utils/TestPhase/
RobustnessTest.java 78 robustnessTestResults.put(BaseResultsDialog.ResultType.ROTATION, rotationTest());
131 * Test to check whether the rotation test has passed based on the percent of failed rotations.
165 "Rotation test: Rotation fails were too great. Target rotation percent: "
167 " Failed rotation: " + failedRotations + " Total rotations:" + totalRotations + "\n";
173 * gets the result of comparing the current rotation
175 * @param rotationQuaternion The quaternions of the current rotation
176 * @param location The location of the point with the rotation
177 * @return The rotation about the current rotatio
180 RotationData rotation = ((RobustnessPath) mTestPath).handleRotation( local
    [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
SettingsButton.java 134 mAnimator = ObjectAnimator.ofFloat(this, View.ROTATION, 0, 360);
163 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 147 static final int ROTATION = 0x0020;
156 SCALE_X | SCALE_Y | ROTATION | ROTATION_X | ROTATION_Y | X | Y | Z;
521 * This method will cause the View's <code>rotation</code> property to be animated to the
528 public ViewPropertyAnimator rotation(float value) { method in class:ViewPropertyAnimator
529 animateProperty(ROTATION, value);
534 * This method will cause the View's <code>rotation</code> property to be animated by the
542 animatePropertyBy(ROTATION, value);
    [all...]
RenderNodeAnimator.java 43 public static final int ROTATION = 5;
72 put(ViewPropertyAnimator.ROTATION, 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/base/packages/SettingsLib/src/com/android/settingslib/graph/
SignalDrawable.java 474 private static final float ROTATION = -45f;
491 m.setRotate(ROTATION, width / 2, height / 2);
496 m.setRotate(-ROTATION, width / 2, height / 2);
501 m.setRotate(ROTATION, width / 2, height / 2);
  /frameworks/support/dynamic-animation/src/main/java/androidx/dynamicanimation/animation/
DynamicAnimation.java 130 * View's rotation property.
132 public static final ViewProperty ROTATION = new ViewProperty("rotation") {
359 if (mProperty == ROTATION || mProperty == ROTATION_X
513 * change is 1 (pixel). For {@link #ROTATION}, {@link #ROTATION_X} or {@link #ROTATION_Y}, the
  /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 190 ROTATION,
RenderNode.h 89 ROTATION = 1 << 7,
Animator.cpp 326 {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" },
  /frameworks/base/services/core/java/com/android/server/policy/
WindowOrientationListener.java 20 import static com.android.server.wm.WindowOrientationListenerProto.ROTATION;
143 * @param clearCurrentRotation True if the current proposed sensor rotation should be cleared as
208 * Sets the current rotation.
210 * @param rotation The current rotation.
212 public void setCurrentRotation(int rotation) {
214 mCurrentRotation = rotation;
219 * Gets the proposed rotation.
221 * This method only returns a rotation if the orientation listener is certain
222 * of its proposal. If the rotation is indeterminate, returns -1
    [all...]
  /cts/tests/tests/view/src/android/view/cts/
MotionEventTest.java 587 // Each point 'i' is a point on a circle of radius ROTATION centered at (3,2) at an angle
590 // and check rotation. We set the orientation to the same angle.
595 final float ROTATION = ARC * 2;
627 // Apply a rotation about the origin by ROTATION degrees clockwise.
629 matrix.setRotate(ROTATION);
638 final float angle = (float) ((i * ARC + ROTATION) * PI_180);
    [all...]
SurfaceViewSyncTest.java 327 PropertyValuesHolder.ofFloat(View.ROTATION, 45f, 45f))),
  /frameworks/base/media/java/android/media/
MediaRecorder.java 576 * add a composition matrix containing the rotation angle in the output
594 setParameter("video-param-rotation-angle-degrees=" + degrees);
    [all...]
  /frameworks/support/dynamic-animation/src/androidTest/java/androidx/dynamicanimation/tests/
SpringTests.java 238 final SpringAnimation anim1 = new SpringAnimation(mView1, DynamicAnimation.ROTATION, 0);
617 DynamicAnimation.SCALE_X, DynamicAnimation.SCALE_Y, DynamicAnimation.ROTATION,
  /frameworks/av/media/libstagefright/include/media/stagefright/
MediaCodecConstants.h 369 constexpr char KEY_ROTATION[] = "rotation-degrees";
395 constexpr char ROTATION[] = "android.media.mediacodec.rotation";

Completed in 1708 milliseconds

1 2 3