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

12345678

/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/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
/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...]
H A DScaling.h26 * but rather to make easier the constructions and updates of Transform objects.
30 * \sa Scaling(), class DiagonalMatrix, MatrixBase::asDiagonal(), class Translation, class Transform
59 inline Transform<Scalar,Dim,Affine> operator* (const Translation<Scalar,Dim>& t) const;
63 inline Transform<Scalar,Dim,(int(Mode)==int(Isometry)?Affine:Mode)> operator* (const Transform<Scalar,Dim, Mode, Options>& t) const argument
65 Transform<Scalar,Dim,(int(Mode)==int(Isometry)?Affine:Mode)> res = t;
153 inline Transform<Scalar,Dim,Affine>
156 Transform<Scalar,Dim,Affine> res;
/external/jmonkeyengine/engine/src/core/com/jme3/math/
H A DTransform.java45 public final class Transform implements Savable, Cloneable, java.io.Serializable { class in inherits:Savable,Cloneable,java.io.Serializable
49 public static final Transform IDENTITY = new Transform();
55 public Transform(Vector3f translation, Quaternion rot){ method in class:Transform
60 public Transform(Vector3f translation, Quaternion rot, Vector3f scale){ method in class:Transform
65 public Transform(Vector3f translation){ method in class:Transform
69 public Transform(Quaternion rot){ method in class:Transform
73 public Transform(){ method in class:Transform
82 public Transform setRotation(Quaternion rot) {
92 public Transform setTranslatio
[all...]
/external/jmonkeyengine/engine/src/core/com/jme3/scene/
H A DSimpleBatchNode.java7 import com.jme3.math.Transform;
48 protected Transform getTransforms(Geometry geom){
/external/jmonkeyengine/engine/src/jbullet/com/jme3/bullet/objects/infos/
H A DRigidBodyMotionState.java35 import com.bulletphysics.linearmath.Transform;
51 private Transform motionStateTrans = new Transform(Converter.convert(new Matrix3f()));
74 public synchronized Transform getWorldTransform(Transform t) {
83 public synchronized void setWorldTransform(Transform worldTrans) {
169 // public synchronized boolean applyTransform(com.jme3.math.Transform trans) {
/external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/constraints/
H A DFeature.java6 import com.jme3.math.Transform;
122 public Transform getTransform() {
149 Transform result = new Transform(loc, rot);
161 Transform localTransform = new Transform(bone.getLocalPosition(), bone.getLocalRotation());
165 Transform worldTransform = new Transform(bone.getWorldBindPosition(), bone.getWorldBindRotation());
169 Transform poseTransform = new Transform(bon
[all...]
/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/jmonkeyengine/engine/src/bullet-common/com/jme3/bullet/util/
H A DCollisionShapeFactory.java38 import com.jme3.math.Transform;
59 private static Transform getTransform(Spatial spat, Spatial parent) {
60 Transform shapeTransform = new Transform();
67 Transform trans = new Transform();
89 Transform trans = getTransform(spatial, realRootNode);
101 Transform trans = getTransform(spatial, realRootNode);
116 Transform trans = getTransform(spatial, realRootNode);
122 Transform tran
[all...]
/external/nanopb-c/tools/
H A Dmake_windows_package.sh40 <file name="msvcr90.dll" hashalg="SHA1" hash="e0dcdcbfcb452747da530fae6b000d47c8674671"><asmv2:hash xmlns:asmv2="urn:schemas-microsoft-com:asm.v2" xmlns:dsig="http://www.w3.org/2000/09/xmldsig#"><dsig:Transforms><dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity"></dsig:Transform></dsig:Transforms><dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha1"></dsig:DigestMethod><dsig:DigestValue>KSaO8M0iCtPF6YEr79P1dZsnomY=</dsig:DigestValue></asmv2:hash></file> <file name="msvcp90.dll" hashalg="SHA1" hash="81efe890e4ef2615c0bb4dda7b94bea177c86ebd"><asmv2:hash xmlns:asmv2="urn:schemas-microsoft-com:asm.v2" xmlns:dsig="http://www.w3.org/2000/09/xmldsig#"><dsig:Transforms><dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity"></dsig:Transform></dsig:Transforms><dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha1"></dsig:DigestMethod><dsig:DigestValue>ojDmTgpYMFRKJYkPcM6ckpYkWUU=</dsig:DigestValue></asmv2:hash></file> <file name="msvcm90.dll" hashalg="SHA1" hash="5470081b336abd7b82c6387567a661a729483b04"><asmv2:hash xmlns:asmv2="urn:schemas-microsoft-com:asm.v2" xmlns:dsig="http://www.w3.org/2000/09/xmldsig#"><dsig:Transforms><dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity"></dsig:Transform></dsig:Transforms><dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha1"></dsig:DigestMethod><dsig:DigestValue>tVogb8kezDre2mXShlIqpp8ErIg=</dsig:DigestValue></asmv2:hash></file>
/external/jmonkeyengine/engine/src/jbullet/com/jme3/bullet/collision/shapes/
H A DCompoundCollisionShape.java35 import com.bulletphysics.linearmath.Transform;
70 Transform transA = new Transform(Converter.convert(new Matrix3f()));
85 Transform transA = new Transform(Converter.convert(rotation));
96 Transform transA = new Transform(Converter.convert(rotation));
/external/jmonkeyengine/engine/src/jbullet/com/jme3/bullet/joints/
H A DSixDofJoint.java35 import com.bulletphysics.linearmath.Transform;
82 Transform transA = new Transform(Converter.convert(rotA));
86 Transform transB = new Transform(Converter.convert(rotB));
102 Transform transA = new Transform(Converter.convert(new Matrix3f()));
105 Transform transB = new Transform(Converter.convert(new Matrix3f()));
164 Transform trans
[all...]
/external/icu/icu4j/main/classes/translit/src/com/ibm/icu/text/
H A DSourceTargetUtility.java18 final Transform<String, String> transform;
25 public SourceTargetUtility(Transform<String, String> transform) {
29 public SourceTargetUtility(Transform<String, String> transform, Normalizer2 normalizer) {
/external/skia/src/gpu/gl/
H A DGrGLPrimitiveProcessor.h115 struct Transform { struct in class:GrGLPrimitiveProcessor
116 Transform() : fType(kVoid_GrSLType) { fCurrentValue = SkMatrix::InvalidMatrix(); } function in struct:GrGLPrimitiveProcessor::Transform
122 SkSTArray<8, SkSTArray<2, Transform, true> > fInstalledTransforms;
/external/mesa3d/src/mesa/tnl/
H A Dt_vb_normals.c114 if (ctx->Transform.Normalize) {
117 else if (ctx->Transform.RescaleNormals &&
131 if (ctx->Transform.Normalize) {
134 else if (!ctx->Transform.RescaleNormals &&
H A Dt_vb_vertex.c70 if (ctx->Transform.ClipPlanesEnabled & (1 << p)) { \
72 const GLfloat a = ctx->Transform._ClipUserPlane[p][0]; \
73 const GLfloat b = ctx->Transform._ClipUserPlane[p][1]; \
74 const GLfloat c = ctx->Transform._ClipUserPlane[p][2]; \
75 const GLfloat d = ctx->Transform._ClipUserPlane[p][3]; \
126 if (ctx->Transform.DepthClamp) {
194 !ctx->Transform.DepthClamp );
203 !ctx->Transform.DepthClamp );
213 if (ctx->Transform.ClipPlanesEnabled) {
H A Dt_vb_cliptmp.h141 if (ctx->Transform.ClipPlanesEnabled & (1 << p)) {
142 const GLfloat a = ctx->Transform._ClipUserPlane[p][0];
143 const GLfloat b = ctx->Transform._ClipUserPlane[p][1];
144 const GLfloat c = ctx->Transform._ClipUserPlane[p][2];
145 const GLfloat d = ctx->Transform._ClipUserPlane[p][3];
230 if (ctx->Transform.ClipPlanesEnabled & (1 << p)) {
231 const GLfloat a = ctx->Transform._ClipUserPlane[p][0];
232 const GLfloat b = ctx->Transform._ClipUserPlane[p][1];
233 const GLfloat c = ctx->Transform._ClipUserPlane[p][2];
234 const GLfloat d = ctx->Transform
[all...]
/external/llvm/lib/Transforms/Utils/
H A DSymbolRewriter.cpp31 // + Transform (pattern transformation)
36 // + Transform (pattern transformation)
40 // + Transform (pattern transformation)
42 // Note that source and exactly one of [Target, Transform] must be provided
140 const std::string Transform; member in class:__anon11119::PatternRewriteDescriptor
143 : RewriteDescriptor(DT), Pattern(P), Transform(T) { }
162 std::string Name = Regex(Pattern).sub(Transform, C.getName(), &Error);
312 std::string Transform; local
345 Transform = Value->getValue(ValueStorage);
357 if (Transform
379 std::string Transform; local
441 std::string Transform; local
[all...]

Completed in 711 milliseconds

12345678