HomeSort by relevance Sort by last modified time
    Searched refs:m_matrix (Results 1 - 25 of 55) sorted by null

1 2 3

  /external/chromium_org/third_party/WebKit/Source/platform/transforms/
TransformationMatrix.h 77 m_matrix[0][0] = a; m_matrix[0][1] = b; m_matrix[0][2] = 0; m_matrix[0][3] = 0;
78 m_matrix[1][0] = c; m_matrix[1][1] = d; m_matrix[1][2] = 0; m_matrix[1][3] = 0;
79 m_matrix[2][0] = 0; m_matrix[2][1] = 0; m_matrix[2][2] = 1; m_matrix[2][3] = 0
355 Matrix4 m_matrix; member in class:blink::TransformationMatrix
    [all...]
TransformationMatrix.cpp 71 // | m_matrix[0][0] m_matrix[1][0] m_matrix[2][0] m_matrix[3][0] |
72 // | m_matrix[0][1] m_matrix[1][1] m_matrix[2][1] m_matrix[3][1] |
73 // | m_matrix[0][2] m_matrix[1][2] m_matrix[2][2] m_matrix[3][2]
    [all...]
Matrix3DTransformOperation.h 40 TransformationMatrix matrix() const {return m_matrix; }
55 return m_matrix == m->m_matrix;
60 transform.multiply(TransformationMatrix(m_matrix));
67 m_matrix = mat;
70 TransformationMatrix m_matrix; member in class:blink::Matrix3DTransformOperation
  /external/chromium_org/third_party/WebKit/Source/core/dom/
DOMMatrixReadOnly.cpp 17 return m_matrix.isIdentity();
49 m_matrix.m11(), m_matrix.m12(), m_matrix.m13(), m_matrix.m14(),
50 m_matrix.m21(), m_matrix.m22(), m_matrix.m23(), m_matrix.m24(),
51 m_matrix.m31(), m_matrix.m32(), m_matrix.m33(), m_matrix.m34()
    [all...]
