HomeSort by relevance Sort by last modified time
    Searched full:transformation (Results 1 - 25 of 1320) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /cts/tests/tests/view/src/android/view/animation/cts/
TransformationTest.java 21 import android.view.animation.Transformation;
26 new Transformation();
30 final Transformation t1 = new Transformation();
31 final Transformation t2 = new Transformation();
36 t1.setTransformationType(Transformation.TYPE_MATRIX);
37 t2.setTransformationType(Transformation.TYPE_ALPHA);
44 assertEquals(Transformation.TYPE_ALPHA, t2.getTransformationType());
46 t1.setTransformationType(Transformation.TYPE_IDENTITY)
85 final Transformation transformation = new Transformation(); local
112 final Transformation transformation = new Transformation(); local
131 final Transformation transformation = new Transformation(); local
    [all...]
AlphaAnimationTest.java 24 import android.view.animation.Transformation;
52 Transformation transformation = new Transformation(); local
53 assertEquals(1.0f, transformation.getAlpha(), 0.0001f);
55 animation.applyTransformation(0.0f, transformation);
56 assertEquals(0.0f, transformation.getAlpha(), 0.0001f);
58 animation.applyTransformation(0.5f, transformation);
59 assertEquals(0.5f, transformation.getAlpha(), 0.0001f);
61 animation.applyTransformation(1.0f, transformation);
    [all...]
RotateAnimationTest.java 29 import android.view.animation.Transformation;
85 Transformation transformation = new Transformation(); local
101 rotateAnimation.getTransformation(startTime, transformation);
102 assertMatrixEquals(expectedMatrix, transformation.getMatrix());
103 transformation.clear();
104 rotateAnimation.applyTransformation(0.0f, transformation);
105 assertMatrixEquals(expectedMatrix, transformation.getMatrix());
109 rotateAnimation.getTransformation(startTime + DURATION / 2, transformation);
136 Transformation transformation = new Transformation(); local
    [all...]
TranslateAnimationTest.java 28 import android.view.animation.Transformation;
88 final Transformation transformation = new Transformation(); local
102 translateAnimation.getTransformation(startTime, transformation);
103 transformation.getMatrix().getValues(values);
107 transformation.clear();
108 translateAnimation.getTransformation(startTime + DURATION / 2, transformation);
109 transformation.getMatrix().getValues(values);
113 transformation.clear()
147 final Transformation transformation = new Transformation(); local
    [all...]
CycleInterpolatorTest.java 30 import android.view.animation.Transformation;
78 Transformation transformation = new Transformation(); local
80 anim.getTransformation(startTime, transformation);
81 final float alpha1 = transformation.getAlpha();
84 anim.getTransformation(startTime + 500, transformation);
85 final float alpha2 = transformation.getAlpha();
88 anim.getTransformation(startTime + 1000, transformation);
89 final float alpha3 = transformation.getAlpha()
    [all...]
AccelerateInterpolatorTest.java 33 import android.view.animation.Transformation;
85 Transformation transformation = new Transformation(); local
87 anim.getTransformation(startTime, transformation);
88 float alpha1 = transformation.getAlpha();
91 anim.getTransformation(startTime + 250, transformation);
92 float alpha2 = transformation.getAlpha();
94 anim.getTransformation(startTime + 500, transformation);
95 float alpha3 = transformation.getAlpha()
    [all...]
DecelerateInterpolatorTest.java 33 import android.view.animation.Transformation;
88 Transformation transformation = new Transformation(); local
90 anim.getTransformation(startTime, transformation);
91 float alpha1 = transformation.getAlpha();
94 anim.getTransformation(startTime + 500, transformation);
95 float alpha2 = transformation.getAlpha();
97 anim.getTransformation(startTime + 1000, transformation);
98 float alpha3 = transformation.getAlpha()
    [all...]
