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

12345678

/external/icu/android_icu4j/src/main/java/android/icu/text/
H A DTransform.java21 public interface Transform<S,D> { interface
23 * Transform the input in some way, to be determined by the subclass.
H A DStringTransform.java19 public interface StringTransform extends Transform<String,String> {
21 * Transform the text in some way, to be determined by the subclass.
H A DSourceTargetUtility.java21 final Transform<String, String> transform;
28 public SourceTargetUtility(Transform<String, String> transform) {
32 public SourceTargetUtility(Transform<String, String> transform, Normalizer2 normalizer) {
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
H A DStringTransform.java18 public interface StringTransform extends Transform<String,String> {
20 * Transform the text in some way, to be determined by the subclass.
H A DTransform.java20 public interface Transform<S,D> { interface
22 * Transform the input in some way, to be determined by the subclass.
/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,
67 struct traits<Transform<_Scalar,_Dim,_Mode,_Options> >
88 * \class Transform
105 * this class you have to think a Transform object as its internal
120 * However, unlike a plain matrix, the Transform class provides many features
122 * with any other transformations (Transform,Translation,RotationBase,DiagonalMatrix)
175 * The concatenation of a Transform objec
201 class Transform class in namespace:Eigen
256 EIGEN_DEVICE_FUNC inline Transform() function in class:Eigen::Transform
262 EIGEN_DEVICE_FUNC inline Transform(const Transform& other) function in class:Eigen::Transform
268 EIGEN_DEVICE_FUNC inline explicit Transform(const TranslationType& t) function in class:Eigen::Transform
273 EIGEN_DEVICE_FUNC inline explicit Transform(const UniformScaling<Scalar>& s) function in class:Eigen::Transform
279 EIGEN_DEVICE_FUNC inline explicit Transform(const RotationBase<Derived, Dim>& r) function in class:Eigen::Transform
292 EIGEN_DEVICE_FUNC inline explicit Transform(const EigenBase<OtherDerived>& other) function in class:Eigen::Transform
313 Transform(const Transform<Scalar,Dim,Mode,OtherOptions>& other) argument
321 Transform(const Transform<Scalar,Dim,OtherMode,OtherOptions>& other) argument
362 EIGEN_DEVICE_FUNC Transform(const ReturnByValue<OtherDerived>& other) function in class:Eigen::Transform
517 operator *(const Transform<Scalar,Dim,OtherMode,OtherOptions>& other) const argument
526 operator *(const Transform<Scalar,Dim,OtherMode,OtherOptions>& other) const argument
637 Transform(const Transform<OtherScalarType,Dim,Mode,Options>& other) argument
744 Transform<Scalar,Dim,Mode,Options>::Transform(const QMatrix& other) function in class:Eigen::Transform
789 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;
157 inline Transform<Scalar,Dim,Affine>
160 Transform<Scalar,Dim,Affine> res;
/external/pdfium/core/fpdfapi/page/
H A Dcpdf_pathobject.h22 void Transform(const CFX_Matrix& maxtrix) override;
H A Dcpdf_shadingobject.h22 void Transform(const CFX_Matrix& matrix) override;
H A Dcpdf_shadingobject.cpp21 void CPDF_ShadingObject::Transform(const CFX_Matrix& matrix) { function in class:CPDF_ShadingObject
23 m_ClipPath.Transform(matrix);
H A Dcpdf_formobject.h24 void Transform(const CFX_Matrix& matrix) override;
H A Dcpdf_formobject.cpp15 void CPDF_FormObject::Transform(const CFX_Matrix& matrix) { function in class:CPDF_FormObject
H A Dcpdf_imageobject.h24 void Transform(const CFX_Matrix& matrix) override;
/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/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/icu/icu4j/main/classes/translit/src/com/ibm/icu/text/
H A DSourceTargetUtility.java20 final Transform<String, String> transform;
27 public SourceTargetUtility(Transform<String, String> transform) {
31 public SourceTargetUtility(Transform<String, String> transform, Normalizer2 normalizer) {
/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) {
/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
138 const std::string Transform; member in class:__anon13452::PatternRewriteDescriptor
141 : RewriteDescriptor(DT), Pattern(P), Transform(T) { }
160 std::string Name = Regex(Pattern).sub(Transform, C.getName(), &Error);
310 std::string Transform; local
343 Transform = Value->getValue(ValueStorage);
355 if (Transform
377 std::string Transform; local
439 std::string Transform; local
[all...]

Completed in 753 milliseconds

12345678