Searched refs:Transformation (Results 1 - 17 of 17) sorted by relevance

/frameworks/base/core/java/android/view/animation/
H A DTransformation.java28 public class Transformation { class
53 public Transformation() { method in class:Transformation
98 public void set(Transformation t) {
105 * Apply this Transformation to an existing Transformation, e.g. apply
109 public void compose(Transformation t) {
115 * Like {@link #compose(Transformation)} but does this.postConcat(t) of
119 public void postCompose(Transformation t) {
150 sb.append("Transformation");
H A DAnimation.java53 * time when {@link #getTransformation(long, Transformation)} is invoked for the
97 * Set by {@link #getTransformation(long, Transformation)} when the animation ends.
102 * Set by {@link #getTransformation(long, Transformation)} when the animation starts.
107 * Set by {@link #getTransformation(long, Transformation)} when the animation repeats
206 Transformation mTransformation = new Transformation();
207 Transformation mPreviousTransformation = new Transformation();
266 animation.mTransformation = new Transformation();
267 animation.mPreviousTransformation = new Transformation();
[all...]
H A DAlphaAnimation.java26 * changing the alpha property of a {@link Transformation}
64 * Changes the alpha property of the supplied {@link Transformation}
67 protected void applyTransformation(float interpolatedTime, Transformation t) {
H A DAnimationSet.java68 private Transformation mTempTransformation = new Transformation();
128 animation.mTempTransformation = new Transformation();
345 final Transformation temp = mTempTransformation;
347 final Transformation previousTransformation = mPreviousTransformation;
369 public boolean getTransformation(long currentTime, Transformation t) {
372 final Transformation temp = mTempTransformation;
H A DRotateAnimation.java166 protected void applyTransformation(float interpolatedTime, Transformation t) {
H A DTranslateAnimation.java150 protected void applyTransformation(float interpolatedTime, Transformation t) {
H A DScaleAnimation.java241 protected void applyTransformation(float interpolatedTime, Transformation t) {
/frameworks/base/services/java/com/android/server/wm/
H A DScreenRotationAnimation.java36 import android.view.animation.Transformation;
70 final Transformation mStartExitTransformation = new Transformation();
72 final Transformation mStartEnterTransformation = new Transformation();
74 final Transformation mStartFrameTransformation = new Transformation();
81 final Transformation mFinishExitTransformation = new Transformation();
83 final Transformation mFinishEnterTransformatio
[all...]
H A DAppWindowAnimator.java12 import android.view.animation.Transformation;
27 final Transformation transformation = new Transformation();
53 final Transformation thumbnailTransformation = new Transformation();
329 public boolean getTransformation(long currentTime, Transformation outTransformation) {
H A DWindowStateAnimator.java40 import android.view.animation.Transformation;
69 final Transformation mUniverseTransform = new Transformation();
78 final Transformation mTransformation = new Transformation();
840 Transformation attachedTransformation =
843 Transformation appTransformation = (mAppAnimator != null && mAppAnimator.hasTransformation)
H A DWindowManagerService.java134 import android.view.animation.Transformation;
2696 Transformation transform = window.mWinAnimator.mUniverseTransform;
/frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/
H A DTransformsAndAnimationsActivity.java27 import android.view.animation.Transformation;
193 protected boolean getChildStaticTransformation(View child, Transformation t) {
/frameworks/support/v7/appcompat/src/android/support/v7/internal/widget/
H A DProgressBarICS.java47 import android.view.animation.Transformation;
90 private Transformation mTransformation;
625 mTransformation = new Transformation();
/frameworks/base/core/java/android/widget/
H A DProgressBar.java54 import android.view.animation.Transformation;
210 private Transformation mTransformation;
864 mTransformation = new Transformation();
H A DGallery.java38 import android.view.animation.Transformation;
298 protected boolean getChildStaticTransformation(View child, Transformation t) {
1527 * Transformation information along with previous position/transformation
/frameworks/base/core/java/android/view/
H A DViewGroup.java46 import android.view.animation.Transformation;
131 * A Transformation used when drawing children, to
134 private Transformation mChildTransformation;
142 * A Transformation used to calculate a correct
145 Transformation mInvalidationTransformation;
269 * {@link #getChildStaticTransformation(View, android.view.animation.Transformation)} to be
273 * {@link #getChildStaticTransformation(View, android.view.animation.Transformation)} should
3204 * {@link #getChildStaticTransformation(View, android.view.animation.Transformation)} to be
3208 * {@link #getChildStaticTransformation(View, android.view.animation.Transformation)} should
3213 * @see #getChildStaticTransformation(View, android.view.animation.Transformation)
[all...]
H A DView.java75 import android.view.animation.Transformation;
13919 Transformation invalidationTransform;
13929 final Transformation t = parent.getChildTransformation();
13933 parent.mInvalidationTransformation = new Transformation();
13991 final Transformation t = parentVG.getChildTransformation();
13994 if (transformType != Transformation.TYPE_IDENTITY) {
13995 if ((transformType & Transformation.TYPE_ALPHA) != 0) {
13998 if ((transformType & Transformation.TYPE_MATRIX) != 0) {
14048 Transformation transformToApply = null;
14082 final Transformation
[all...]

Completed in 380 milliseconds