Searched refs:topLeftCorner (Results 1 - 25 of 37) sorted by path

12

/external/chromium_org/third_party/WebKit/Source/core/rendering/shapes/
H A DBoxShape.cpp68 float topCornerMaxY = std::max<float>(marginBounds.topLeftCorner().maxY(), marginBounds.topRightCorner().maxY());
79 if (y1 <= marginBounds.topLeftCorner().maxY() && y2 >= marginBounds.bottomLeftCorner().y())
/external/chromium_org/third_party/WebKit/Source/platform/geometry/
H A DFloatRoundedRect.cpp117 const FloatRect& topLeftRect = topLeftCorner();
H A DFloatRoundedRect.h101 FloatRect topLeftCorner() const function in class:blink::FloatRoundedRect
H A DFloatRoundedRectTest.cpp98 EXPECT_EQ(FloatRect(1, 2, 0, 0), r.topLeftCorner());
134 EXPECT_EQ(FloatRect(0, 0, 50, 50), r.topLeftCorner());
179 EXPECT_EQ(FloatRect(0, 0, 10, 15), r.topLeftCorner());
/external/eigen/Eigen/src/Geometry/
H A DTransform.h1135 res.matrix().template topLeftCorner<Dim,Dim>() = linear().transpose();
1139 res.matrix().template topLeftCorner<Dim,Dim>() = linear().inverse();
1147 = - res.matrix().template topLeftCorner<Dim,Dim>() * translation();
H A DUmeyama.h163 Rt.col(m).head(m).noalias() -= c*Rt.topLeftCorner(m,m)*src_mean;
169 Rt.col(m).head(m).noalias() -= Rt.topLeftCorner(m,m)*src_mean;
/external/eigen/Eigen/src/LU/
H A DFullPivLU.h610 m.topLeftCorner(rank(), rank())
700 .topLeftCorner(smalldim,smalldim)
712 .topLeftCorner(nonzero_pivots, nonzero_pivots)
/external/eigen/Eigen/src/QR/
H A DColPivHouseholderQR.h168 * matrixR().topLeftCorner(rank(), rank()).template triangularView<Upper>()
547 .topLeftCorner(nonzero_pivots, nonzero_pivots)
H A DFullPivHouseholderQR.h522 .topLeftCorner(dec().rank(), dec().rank())
H A DHouseholderQR.h326 .topLeftCorner(rank, rank)
/external/eigen/Eigen/src/SPQRSupport/
H A DSuiteSparseQRSupport.h154 y.topRows(rk) = this->matrixR().topLeftCorner(rk, rk).template triangularView<Upper>().solve(y.topRows(rk));
/external/eigen/Eigen/src/SparseQR/
H A DSparseQR.h55 * matrixR().topLeftCorner(rank(), rank()) always returns a triangular factor of full rank.
179 y.topRows(rank) = this->matrixR().topLeftCorner(rank, rank).template triangularView<Upper>().solve(b.topRows(rank));
/external/eigen/Eigen/src/plugins/
H A DBlockMethods.h156 inline Block<Derived> topLeftCorner(Index cRows, Index cCols) function
161 /** This is the const version of topLeftCorner(Index, Index).*/
162 inline const Block<const Derived> topLeftCorner(Index cRows, Index cCols) const function
177 inline Block<Derived, CRows, CCols> topLeftCorner() function
182 /** This is the const version of topLeftCorner<int, int>().*/
184 inline const Block<const Derived, CRows, CCols> topLeftCorner() const function
207 inline Block<Derived, CRows, CCols> topLeftCorner(Index cRows, Index cCols) function
212 /** This is the const version of topLeftCorner<int, int>(Index, Index).*/
214 inline const Block<const Derived, CRows, CCols> topLeftCorner(Index cRows, Index cCols) const function
/external/eigen/doc/examples/
H A DTemplateKeyword_flexible.cpp19 copyUpperTriangularPart(m2, m1.topLeftCorner(4,4));
H A DTutorial_BlockOperations_corner.cpp15 m.topLeftCorner(1,3) = m.bottomRightCorner(3,1).transpose();
H A Dclass_Block.cpp8 topLeftCorner(MatrixBase<Derived>& m, int rows, int cols) function
15 topLeftCorner(const MatrixBase<Derived>& m, int rows, int cols) function
23 cout << topLeftCorner(4*m, 2, 3) << endl; // calls the const version
24 topLeftCorner(m, 2, 3) *= 5; // calls the non-const version
H A Dfunction_taking_ref.cpp17 cout << "inv_cond(m(1:3,1:3)): " << inv_cond(m.topLeftCorner(3,3)) << endl;
/external/eigen/doc/snippets/
H A DMatrixBase_template_int_int_topLeftCorner.cpp3 cout << "Here is m.topLeftCorner<2,2>():" << endl;
4 cout << m.topLeftCorner<2,2>() << endl;
5 m.topLeftCorner<2,2>().setZero();
H A DMatrixBase_template_int_int_topLeftCorner_int_int.cpp3 cout << "Here is m.topLeftCorner<2,Dynamic>(2,2):" << endl;
4 cout << m.topLeftCorner<2,Dynamic>(2,2) << endl;
5 m.topLeftCorner<2,Dynamic>(2,2).setZero();
H A DMatrixBase_topLeftCorner_int_int.cpp3 cout << "Here is m.topLeftCorner(2, 2):" << endl;
4 cout << m.topLeftCorner(2, 2) << endl;
5 m.topLeftCorner(2, 2).setZero();
H A DTopicAliasing_block.cpp6 mat.bottomRightCorner(2,2) = mat.topLeftCorner(2,2);
H A DTopicAliasing_block_correct.cpp6 mat.bottomRightCorner(2,2) = mat.topLeftCorner(2,2).eval();
H A DTutorial_AdvancedInitialization_ThreeWays.cpp3 mat1.topLeftCorner(size/2, size/2) = MatrixXd::Zero(size/2, size/2);
10 mat2.topLeftCorner(size/2, size/2).setZero();
/external/eigen/test/
H A Dcorners.cpp28 COMPARE_CORNER(topLeftCorner(r,c), block(0,0,r,c));
60 VERIFY_IS_EQUAL((matrix.template topLeftCorner<r,c>()), (matrix.template block<r,c>(0,0)));
65 VERIFY_IS_EQUAL((matrix.template topLeftCorner<r,c>()), (matrix.template topLeftCorner<r,Dynamic>(r,c)));
70 VERIFY_IS_EQUAL((matrix.template topLeftCorner<r,c>()), (matrix.template topLeftCorner<Dynamic,c>(r,c)));
82 VERIFY_IS_EQUAL((const_matrix.template topLeftCorner<r,c>()), (const_matrix.template block<r,c>(0,0)));
87 VERIFY_IS_EQUAL((const_matrix.template topLeftCorner<r,c>()), (const_matrix.template topLeftCorner<r,Dynamic>(r,c)));
92 VERIFY_IS_EQUAL((const_matrix.template topLeftCorner<
[all...]
H A Djacobisvd.cpp137 Matrix<Scalar,Dynamic,1> tmp = qr.matrixQR().topLeftCorner(rank,rank).template triangularView<Upper>().adjoint().solve(rhs2);

Completed in 1006 milliseconds

12