LinearInterpolatorTest.java 27 import android.view.animation.Transformation;
83 Transformation transformation = new Transformation(); local
85 anim.getTransformation(startTime, transformation);
86 final float alpha1 = transformation.getAlpha();
89 anim.getTransformation(startTime + LINEAR_ALPHA_TIME_STEP, transformation);
90 final float alpha2 = transformation.getAlpha();
92 anim.getTransformation(startTime + LINEAR_ALPHA_TIME_STEP * 2, transformation);
93 final float alpha3 = transformation.getAlpha()
    [all...]
ScaleAnimationTest.java 30 import android.view.animation.Transformation;
72 final Transformation transformation = new Transformation(); local
73 transformation.setTransformationType(Transformation.TYPE_MATRIX);
81 scaleAnimation.applyTransformation(0.0f, transformation);
82 transformation.getMatrix().getValues(values);
87 scaleAnimation.applyTransformation(0.5f, transformation);
88 transformation.getMatrix().getValues(values)
    [all...]
AccelerateDecelerateInterpolatorTest.java 33 import android.view.animation.Transformation;
79 Transformation transformation = new Transformation(); local
81 anim.getTransformation(startTime, transformation);
82 float alpha1 = transformation.getAlpha();
85 anim.getTransformation(startTime + 500, transformation);
86 float alpha2 = transformation.getAlpha();
88 anim.getTransformation(startTime + 1000, transformation);
89 float alpha3 = transformation.getAlpha()
    [all...]
AnimationTest.java 35 import android.view.animation.Transformation;
122 Transformation transformation = new Transformation(); local
124 animation.getTransformation(animation.getStartTime() - 1, transformation); local
125 float alpha = transformation.getAlpha();
128 transformation = new Transformation();
131 transformation); local
132 alpha = transformation.getAlpha()
143 animation.getTransformation(animation.getStartTime() - 1, transformation); local
149 transformation); local
161 animation.getTransformation(animation.getStartTime() - 1, transformation); local
167 transformation); local
226 Transformation transformation = new Transformation(); local
348 Transformation transformation = new Transformation(); local
424 Transformation transformation = new Transformation(); local
    [all...]
LayoutAnimationControllerTest.java 37 import android.view.animation.Transformation;
92 Transformation transformation1 = new Transformation();
93 Transformation transformation2 = new Transformation();
94 Transformation transformation3 = new Transformation();
126 transformation1 = new Transformation();
127 transformation2 = new Transformation();
128 transformation3 = new Transformation();
    [all...]
AnimationSetTest.java 33 import android.view.animation.Transformation;
302 final Transformation transformation = new Transformation(); local
303 final Transformation expectedTransformation = new Transformation();
304 final Transformation tempTransformation = new Transformation();
306 assertEquals(result, animationSet.getTransformation(currentTime, transformation));
313 assertTransformationEquals(expectedTransformation, transformation);
381 final Transformation transformation = new Transformation(); local
    [all...]
  /frameworks/base/core/java/android/view/animation/
