HomeSort by relevance Sort by last modified time
    Searched full:transformtype (Results 1 - 25 of 30) sorted by null

1 2

  /external/eigen/test/
stddeque.cpp 47 template<typename TransformType>
48 void check_stddeque_transform(const TransformType&)
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> >::iterator wi = w.begin()
    [all...]
stdlist.cpp 47 template<typename TransformType>
48 void check_stdlist_transform(const TransformType&)
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> >::iterator wi = w.begin()
    [all...]
stdvector.cpp 50 template<typename TransformType>
51 void check_stdvector_transform(const TransformType&)
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];
qtvector.cpp 60 template<typename TransformType>
61 void check_qtvector_transform(const TransformType&)
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];
stdvector_overload.cpp 64 template<typename TransformType>
65 void check_stdvector_transform(const TransformType&)
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/Eigen/src/Eigen2Support/Geometry/
Translation.h 44 typedef Transform<Scalar,Dim> TransformType;
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 res
    [all...]
Scaling.h 44 typedef Transform<Scalar,Dim> TransformType;
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;
Transform.h 742 typedef Transform<typename Other::Scalar,Dim> TransformType;
743 typedef typename TransformType::MatrixType MatrixType;
745 static ResultType run(const TransformType& tr, const Other& other)
752 typedef Transform<typename Other::Scalar,Dim> TransformType;
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;
769 typedef typename TransformType::MatrixType MatrixType
    [all...]
  /frameworks/base/tests/RenderScriptTests/ModelViewer/src/com/android/modelviewer/
