Searched defs:transform (Results 1 - 4 of 4) sorted by relevance

/development/samples/ApiDemos/src/com/example/android/apis/graphics/kube/
H A DGLVertex.java73 public void update(IntBuffer vertexBuffer, M4 transform) { argument
77 if (transform == null) {
83 transform.multiply(this, temp);
H A DGLWorld.java67 public void transformVertex(GLVertex vertex, M4 transform) { argument
68 vertex.update(mVertexBuffer, transform);
H A DGLShape.java72 public void animateTransform(M4 transform) { argument
73 mAnimateTransform = transform;
76 transform = mTransform.multiply(transform);
81 mWorld.transformVertex(vertex, transform);
/development/samples/XmlAdapters/src/com/example/android/xmladapters/
H A DAdapters.java172 * <li><code>&lt;transform /&gt;</code>: Transforms a column's value using an expression
176 * mix <code>&lt;map /&gt;</code> and <code>&lt;transform /&gt;</code> tags. If several
177 * <code>&lt;transform /&gt;</code> tags are specified, only the last one is retained.</p>
191 * <a name="xml-cursor-adapter-bind-transformation-transform"></a>
192 * <p><strong>&lt;transform /&gt;</strong></p>
193 * <p>A simple transform that occurs either by calling a specified class or by performing
269 * to transform the value retrieved from the cursor. The transformation is guaranteed
325 * <p>Interface used to transform data coming out of a {@link android.database.Cursor}
328 * <p>Transformations are used to transform text-based data (in the form of a String),
329 * or to transform dat
362 public abstract String transform(Cursor cursor, int columnIndex); method in class:Adapters.CursorTransformation
1004 public String transform(Cursor cursor, int columnIndex) { method in class:Adapters.IdentityTransformation
1057 public String transform(Cursor cursor, int columnIndex) { method in class:Adapters.ExpressionTransformation
1133 public String transform(Cursor cursor, int columnIndex) { method in class:Adapters.MapTransformation
[all...]

Completed in 53 milliseconds