Transformation.java 24 * Defines the transformation to be applied at
28 public class Transformation {
30 * Indicates a transformation that has no effect (alpha = 1 and identity matrix.)
34 * Indicates a transformation that applies an alpha only (uses an identity matrix.)
38 * Indicates a transformation that applies a matrix only (alpha = 1.)
42 * Indicates a transformation that applies an alpha and a matrix.
51 * Creates a new transformation with alpha = 1 and the identity matrix.
53 public Transformation() {
58 * Reset the transformation to a state that leaves the object
59 * being animated in an unmodified state. The transformation type i
    [all...]
Animation.java 53 * 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
119 * Indicates whether the animation transformation should be applied before the
126 * Indicates whether the animation transformation should be applied after the
206 Transformation mTransformation = new Transformation();
207 Transformation mPreviousTransformation = new Transformation();
    [all...]
  /external/llvm/test/Transforms/InstCombine/
README.txt 1 This directory contains test cases for the instcombine transformation. The
  /dalvik/dx/tests/100-local-mismatch/
expected.txt 2 local variable type mismatch: attempt to set or access a value of type int using a local variable of type java.lang.Object. This is symptomatic of .class transformation tools that ignore local variable information.
4 local variable type mismatch: attempt to set or access a value of type java.lang.Object using a local variable of type int. This is symptomatic of .class transformation tools that ignore local variable information.
6 local variable type mismatch: attempt to set or access a value of type int using a local variable of type byte[]. This is symptomatic of .class transformation tools that ignore local variable information.
8 local variable type mismatch: attempt to set or access a value of type java.lang.String using a local variable of type java.lang.Object[]. This is symptomatic of .class transformation tools that ignore local variable information.
  /external/libpng/
TODO 8 cHRM transformation.
10 Add "grayscale->palette" transformation and "palette->grayscale" detection.
13 Complete sRGB transformation (presently it simply uses gamma=0.45455).
23 background and doing rgb-to-gray transformation.
  /external/llvm/runtime/
README.txt 2 the LLVM compiler. For example, the automatic pool allocation transformation
  /libcore/luni/src/main/java/javax/xml/transform/
overview.html 9 <h2>Transformation API For XML </h2>
20 useful to an application without going through some sort of transformation,
25 or multiple, to a transformation, may be a URL, XML stream, a DOM tree, SAX
30 <p>The great challenge of a transformation API is how to deal with all the
62 transformation.</p>
68 transformation.</p>
72 <b>Transformation</b>
78 <b>Identity (or Copy) Transformation</b>
79 <br>The process of transformation from a source to a result,
89 some sense, a serialization is a specialized transformation.</p
    [all...]
package.html 11 <p>This package defines the generic APIs for processing transformation
12 instructions, and performing a transformation from source to result. These
15 transformation. It achieves this by defining
124 <p>If all that is desired is the simple identity transformation of a
134 <p>The transformation API throw three types of specialized exceptions. A
138 will typically be thrown when the transformation factory class specified with
145 the transformation instructions, for example when
150 exception that occurs during the course of a transformation. A transformer
156 in the source tree or transformation instructions the error occurred.
162 <p>Transformation warnings and errors are sent to a
    [all...]
  /frameworks/base/docs/html/training/graphics/opengl/
projection.jd 42 <li><em>Projection</em> - This transformation adjusts the coordinates of drawn objects based on
45 window. A projection transformation typically only has to be calculated when the proportions of the
52 <li><em>Camera View</em> - This transformation adjusts the coordinates of drawn objects based on a
55 drawn objects. A camera view transformation might be calculated only once when you establish your
66 <p>The data for a projection transformation is calculated in the {@link
70 projection transformation {@link android.opengl.Matrix} using the {@link
87 camera view transformation in the {@link android.opengl.GLSurfaceView.Renderer#onDrawFrame
90 <p class="note"><strong>Note:</strong> Just applying a projection transformation to your
92 view transformation in order for anything to show up on screen.</p>
97 <p>Complete the process of transforming your drawn objects by adding a camera view transformation a
    [all...]
  /libcore/luni/src/main/java/javax/crypto/
Cipher.java 42 * requested transformation, optionally with a provider. A transformation
53 * A valid transformation would be:
122 * The transformation.
124 private String transformation; field in class:Cipher
135 * @param transformation
136 * the name of the transformation that this cipher performs.
142 String transformation) {
150 this.transformation = transformation;
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gltrace/state/transforms/
IStateTransform.java 26 /** Apply this transformation on the given state. */
29 /** Revert this transformation from the given state. */
32 /** Obtain the property that will be affected by this transformation. */
  /frameworks/base/services/java/com/android/server/wm/
ScreenRotationAnimation.java 32 import android.view.animation.Transformation;
60 // animation applies a transformation while the rotation is in progress.
63 final Transformation mStartExitTransformation = new Transformation();
65 final Transformation mStartEnterTransformation = new Transformation();
67 final Transformation mStartFrameTransformation = new Transformation();
70 // animation needs to undo the transformation of the starting animation.
74 final Transformation mFinishExitTransformation = new Transformation()
    [all...]

Completed in 1484 milliseconds

1 2 3 4 5 6 7 8 91011>>