Searched refs:Transform (Results 1 - 25 of 237) sorted by relevance

12345678910

/external/libgdx/extensions/gdx-box2d/gdx-box2d-gwt/src/com/badlogic/gdx/physics/box2d/gwt/emu/org/jbox2d/collision/
H A DDistanceInput.java27 import org.jbox2d.common.Transform;
38 public Transform transformA = new Transform();
39 public Transform transformB = new Transform();
/external/icu/android_icu4j/src/main/java/android/icu/text/
H A DTransform.java19 public interface Transform<S,D> { interface
21 * Transform the input in some way, to be determined by the subclass.
H A DStringTransform.java17 public interface StringTransform extends Transform<String,String> {
19 * Transform the text in some way, to be determined by the subclass.
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
H A DStringTransform.java16 public interface StringTransform extends Transform<String,String> {
18 * Transform the text in some way, to be determined by the subclass.
H A DTransform.java18 public interface Transform<S,D> { interface
20 * Transform the input in some way, to be determined by the subclass.
/external/libgdx/extensions/gdx-box2d/gdx-box2d-gwt/src/com/badlogic/gdx/physics/box2d/gwt/emu/org/jbox2d/common/
H A DTransform.java34 public class Transform implements Serializable { class in inherits:Serializable
44 public Transform() { method in class:Transform
50 public Transform(final Transform xf) { method in class:Transform
56 public Transform(final Vec2 _position, final Rot _R) { method in class:Transform
62 public final Transform set(final Transform xf) {
85 public final static Vec2 mul(final Transform T, final Vec2 v) {
89 public final static void mulToOut(final Transform T, final Vec2 v, final Vec2 out) {
95 public final static void mulToOutUnsafe(final Transform
[all...]
/external/libgdx/extensions/gdx-box2d/gdx-box2d-gwt/src/com/badlogic/gdx/physics/box2d/gwt/emu/org/jbox2d/collision/shapes/
H A DShape.java29 import org.jbox2d.common.Transform;
88 public abstract boolean testPoint(final Transform xf, final Vec2 p);
99 public abstract boolean raycast(RayCastOutput output, RayCastInput input, Transform transform,
109 public abstract void computeAABB(final AABB aabb, final Transform xf, int childIndex);
129 public abstract float computeDistanceToOut(Transform xf, Vec2 p, int childIndex, Vec2 normalOut);
/external/eigen/Eigen/src/Eigen2Support/Geometry/
H A DTransform.h27 * \class Transform
43 class Transform class in namespace:Eigen
79 inline Transform() { } function in class:Eigen::Transform
81 inline Transform(const Transform& other) function in class:Eigen::Transform
86 inline explicit Transform(const TranslationType& t) { *this = t; } function in class:Eigen::Transform
87 inline explicit Transform(const ScalingType& s) { *this = s; } function in class:Eigen::Transform
89 inline explicit Transform(const RotationBase<Derived, Dim>& r) { *this = r; } function in class:Eigen::Transform
91 inline Transform& operator=(const Transform
116 inline explicit Transform(const MatrixBase<OtherDerived>& other) function in class:Eigen::Transform
263 Transform(const Transform<OtherScalarType,Dim>& other) argument
300 Transform<Scalar,Dim>::Transform(const QMatrix& other) function in class:Eigen::Transform
339 Transform<Scalar,Dim>::Transform(const QTransform& other) function in class:Eigen::Transform
[all...]
/external/llvm/include/llvm/ExecutionEngine/Orc/
H A DIRTransformLayer.h35 TransformFtor Transform = TransformFtor())
36 : BaseLayer(BaseLayer), Transform(std::move(Transform)) {}
50 *I = Transform(std::move(*I));
88 TransformFtor& getTransform() { return Transform; }
91 const TransformFtor& getTransform() const { return Transform; }
95 TransformFtor Transform; member in class:llvm::orc::IRTransformLayer
H A DObjectTransformLayer.h35 TransformFtor Transform = TransformFtor())
36 : BaseLayer(BaseLayer), Transform(std::move(Transform)) {}
49 *I = Transform(std::move(*I));
91 TransformFtor &getTransform() { return Transform; }
94 const TransformFtor &getTransform() const { return Transform; }
98 TransformFtor Transform; member in class:llvm::orc::ObjectTransformLayer
/external/mesa3d/src/mesa/main/
H A Dclip.c45 _mesa_transform_vector(ctx->Transform._ClipUserPlane[plane],
46 ctx->Transform.EyeUserPlane[plane],
84 if (TEST_EQ_4V(ctx->Transform.EyeUserPlane[p], equation))
88 COPY_4FV(ctx->Transform.EyeUserPlane[p], equation);
90 if (ctx->Transform.ClipPlanesEnabled & (1 << p)) {
112 equation[0] = (GLdouble) ctx->Transform.EyeUserPlane[p][0];
113 equation[1] = (GLdouble) ctx->Transform.EyeUserPlane[p][1];
114 equation[2] = (GLdouble) ctx->Transform.EyeUserPlane[p][2];
115 equation[3] = (GLdouble) ctx->Transform.EyeUserPlane[p][3];
H A Dmatrix.c152 if (ctx->Transform.MatrixMode == mode && mode != GL_TEXTURE)
227 ctx->Transform.MatrixMode = mode;
249 _mesa_lookup_enum_by_nr(ctx->Transform.MatrixMode));
252 if (ctx->Transform.MatrixMode == GL_TEXTURE) {
259 _mesa_lookup_enum_by_nr(ctx->Transform.MatrixMode));
289 _mesa_lookup_enum_by_nr(ctx->Transform.MatrixMode));
292 if (ctx->Transform.MatrixMode == GL_TEXTURE) {
299 _mesa_lookup_enum_by_nr(ctx->Transform.MatrixMode));
568 * date across changes to the __struct gl_contextRec::Transform attributes.
579 if (ctx->Transform
[all...]
/external/mesa3d/src/mesa/state_tracker/
H A Dst_atom_clip.c50 STATIC_ASSERT(sizeof(clip.ucp) <= sizeof(ctx->Transform._ClipUserPlane));
60 use_eye ? ctx->Transform.EyeUserPlane
61 : ctx->Transform._ClipUserPlane, sizeof(clip.ucp));
/external/eigen/Eigen/src/Geometry/
H A DTransform.h19 template<typename Transform>
24 Dim = Transform::Dim,
25 HDim = Transform::HDim,
26 Mode = Transform::Mode,
71 * \class Transform
88 * this class you have to think a Transform object as its internal
103 * However, unlike a plain matrix, the Transform class provides many features
105 * with any other transformations (Transform,Translation,RotationBase,Matrix)
152 * The concatenation of a Transform object with any kind of other transformation
153 * always returns a Transform objec
178 class Transform class in namespace:Eigen
232 inline Transform() function in class:Eigen::Transform
238 inline Transform(const Transform& other) function in class:Eigen::Transform
244 inline explicit Transform(const TranslationType& t) function in class:Eigen::Transform
249 inline explicit Transform(const UniformScaling<Scalar>& s) function in class:Eigen::Transform
255 inline explicit Transform(const RotationBase<Derived, Dim>& r) function in class:Eigen::Transform
268 inline explicit Transform(const EigenBase<OtherDerived>& other) function in class:Eigen::Transform
289 Transform(const Transform<Scalar,Dim,Mode,OtherOptions>& other) argument
297 Transform(const Transform<Scalar,Dim,OtherMode,OtherOptions>& other) argument
338 Transform(const ReturnByValue<OtherDerived>& other) function in class:Eigen::Transform
477 operator *(const Transform<Scalar,Dim,OtherMode,OtherOptions>& other) const argument
486 operator *(const Transform<Scalar,Dim,OtherMode,OtherOptions>& other) const argument
578 Transform(const Transform<OtherScalarType,Dim,Mode,Options>& other) argument
685 Transform<Scalar,Dim,Mode,Options>::Transform(const QMatrix& other) function in class:Eigen::Transform
726 Transform<Scalar,Dim,Mode,Options>::Transform(const QTransform& other) function in class:Eigen::Transform
[all...]
/external/libgdx/extensions/gdx-box2d/gdx-box2d-gwt/src/com/badlogic/gdx/physics/box2d/gwt/emu/org/jbox2d/dynamics/contacts/
H A DCircleContact.java29 import org.jbox2d.common.Transform;
46 public void evaluate(Manifold manifold, Transform xfA, Transform xfB) {
H A DPolygonAndCircleContact.java30 import org.jbox2d.common.Transform;
47 public void evaluate(Manifold manifold, Transform xfA, Transform xfB) {
H A DPolygonContact.java29 import org.jbox2d.common.Transform;
46 public void evaluate(Manifold manifold, Transform xfA, Transform xfB) {
H A DChainAndCircleContact.java31 import org.jbox2d.common.Transform;
51 public void evaluate(Manifold manifold, Transform xfA, Transform xfB) {
/external/libgdx/gdx/src/com/badlogic/gdx/graphics/g3d/utils/
H A DBaseAnimationController.java40 public final static class Transform implements Poolable { class in class:BaseAnimationController
45 public Transform () { method in class:BaseAnimationController.Transform
48 public Transform idt () {
55 public Transform set (final Vector3 t, final Quaternion r, final Vector3 s) {
62 public Transform set (final Transform other) {
66 public Transform lerp (final Transform target, final float alpha) {
70 public Transform lerp (final Vector3 targetT, final Quaternion targetR, final Vector3 targetS, final float alpha) {
92 private final Pool<Transform> transformPoo
[all...]
/external/icu/android_icu4j/src/main/tests/android/icu/dev/util/
H A DUnicodeTransform.java10 import android.icu.text.Transform;
16 public abstract class UnicodeTransform implements Transform<String,String> {
/external/icu/icu4j/main/tests/framework/src/com/ibm/icu/dev/util/
H A DUnicodeTransform.java9 import com.ibm.icu.text.Transform;
15 public abstract class UnicodeTransform implements Transform<String,String> {
/external/mesa3d/src/mesa/drivers/dri/i965/
H A Dgen6_clip_state.c50 if (!ctx->Transform.DepthClamp)
67 userclip = ctx->Transform.ClipPlanesEnabled;
/external/chromium-trace/catapult/common/py_utils/py_utils/refactor/
H A D__init__.py26 def Transform(transform, file_paths): function
/external/libgdx/extensions/gdx-box2d/gdx-box2d/src/com/badlogic/gdx/physics/box2d/
H A DTransform.java24 public class Transform { class
35 public Transform () { method in class:Transform
39 /** Constructs a new Transform instance with the given position and angle
42 public Transform (Vector2 position, float angle) { method in class:Transform
46 /** Constructs a new Transform instance with the given position and orientation
49 public Transform (Vector2 position, Vector2 orientation) { method in class:Transform
65 /** @return the position, modification of the vector has no effect on the Transform */
/external/libgdx/extensions/gdx-box2d/gdx-box2d-gwt/src/com/badlogic/gdx/physics/box2d/gwt/emu/com/badlogic/gdx/physics/box2d/
H A DTransform.java24 public class Transform { class
35 public Transform () { method in class:Transform
39 /** Constructs a new Transform instance with the given position and angle
42 public Transform (Vector2 position, float angle) { method in class:Transform
46 /** Constructs a new Transform instance with the given position and orientation
49 public Transform (Vector2 position, Vector2 orientation) { method in class:Transform
65 /** @return the position, modification of the vector has no effect on the Transform */

Completed in 2207 milliseconds

12345678910