HomeSort by relevance Sort by last modified time
    Searched full:transformation (Results 26 - 50 of 1898) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/eigen/doc/
C08_TutorialGeometry.dox 19 - Projective or affine transformation matrices: see the Transform class. These are really matrices.
21 \note If you are working with OpenGL 4x4 matrices then Affine3f and Affine3d are what you want. Since Eigen defaults to column-major storage, you can directly use the Transform::data() method to pass your transformation matrix to OpenGL.
23 You can construct a Transform from an abstract transformation, like this:
39 \section TutorialGeoElementaryTransformations Transformation types
42 <tr><th>Transformation type</th><th>Typical initialization code</th></tr>
66 N-D \ref TutorialGeoTransform "Affine transformation"</td><td>\code
88 Any of the above transformation types can be converted to any other types of the same nature,
103 <a href="#" class="top">top</a>\section TutorialGeoCommontransformationAPI Common API across transformation types
106 generic algorithms working on any kind of transformation representations:
111 <tr class="alt"><td>Apply the transformation to a vector</td><td>\cod
    [all...]
  /cts/tests/tests/view/src/android/view/animation/cts/
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...]
GridLayoutAnimationControllerTest.java 32 import android.view.animation.Transformation;
129 Transformation transformation1 = new Transformation();
130 Transformation transformation2 = new Transformation();
131 Transformation transformation3 = new Transformation();
194 Transformation transformation1 = new Transformation();
195 Transformation transformation2 = new Transformation()
    [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...]
  /frameworks/base/core/java/android/view/animation/
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...]
AlphaAnimation.java 26 * 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) {
  /development/samples/ApiDemos/src/com/example/android/apis/graphics/
AnimateDrawable.java 23 import android.view.animation.Transformation;
28 private Transformation mTransformation = new Transformation();
  /external/chromium_org/third_party/libxslt/libxslt/
documents.h 56 XSLT_LOAD_DOCUMENT = 2 /* loading document at transformation time */
64 * @ctxt: the context, either a stylesheet or a transformation context
69 * transformation API themselve, for example when an xsl:import,
  /external/libxslt/libxslt/
documents.h 56 XSLT_LOAD_DOCUMENT = 2 /* loading document at transformation time */
64 * @ctxt: the context, either a stylesheet or a transformation context
69 * transformation API themselve, for example when an xsl:import,
  /external/eigen/Eigen/src/Eigen2Support/Geometry/
Scaling.h 18 * \brief Represents a possibly non uniform scaling transformation
23 * \note This class is not aimed to be used to store a scaling transformation,
39 /** corresponding linear transformation matrix type */
43 /** corresponding affine transformation type */
54 /** Constructs and initialize a uniform scaling transformation */
71 /** Constructs and initialize the scaling transformation from a vector of scaling coefficients */
84 /** Concatenates a scaling and an affine transformation */
87 /** Concatenates a scaling and a linear transformation matrix */
92 /** Concatenates a linear transformation matrix and a scaling */
Translation.h 18 * \brief Represents a translation transformation
23 * \note This class is not aimed to be used to store a translation transformation,
39 /** corresponding linear transformation matrix type */
41 /** corresponding scaling transformation type */
43 /** corresponding affine transformation type */
69 /** Constructs and initialize the scaling transformation from a vector of scaling coefficients */
82 /** Concatenates a translation and a linear transformation */
89 /** Concatenates a linear transformation and a translation */
102 /** Concatenates a translation and an affine transformation */
Transform.h 29 * \brief Represents an homogeneous transformation in a N dimensional space
48 Dim = _Dim, ///< space dimension in which the transformation holds
53 /** type of the matrix used to represent the transformation */
55 /** type of the matrix used to represent the linear part of the transformation */
57 /** type of read/write reference to the linear part of the transformation */
59 /** type of read/write reference to the linear part of the transformation */
69 /** corresponding scaling transformation type */
114 /** Constructs and initializes a transformation from a Dim^2 or a (Dim+1)^2 matrix. */
142 /** \returns a read-only expression of the transformation matrix */
144 /** \returns a writable expression of the transformation matrix *
    [all...]
  /external/eigen/Eigen/src/Geometry/
Translation.h 19 * \brief Represents a translation transformation
24 * \note This class is not aimed to be used to store a translation transformation,
40 /** corresponding linear transformation matrix type */
42 /** corresponding affine transformation type */
44 /** corresponding isometric transformation type */
70 /** Constructs and initialize the translation transformation from a vector of translation coefficients */
100 /** Concatenates a translation and a linear transformation */
109 /** \returns the concatenation of a linear transformation \a l with the translation \a t */
123 /** Concatenates a translation and a transformation */
Scaling.h 19 * \brief Represents a generic uniform scaling transformation
23 * This class represent a uniform scaling transformation. It is the return
25 * is used. In particular, this class is not aimed to be used to store a scaling transformation,
47 /** Constructs and initialize a uniform scaling transformation */
61 /** Concatenates a uniform scaling and an affine transformation */
70 /** Concatenates a uniform scaling and a linear transformation matrix */
107 /** Concatenates a linear transformation matrix and a uniform scaling */
  /external/guava/guava/src/com/google/common/base/
Charsets.java 42 * UTF-8: eight-bit UCS Transformation Format.
47 * UTF-16BE: sixteen-bit UCS Transformation Format, big-endian byte order.
52 * UTF-16LE: sixteen-bit UCS Transformation Format, little-endian byte order.
57 * UTF-16: sixteen-bit UCS Transformation Format, byte order identified by an optional byte-order
  /frameworks/base/services/java/com/android/server/wm/
AppWindowAnimator.java 12 import android.view.animation.Transformation;
27 final Transformation transformation = new Transformation(); field in class:AppWindowAnimator
53 final Transformation thumbnailTransformation = new Transformation();
90 transformation.clear();
91 transformation.setAlpha(mAppToken.isVisible() ? 1 : 0);
100 transformation.clear();
101 transformation.setAlpha(mAppToken.isVisible() ? 1 : 0)
    [all...]
ScreenRotationAnimation.java 36 import android.view.animation.Transformation;
67 // animation applies a transformation while the rotation is in progress.
70 final Transformation mStartExitTransformation = new Transformation();
72 final Transformation mStartEnterTransformation = new Transformation();
74 final Transformation mStartFrameTransformation = new Transformation();
77 // animation needs to undo the transformation of the starting animation.
81 final Transformation mFinishExitTransformation = new Transformation()
    [all...]
  /libcore/luni/src/main/java/javax/xml/transform/
ErrorListener.java 37 * <p>For transformation errors, a <code>Transformer</code> must use this
41 * <code>Transformer</code> is not required to continue with the transformation
45 * errors as well as transformation errors.</p>
57 * the transformation. It should still be possible for the
64 * chooses to discontinue the transformation.
74 * <p>The transformer must continue to try and provide normal transformation
83 * chooses to discontinue the transformation.
94 * transformation after invoking this method. It should still be possible for the
103 * chooses to discontinue the transformation.
  /libcore/luni/src/main/java/javax/xml/transform/sax/
SAXTransformerFactory.java 35 * for an XMLReader used during a transformation, it should use a URIResolver
65 * ContentHandler events into a Result, based on the transformation
68 * @param src The Source of the transformation instructions.
82 * @param templates The compiled transformation instructions.
94 * ContentHandler events into a Result. The transformation
95 * is defined as an identity (or copy) transformation, for example
122 * transformation instructions.
124 * @param src The Source of the transformation instructions.
137 * @param templates The compiled transformation instructions.
  /development/samples/XmlAdapters/src/com/example/android/xmladapters/
Adapters.java 103 * <a href="#xml-cursor-adapter-bind-data-types">transformation</a> classes.
123 * <a href="#xml-cursor-adapter-bind-data-transformation">data transformations</a> can
139 * <a href="#xml-cursor-adapter-bind-data-transformation">data transformations</a> children
165 * <a name="xml-cursor-adapter-bind-transformation"></a>
167 * <p>When defining a data binding you can specify an optional transformation by using one
179 * <a name="xml-cursor-adapter-bind-transformation-map" />
191 * <a name="xml-cursor-adapter-bind-transformation-transform"></a>
196 * <li><code>android:withExpression</code>: The transformation expression. The expression is
198 * transformation each column name is replaced by its value. All columns must have been
268 * <p>A binder is provided with a cursor transformation which may or may not be use
725 CursorTransformation transformation = mIdentity; local
835 CursorTransformation transformation = null; local
    [all...]
UrlImageBinder.java 32 public UrlImageBinder(Context context, Adapters.CursorTransformation transformation) {
33 super(context, transformation);
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/testdata/
anim1-expected-completion56.txt 6 android:fillBefore : When set to true or when fillEnabled is not set to true, the animation transformation is applied before the animation has started. [boolean]
7 android:fillAfter : When set to true, the animation transformation is applied after the animation is over. [boolean]
  /external/chromium_org/courgette/
ensemble.h 12 // transformation.
110 // transformation-1-method-id
111 // transformation-2-method-id
113 // transformation-1-initial-parameters
114 // transformation-2-initial-parameters
118 // transformation-1-parameters
119 // transformation-2-parameters
142 // transformation used on an Element. The patching itself happens outside the
185 // transformation used (and adjustment used) when differentially compressing one
204 // Returns the TransformationMethodId that identies this transformation
    [all...]
  /libcore/support/src/test/java/tests/security/
AlgorithmParameterSymmetricHelper.java 66 String transformation = algorithmName; local
69 transformation += "/" + blockmode;
71 cipher = Cipher.getInstance(transformation);
  /external/chromium_org/third_party/mesa/src/src/mesa/math/
m_xform.c 27 * Matrix/vertex/vector transformation stuff
31 * 1. 4x4 transformation matrices are stored in memory in column major order.
33 * 3. Transformation of a point p by a matrix M is: p' = M * p
97 * to optimized transformation functions. This is where we can test for

Completed in 1702 milliseconds

12 3 4 5 6 7 8 91011>>