SgTransform.java 29 enum TransformType {
37 TransformType(int id) {
65 public void setTransform(int index, Float4 value, TransformType type) {
75 mTransformData.transformTypes[i] = TransformType.NONE.mID;
SceneGraphRS.java 162 mGroup1.setTransform(0, new Float4(0.0f, 0.0f, -15.0f, 0.0f), TransformType.TRANSLATE);
163 mGroup1.setTransform(1, new Float4(0.0f, 1.0f, 0.0f, 15.0f), TransformType.ROTATE);
165 mRobot1.setTransform(0, new Float4(-3.0f, -0.5f, 0.0f, 0.0f), TransformType.TRANSLATE);
166 mRobot1.setTransform(1, new Float4(0.0f, 1.0f, 0.0f, 20.0f), TransformType.ROTATE);
167 mRobot1.setTransform(2, new Float4(0.2f, 0.2f, 0.2f, 0.0f), TransformType.SCALE);
169 mRobot2.setTransform(0, new Float4(3.0f, 0.0f, 0.0f, 0.0f), TransformType.TRANSLATE);
170 mRobot2.setTransform(1, new Float4(0.0f, 1.0f, 0.0f, -20.0f), TransformType.ROTATE);
171 mRobot2.setTransform(2, new Float4(0.3f, 0.3f, 0.3f, 0.0f), TransformType.SCALE);
  /external/eigen/test/eigen2/
eigen2_newstdvector.cpp 51 template<typename TransformType>
52 void check_stdvector_transform(const TransformType&)
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];
eigen2_stdvector.cpp 50 template<typename TransformType>
51 void check_stdvector_transform(const TransformType&)
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];
eigen2_qtvector.cpp 60 template<typename TransformType>
61 void check_qtvector_transform(const TransformType&)
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/
Transform.h 31 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;
    [all...]
Homogeneous.h 205 typedef Transform<Scalar, Dim, Mode, Options> TransformType;
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;
214 typedef typename TransformType::MatrixType type;
215 static const type& run (const TransformType& x) { return x.matrix(); }
  /external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
SVGTextFragment.h 41 enum TransformType {
46 void buildFragmentTransform(AffineTransform& result, TransformType type = TransformRespectingTextLength) const
  /external/chromium_org/third_party/WebKit/Source/core/svg/
SVGAnimateTransformElement.h 37 SVGTransform::SVGTransformType transformType() const { return m_type; }
SVGAnimatedTransformList.cpp 37 , m_transformTypeString(SVGTransform::transformTypePrefixForParsing(static_cast<SVGAnimateTransformElement*>(animationElement)->transformType()))
  /external/chromium_org/third_party/WebKit/Source/core/platform/graphics/chromium/
AnimationTranslationUtil.cpp 150 bool isRotationType(TransformOperation::OperationType transformType)
152 return transformType == TransformOperation::Rotate
153 || transformType == TransformOperation::RotateX
154 || transformType == TransformOperation::RotateY
155 || transformType == TransformOperation::RotateZ
156 || transformType == TransformOperation::Rotate3D;
  /external/chromium_org/third_party/skia/include/gpu/gl/
GrGLFunctions.h 190 typedef GrGLvoid (GR_GL_FUNCTION_TYPE* GrGLTransformPathProc)(GrGLuint resultPath, GrGLuint srcPath, GrGLenum transformType, const GrGLfloat *transformValues);
203 typedef GrGLvoid (GR_GL_FUNCTION_TYPE* GrGLStencilFillPathInstancedProc)(GrGLsizei numPaths, GrGLenum pathNameType, const GrGLvoid *paths, GrGLuint pathBase, GrGLenum fillMode, GrGLuint mask, GrGLenum transformType, const GrGLfloat *transformValues);
204 typedef GrGLvoid (GR_GL_FUNCTION_TYPE* GrGLStencilStrokePathInstancedProc)(GrGLsizei numPaths, GrGLenum pathNameType, const GrGLvoid *paths, GrGLuint pathBase, GrGLint reference, GrGLuint mask, GrGLenum transformType, const GrGLfloat *transformValues);
211 typedef GrGLvoid (GR_GL_FUNCTION_TYPE* GrGLCoverFillPathInstancedProc)(GrGLsizei numPaths, GrGLenum pathNameType, const GrGLvoid *paths, GrGLuint pathBase, GrGLenum coverMode, GrGLenum transformType, const GrGLfloat *transformValues);
212 typedef GrGLvoid (GR_GL_FUNCTION_TYPE* GrGLCoverStrokePathInstancedProc)(GrGLsizei numPaths, GrGLenum pathNameType, const GrGLvoid *paths, GrGLuint pathBase, GrGLenum coverMode, GrGLenum transformType, const GrGLfloat* transformValues);
220 typedef GrGLvoid (GR_GL_FUNCTION_TYPE* GrGLGetPathSpacingProc)(GrGLenum pathListMode, GrGLsizei numPaths, GrGLenum pathNameType, const GrGLvoid *paths, GrGLuint pathBase, GrGLfloat advanceScale, GrGLfloat kerningScale, GrGLenum transformType, GrGLfloat *returnedSpacing);
  /external/skia/include/gpu/gl/
GrGLFunctions.h 190 typedef GrGLvoid (GR_GL_FUNCTION_TYPE* GrGLTransformPathProc)(GrGLuint resultPath, GrGLuint srcPath, GrGLenum transformType, const GrGLfloat *transformValues);
203 typedef GrGLvoid (GR_GL_FUNCTION_TYPE* GrGLStencilFillPathInstancedProc)(GrGLsizei numPaths, GrGLenum pathNameType, const GrGLvoid *paths, GrGLuint pathBase, GrGLenum fillMode, GrGLuint mask, GrGLenum transformType, const GrGLfloat *transformValues);
204 typedef GrGLvoid (GR_GL_FUNCTION_TYPE* GrGLStencilStrokePathInstancedProc)(GrGLsizei numPaths, GrGLenum pathNameType, const GrGLvoid *paths, GrGLuint pathBase, GrGLint reference, GrGLuint mask, GrGLenum transformType, const GrGLfloat *transformValues);
211 typedef GrGLvoid (GR_GL_FUNCTION_TYPE* GrGLCoverFillPathInstancedProc)(GrGLsizei numPaths, GrGLenum pathNameType, const GrGLvoid *paths, GrGLuint pathBase, GrGLenum coverMode, GrGLenum transformType, const GrGLfloat *transformValues);
212 typedef GrGLvoid (GR_GL_FUNCTION_TYPE* GrGLCoverStrokePathInstancedProc)(GrGLsizei numPaths, GrGLenum pathNameType, const GrGLvoid *paths, GrGLuint pathBase, GrGLenum coverMode, GrGLenum transformType, const GrGLfloat* transformValues);
220 typedef GrGLvoid (GR_GL_FUNCTION_TYPE* GrGLGetPathSpacingProc)(GrGLenum pathListMode, GrGLsizei numPaths, GrGLenum pathNameType, const GrGLvoid *paths, GrGLuint pathBase, GrGLfloat advanceScale, GrGLfloat kerningScale, GrGLenum transformType, GrGLfloat *returnedSpacing);
  /external/clang/lib/Sema/
TreeTransform.h 72 /// most coarse-grained transformations involve replacing TransformType(),
288 QualType TransformType(QualType T);
298 TypeSourceInfo *TransformType(TypeSourceInfo *DI);
304 QualType TransformType(TypeLocBuilder &TLB, TypeLoc TL);
    [all...]
  /external/icu4c/tools/gendict/
gendict.cpp 156 int32_t transformType;
163 transformConstant(0), transformType(DictionaryData::TRANSFORM_NONE) {
178 if (transformType == DictionaryData::TRANSFORM_TYPE_OFFSET) {
217 transformType = DictionaryData::TRANSFORM_TYPE_OFFSET;
247 return (int32_t)(transformType | transformConstant);
  /external/libvorbis/lib/
codec_internal.h 50 int transformtype; member in struct:__anon22887
  /frameworks/native/opengl/tests/hwc/
hwcCommit.cpp 136 const struct transformType {
139 } transformType[] = {
681 for (unsigned int idx = 0; idx < NUMA(transformType); idx++) {
682 unsigned int id = transformType[idx].id;
    [all...]

Completed in 4191 milliseconds

1 2