Searched refs:TransformType (Results 1 - 18 of 18) sorted by relevance

/external/eigen/Eigen/src/Eigen2Support/Geometry/
H A DTranslation.h44 typedef Transform<Scalar,Dim> TransformType; typedef in class:Eigen::Translation
80 inline TransformType operator* (const ScalingType& other) const;
83 inline TransformType operator* (const LinearMatrixType& linear) const;
86 inline TransformType operator*(const RotationBase<Derived,Dim>& r) const
91 friend inline TransformType operator* (const LinearMatrixType& linear, const Translation& t)
93 TransformType res;
103 inline TransformType operator* (const TransformType& t) const;
151 inline typename Translation<Scalar,Dim>::TransformType
154 TransformType re
[all...]
H A DScaling.h44 typedef Transform<Scalar,Dim> TransformType; typedef in class:Eigen::Scaling
82 inline TransformType operator* (const TranslationType& t) const;
85 inline TransformType operator* (const TransformType& t) const;
147 inline typename Scaling<Scalar,Dim>::TransformType
150 TransformType res;
159 inline typename Scaling<Scalar,Dim>::TransformType
160 Scaling<Scalar,Dim>::operator* (const TransformType& t) const
162 TransformType res = t;
H A DTransform.h742 typedef Transform<typename Other::Scalar,Dim> TransformType; typedef in struct:Eigen::ei_transform_product_impl
743 typedef typename TransformType::MatrixType MatrixType;
745 static ResultType run(const TransformType& tr, const Other& other)
752 typedef Transform<typename Other::Scalar,Dim> TransformType; typedef in struct:Eigen::ei_transform_product_impl
753 typedef typename TransformType::MatrixType MatrixType;
754 typedef TransformType ResultType;
755 static ResultType run(const TransformType& tr, const Other& other)
757 TransformType res;
768 typedef Transform<typename Other::Scalar,Dim> TransformType; typedef in struct:Eigen::ei_transform_product_impl
769 typedef typename TransformType
779 typedef Transform<Scalar,Dim> TransformType; typedef in struct:Eigen::ei_transform_product_impl
[all...]
/external/eigen/test/
H A Dstddeque.cpp47 template<typename TransformType>
48 void check_stddeque_transform(const TransformType&) argument
50 typedef typename TransformType::MatrixType MatrixType;
51 TransformType x(MatrixType::Random()), y(MatrixType::Random());
52 std::deque<TransformType,Eigen::aligned_allocator<TransformType> > v(10), w(20, y);
58 typename std::deque<TransformType,Eigen::aligned_allocator<TransformType> >::iterator vi = v.begin();
59 typename std::deque<TransformType,Eigen::aligned_allocator<TransformType> >
[all...]
H A Dstdlist.cpp47 template<typename TransformType>
48 void check_stdlist_transform(const TransformType&) argument
50 typedef typename TransformType::MatrixType MatrixType;
51 TransformType x(MatrixType::Random()), y(MatrixType::Random());
52 std::list<TransformType,Eigen::aligned_allocator<TransformType> > v(10), w(20, y);
58 typename std::list<TransformType,Eigen::aligned_allocator<TransformType> >::iterator vi = v.begin();
59 typename std::list<TransformType,Eigen::aligned_allocator<TransformType> >
[all...]
H A Dstdvector.cpp50 template<typename TransformType>
51 void check_stdvector_transform(const TransformType&) argument
53 typedef typename TransformType::MatrixType MatrixType;
54 TransformType x(MatrixType::Random()), y(MatrixType::Random());
55 std::vector<TransformType,Eigen::aligned_allocator<TransformType> > v(10), w(20, y);
72 VERIFY((size_t)&(v[22]) == (size_t)&(v[21]) + sizeof(TransformType));
76 TransformType* ref = &w[0];
H A Dqtvector.cpp60 template<typename TransformType>
61 void check_qtvector_transform(const TransformType&) argument
63 typedef typename TransformType::MatrixType MatrixType;
64 TransformType x(MatrixType::Random()), y(MatrixType::Random());
65 QVector<TransformType> v(10), w(20, y);
82 VERIFY((size_t)&(v[22]) == (size_t)&(v[21]) + sizeof(TransformType));
86 TransformType* ref = &w[0];
H A Dstdvector_overload.cpp64 template<typename TransformType>
65 void check_stdvector_transform(const TransformType&) argument
67 typedef typename TransformType::MatrixType MatrixType;
68 TransformType x(MatrixType::Random()), y(MatrixType::Random());
69 std::vector<TransformType> v(10), w(20, y);
86 VERIFY((size_t)&(v[22]) == (size_t)&(v[21]) + sizeof(TransformType));
90 TransformType* ref = &w[0];
/external/eigen/test/eigen2/
H A Deigen2_newstdvector.cpp51 template<typename TransformType>
52 void check_stdvector_transform(const TransformType&) argument
54 typedef typename TransformType::MatrixType MatrixType;
55 TransformType x(MatrixType::Random()), y(MatrixType::Random());
56 std::vector<TransformType,Eigen::aligned_allocator<TransformType> > v(10), w(20, y);
73 VERIFY((std::size_t)&(v[22]) == (std::size_t)&(v[21]) + sizeof(TransformType));
77 TransformType* ref = &w[0];
H A Deigen2_stdvector.cpp50 template<typename TransformType>
51 void check_stdvector_transform(const TransformType&) argument
53 typedef typename TransformType::MatrixType MatrixType;
54 TransformType x(MatrixType::Random()), y(MatrixType::Random());
55 std::vector<TransformType, aligned_allocator<TransformType> > v(10), w(20, y);
72 VERIFY((std::size_t)&(v[22]) == (std::size_t)&(v[21]) + sizeof(TransformType));
76 TransformType* ref = &w[0];
H A Deigen2_qtvector.cpp60 template<typename TransformType>
61 void check_qtvector_transform(const TransformType&) argument
63 typedef typename TransformType::MatrixType MatrixType;
64 TransformType x(MatrixType::Random()), y(MatrixType::Random());
65 QVector<TransformType> v(10), w(20, y);
82 VERIFY((size_t)&(v[22]) == (size_t)&(v[21]) + sizeof(TransformType));
86 TransformType* ref = &w[0];
/external/eigen/Eigen/src/Geometry/
H A DTransform.h31 template< typename TransformType,
33 int Case = transform_traits<TransformType>::IsProjective ? 0
34 : int(MatrixType::RowsAtCompileTime) == int(transform_traits<TransformType>::HDim) ? 1
63 template<typename TransformType> struct transform_take_affine_part;
1098 template<typename TransformType, int Mode=TransformType::Mode>
1101 static inline void run(const TransformType&, TransformType&) argument
1105 template<typename TransformType>
1106 struct projective_transform_inverse<TransformType, Projectiv
1316 typedef Transform<typename Other::Scalar,Dim,Mode,Options> TransformType; typedef in struct:Eigen::internal::transform_left_product_impl
1327 typedef Transform<typename Other::Scalar,Dim,AffineCompact,Options> TransformType; typedef in struct:Eigen::internal::transform_left_product_impl
1343 typedef Transform<typename Other::Scalar,Dim,Mode,Options> TransformType; typedef in struct:Eigen::internal::transform_left_product_impl
1359 typedef Transform<typename Other::Scalar,Dim,AffineCompact,Options> TransformType; typedef in struct:Eigen::internal::transform_left_product_impl
1375 typedef Transform<typename Other::Scalar,Dim,Mode,Options> TransformType; typedef in struct:Eigen::internal::transform_left_product_impl
[all...]
H A DHomogeneous.h205 typedef Transform<Scalar, Dim, Mode, Options> TransformType; typedef in struct:Eigen::internal::take_matrix_for_product
206 typedef typename internal::add_const<typename TransformType::ConstAffinePart>::type type;
207 static type run (const TransformType& x) { return x.affine(); }
213 typedef Transform<Scalar, Dim, Projective, Options> TransformType; typedef in struct:Eigen::internal::take_matrix_for_product
214 typedef typename TransformType::MatrixType type;
215 static const type& run (const TransformType& x) { return x.matrix(); }
/external/skia/src/gpu/batches/
H A DGrDrawPathBatch.h98 typedef GrPathRendering::PathTransformType TransformType; typedef in class:final
104 static InstanceData* Alloc(TransformType transformType, int reserveCnt) {
130 TransformType transformType() const { return fTransformType; }
155 TransformType fTransformType;
179 TransformType transformType() const { return fDraws.head()->fInstanceData->transformType(); }
/external/clang/lib/Sema/
H A DTreeTransform.h72 /// most coarse-grained transformations involve replacing TransformType(),
292 QualType TransformType(QualType T);
302 TypeSourceInfo *TransformType(TypeSourceInfo *DI);
308 QualType TransformType(TypeLocBuilder &TLB, TypeLoc TL);
3455 NewTInfo = getDerived().TransformType(OldTInfo);
3463 QualType NewT = getDerived().TransformType(Name.getCXXNameType());
3634 DI = getDerived().TransformType(DI);
3869 QualType TreeTransform<Derived>::TransformType(QualType T) { function in class:clang::TreeTransform
3878 TypeSourceInfo *NewDI = getDerived().TransformType(DI);
3887 TypeSourceInfo *TreeTransform<Derived>::TransformType(TypeSourceInf function in class:clang::TreeTransform
3908 TreeTransform<Derived>::TransformType(TypeLocBuilder &TLB, TypeLoc T) { function in class:clang::TreeTransform
[all...]
H A DSemaTemplateInstantiate.cpp1220 QualType T = TransformType(E->getType());
1255 QualType T = TransformType(E->getType());
1464 return Instantiator.TransformType(T);
1490 QualType Result = Instantiator.TransformType(TLB, TL);
1511 return Instantiator.TransformType(T);
1584 Result = Instantiator.TransformType(TLB, TL);
H A DSemaTemplateDeduction.cpp3979 return TransformType(TLB, TL);
4117 TransformType(TypeWithAuto);
4123 TransformType(TypeWithAuto);
H A DSemaTemplate.cpp8326 return Rebuilder.TransformType(T);

Completed in 726 milliseconds