DOMMatrixReadOnly.h 20 double a() const { return m_matrix.m11(); }
21 double b() const { return m_matrix.m12(); }
22 double c() const { return m_matrix.m21(); }
23 double d() const { return m_matrix.m22(); }
24 double e() const { return m_matrix.m41(); }
25 double f() const { return m_matrix.m42(); }
27 double m11() const { return m_matrix.m11(); }
28 double m12() const { return m_matrix.m12(); }
29 double m13() const { return m_matrix.m13(); }
30 double m14() const { return m_matrix.m14();
62 TransformationMatrix m_matrix; member in class:blink::DOMMatrixReadOnly
    [all...]
DOMMatrix.h 17 void setA(double value) { m_matrix.setM11(value); }
18 void setB(double value) { m_matrix.setM12(value); }
19 void setC(double value) { m_matrix.setM21(value); }
20 void setD(double value) { m_matrix.setM22(value); }
21 void setE(double value) { m_matrix.setM41(value); }
22 void setF(double value) { m_matrix.setM42(value); }
24 void setM11(double value) { m_matrix.setM11(value); }
25 void setM12(double value) { m_matrix.setM12(value); }
26 void setM13(double value) { m_matrix.setM13(value); setIs2D(!value); }
27 void setM14(double value) { m_matrix.setM14(value); setIs2D(!value);
    [all...]
DOMMatrix.cpp 22 m_matrix = matrix;
37 m_matrix = m_matrix * other->matrix();
47 m_matrix = other->matrix() * m_matrix;
61 m_matrix.translate(tx, ty);
63 m_matrix.translate3d(tx, ty, tz);
93 m_matrix.scaleNonUniform(sx, sy);
95 m_matrix.scale3d(sx, sy, sz);
  /external/chromium_org/third_party/WebKit/Source/core/css/
CSSMatrix.h 50 double a() const { return m_matrix.a(); }
51 double b() const { return m_matrix.b(); }
52 double c() const { return m_matrix.c(); }
53 double d() const { return m_matrix.d(); }
54 double e() const { return m_matrix.e(); }
55 double f() const { return m_matrix.f(); }
57 void setA(double f) { m_matrix.setA(f); }
58 void setB(double f) { m_matrix.setB(f); }
59 void setC(double f) { m_matrix.setC(f); }
60 void setD(double f) { m_matrix.setD(f);
157 TransformationMatrix m_matrix; member in class:blink::FINAL
    [all...]
CSSMatrix.cpp 44 : m_matrix(m)
80 m_matrix = t;
92 return CSSMatrix::create(TransformationMatrix(m_matrix).multiply(secondMatrix->m_matrix));
97 if (!m_matrix.isInvertible()) {
102 return CSSMatrix::create(m_matrix.inverse());
113 return CSSMatrix::create(TransformationMatrix(m_matrix).translate3d(x, y, z));
124 return CSSMatrix::create(TransformationMatrix(m_matrix).scale3d(scaleX, scaleY, scaleZ));
142 return CSSMatrix::create(TransformationMatrix(m_matrix).rotate3d(rotX, rotY, rotZ));
157 return CSSMatrix::create(TransformationMatrix(m_matrix).rotate3d(x, y, z, angle))
    [all...]
  /external/eigen/Eigen/src/Core/
Flagged.h 51 inline Flagged(const ExpressionType& matrix) : m_matrix(matrix) {}
53 inline Index rows() const { return m_matrix.rows(); }
54 inline Index cols() const { return m_matrix.cols(); }
55 inline Index outerStride() const { return m_matrix.outerStride(); }
56 inline Index innerStride() const { return m_matrix.innerStride(); }
60 return m_matrix.coeff(row, col);
65 return m_matrix.coeff(index);
70 return m_matrix.const_cast_derived().coeffRef(row, col);
75 return m_matrix.const_cast_derived().coeffRef(index);
80 return m_matrix.const_cast_derived().coeffRef(row, col)
121 ExpressionTypeNested m_matrix; member in class:Eigen::Flagged
    [all...]
Reverse.h 98 inline Reverse(const MatrixType& matrix) : m_matrix(matrix) { }
102 inline Index rows() const { return m_matrix.rows(); }
103 inline Index cols() const { return m_matrix.cols(); }
107 return -m_matrix.innerStride();
118 return m_matrix.const_cast_derived().coeffRef(ReverseRow ? m_matrix.rows() - row - 1 : row,
119 ReverseCol ? m_matrix.cols() - col - 1 : col);
124 return m_matrix.coeff(ReverseRow ? m_matrix.rows() - row - 1 : row,
125 ReverseCol ? m_matrix.cols() - col - 1 : col)
180 typename MatrixType::Nested m_matrix; member in class:Eigen::Reverse
    [all...]
SelfCwiseBinaryOp.h 55 inline SelfCwiseBinaryOp(Lhs& xpr, const BinaryOp& func = BinaryOp()) : m_matrix(xpr), m_functor(func) {}
57 inline Index rows() const { return m_matrix.rows(); }
58 inline Index cols() const { return m_matrix.cols(); }
59 inline Index outerStride() const { return m_matrix.outerStride(); }
60 inline Index innerStride() const { return m_matrix.innerStride(); }
61 inline const Scalar* data() const { return m_matrix.data(); }
68 return m_matrix.const_cast_derived().coeffRef(row, col);
72 return m_matrix.coeffRef(row, col);
80 return m_matrix.const_cast_derived().coeffRef(index);
84 return m_matrix.const_cast_derived().coeffRef(index)
164 Lhs& m_matrix; member in class:Eigen::SelfCwiseBinaryOp
    [all...]
Diagonal.h 73 inline Diagonal(MatrixType& matrix, Index a_index = DiagIndex) : m_matrix(matrix), m_index(a_index) {}
78 { return m_index.value()<0 ? (std::min<Index>)(m_matrix.cols(),m_matrix.rows()+m_index.value()) : (std::min<Index>)(m_matrix.rows(),m_matrix.cols()-m_index.value()); }
84 return m_matrix.outerStride() + 1;
98 inline ScalarWithConstIfNotLvalue* data() { return &(m_matrix.const_cast_derived().coeffRef(rowOffset(), colOffset())); }
99 inline const Scalar* data() const { return &(m_matrix.const_cast_derived().coeffRef(rowOffset(), colOffset())); }
104 return m_matrix.const_cast_derived().coeffRef(row+rowOffset(), row+colOffset());
109 return m_matrix.const_cast_derived().coeffRef(row+rowOffset(), row+colOffset())
145 typename MatrixType::Nested m_matrix; member in class:Eigen::Diagonal
    [all...]
SelfAdjointView.h 72 inline SelfAdjointView(MatrixType& matrix) : m_matrix(matrix)
75 inline Index rows() const { return m_matrix.rows(); }
76 inline Index cols() const { return m_matrix.cols(); }
77 inline Index outerStride() const { return m_matrix.outerStride(); }
78 inline Index innerStride() const { return m_matrix.innerStride(); }
86 return m_matrix.coeff(row, col);
95 return m_matrix.const_cast_derived().coeffRef(row, col);
99 const MatrixTypeNestedCleaned& _expression() const { return m_matrix; }
101 const MatrixTypeNestedCleaned& nestedExpression() const { return m_matrix; }
102 MatrixTypeNestedCleaned& nestedExpression() { return *const_cast<MatrixTypeNestedCleaned*>(&m_matrix); }
189 MatrixTypeNested m_matrix; member in class:Eigen::SelfAdjointView
    [all...]
VectorwiseOp.h 79 : m_matrix(mat), m_functor(func) {}
81 Index rows() const { return (Direction==Vertical ? 1 : m_matrix.rows()); }
82 Index cols() const { return (Direction==Horizontal ? 1 : m_matrix.cols()); }
87 return m_functor(m_matrix.col(j));
89 return m_functor(m_matrix.row(i));
95 return m_functor(m_matrix.col(index));
97 return m_functor(m_matrix.row(index));
101 MatrixTypeNested m_matrix; member in class:Eigen::PartialReduxExpr
208 return SubVector(m_matrix.derived(),i);
214 { return Direction==Vertical?m_matrix.cols():m_matrix.rows();
587 ExpressionTypeNested m_matrix; member in class:Eigen::VectorwiseOp
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/svg/
SVGTransform.cpp 44 m_matrix = AffineTransform(0, 0, 0, 0, 0, 0);
51 , m_matrix(matrix)
60 , m_matrix(matrix)
70 return adoptRef(new SVGTransform(m_transformType, m_angle, m_center, m_matrix));
83 m_matrix = matrix;
97 m_matrix.makeIdentity();
98 m_matrix.translate(tx, ty);
103 return FloatPoint::narrowPrecision(m_matrix.e(), m_matrix.f());
112 m_matrix.makeIdentity()
    [all...]
  /external/eigen/unsupported/Eigen/src/SparseExtra/
BlockOfDynamicSparseMatrix.h 39 : MatrixType::InnerIterator(xpr.m_matrix, xpr.m_outerStart + outer), m_outer(outer)
48 : m_matrix(matrix), m_outerStart(outerStart), m_outerSize(outerSize)
54 : m_matrix(matrix), m_outerStart(outer), m_outerSize(Size)
75 m_matrix.const_cast_derived()._data()[m_outerStart+j].swap(aux._data());
90 count += m_matrix._data()[m_outerStart+j].size();
97 eigen_assert(m_matrix.data()[m_outerStart].size()>0);
98 return m_matrix.data()[m_outerStart].vale(m_matrix.data()[m_outerStart].size()-1);
107 EIGEN_STRONG_INLINE Index rows() const { return IsRowMajor ? m_outerSize.value() : m_matrix.rows(); }
108 EIGEN_STRONG_INLINE Index cols() const { return IsRowMajor ? m_matrix.cols() : m_outerSize.value();
    [all...]
  /external/eigen/Eigen/src/SparseCore/
SparseView.h 40 m_matrix(mat), m_reference(m_reference), m_epsilon(m_epsilon) {}
44 inline Index rows() const { return m_matrix.rows(); }
45 inline Index cols() const { return m_matrix.cols(); }
47 inline Index innerSize() const { return m_matrix.innerSize(); }
48 inline Index outerSize() const { return m_matrix.outerSize(); }
51 MatrixTypeNested m_matrix; member in class:Eigen::SparseView
63 IterBase(view.m_matrix, outer), m_view(view)
SparseBlock.h 33 : XprType::InnerIterator(xpr.m_matrix, xpr.m_outerStart + outer), m_outer(outer)
45 : XprType::ReverseInnerIterator(xpr.m_matrix, xpr.m_outerStart + outer), m_outer(outer)
54 : m_matrix(xpr), m_outerStart(i), m_outerSize(OuterSize)
58 : m_matrix(xpr), m_outerStart(IsRowMajor ? startRow : startCol), m_outerSize(IsRowMajor ? blockRows : blockCols)
61 EIGEN_STRONG_INLINE Index rows() const { return IsRowMajor ? m_outerSize.value() : m_matrix.rows(); }
62 EIGEN_STRONG_INLINE Index cols() const { return IsRowMajor ? m_matrix.cols() : m_outerSize.value(); }
66 typename XprType::Nested m_matrix; member in class:Eigen::BlockImpl
96 : SparseMatrixType::InnerIterator(xpr.m_matrix, xpr.m_outerStart + outer), m_outer(outer)
107 : SparseMatrixType::ReverseInnerIterator(xpr.m_matrix, xpr.m_outerStart + outer), m_outer(outer)
116 : m_matrix(xpr), m_outerStart(i), m_outerSize(OuterSize
242 typename SparseMatrixType::Nested m_matrix; member in class:Eigen::BlockImpl
399 typename XprType::Nested m_matrix; member in class:Eigen::BlockImpl
    [all...]
SparsePermutation.h 49 : m_permutation(perm), m_matrix(matrix)
52 inline int rows() const { return m_matrix.rows(); }
53 inline int cols() const { return m_matrix.cols(); }
59 SparseMatrix<Scalar,SrcStorageOrder,Index> tmp(m_matrix.rows(), m_matrix.cols());
60 Matrix<Index,Dynamic,1> sizes(m_matrix.outerSize());
61 for(Index j=0; j<m_matrix.outerSize(); ++j)
64 sizes[((Side==OnTheLeft) ^ Transposed) ? jp : j] = m_matrix.innerVector(((Side==OnTheRight) ^ Transposed) ? jp : j).size();
67 for(Index j=0; j<m_matrix.outerSize(); ++j)
72 for(typename MatrixTypeNestedCleaned::InnerIterator it(m_matrix,jsrc); it; ++it
101 typename MatrixType::Nested m_matrix; member in struct:Eigen::internal::permut_sparsematrix_product_retval
    [all...]
  /external/eigen/Eigen/src/Eigenvalues/
Tridiagonalization.h 114 : m_matrix(size,size),
130 : m_matrix(matrix),
134 internal::tridiagonalization_inplace(m_matrix, m_hCoeffs);
157 m_matrix = matrix;
159 internal::tridiagonalization_inplace(m_matrix, m_hCoeffs);
220 return m_matrix;
241 return HouseholderSequenceType(m_matrix, m_hCoeffs.conjugate())
242 .setLength(m_matrix.rows() - 1)
266 return MatrixTReturnType(m_matrix.real());
298 MatrixType m_matrix; member in class:Eigen::Tridiagonalization
550 typename MatrixType::Nested m_matrix; member in struct:Eigen::internal::TridiagonalizationMatrixTReturnType
    [all...]
HessenbergDecomposition.h 101 : m_matrix(size,size),
119 : m_matrix(matrix),
129 _compute(m_matrix, m_hCoeffs, m_temp);
152 m_matrix = matrix;
159 _compute(m_matrix, m_hCoeffs, m_temp);
215 return m_matrix;
235 return HouseholderSequenceType(m_matrix, m_hCoeffs.conjugate())
236 .setLength(m_matrix.rows() - 1)
273 MatrixType m_matrix; member in class:Eigen::HessenbergDecomposition
  /external/eigen/Eigen/src/Eigen2Support/
Minor.h 63 : m_matrix(matrix), m_row(row), m_col(col)
71 inline Index rows() const { return m_matrix.rows() - 1; }
72 inline Index cols() const { return m_matrix.cols() - 1; }
76 return m_matrix.const_cast_derived().coeffRef(row + (row >= m_row), col + (col >= m_col));
81 return m_matrix.coeff(row + (row >= m_row), col + (col >= m_col));
85 const typename MatrixType::Nested m_matrix; member in class:Eigen::Minor
TriangularSolver.h 30 return m_matrix.template triangularView<Added>().solve(other.derived());
37 m_matrix.template triangularView<Added>().solveInPlace(other.derived());
  /external/eigen/Eigen/src/Eigen2Support/Geometry/
Transform.h 74 MatrixType m_matrix; member in class:Eigen::Transform
83 m_matrix = other.m_matrix;
92 { m_matrix = other.m_matrix; return *this; }
124 { m_matrix = other; return *this; }
135 /** shortcut for m_matrix(row,col);
137 inline Scalar operator() (int row, int col) const { return m_matrix(row,col); }
138 /** shortcut for m_matrix(row,col);
140 inline Scalar& operator() (int row, int col) { return m_matrix(row,col);
    [all...]

Completed in 1094 milliseconds

1 2 3