Searched refs:bottomLeftCorner (Results 1 - 13 of 13) sorted by relevance

/external/eigen/doc/snippets/
H A DMatrixBase_bottomLeftCorner_int_int.cpp3 cout << "Here is m.bottomLeftCorner(2, 2):" << endl;
4 cout << m.bottomLeftCorner(2, 2) << endl;
5 m.bottomLeftCorner(2, 2).setZero();
H A DMatrixBase_template_int_int_bottomLeftCorner.cpp3 cout << "Here is m.bottomLeftCorner<2,2>():" << endl;
4 cout << m.bottomLeftCorner<2,2>() << endl;
5 m.bottomLeftCorner<2,2>().setZero();
H A DMatrixBase_template_int_int_bottomLeftCorner_int_int.cpp3 cout << "Here is m.bottomLeftCorner<2,Dynamic>(2,2):" << endl;
4 cout << m.bottomLeftCorner<2,Dynamic>(2,2) << endl;
5 m.bottomLeftCorner<2,Dynamic>(2,2).setZero();
H A DTutorial_AdvancedInitialization_ThreeWays.cpp5 mat1.bottomLeftCorner(size/2, size/2) = MatrixXd::Identity(size/2, size/2);
12 mat2.bottomLeftCorner(size/2, size/2).setIdentity();
/external/eigen/test/
H A Dcorners.cpp30 COMPARE_CORNER(bottomLeftCorner(r,c), block(rows-r,0,r,c));
62 VERIFY_IS_EQUAL((matrix.template bottomLeftCorner<r,c>()), (matrix.template block<r,c>(rows-r,0)));
67 VERIFY_IS_EQUAL((matrix.template bottomLeftCorner<r,c>()), (matrix.template bottomLeftCorner<r,Dynamic>(r,c)));
72 VERIFY_IS_EQUAL((matrix.template bottomLeftCorner<r,c>()), (matrix.template bottomLeftCorner<Dynamic,c>(r,c)));
84 VERIFY_IS_EQUAL((const_matrix.template bottomLeftCorner<r,c>()), (const_matrix.template block<r,c>(rows-r,0)));
89 VERIFY_IS_EQUAL((const_matrix.template bottomLeftCorner<r,c>()), (const_matrix.template bottomLeftCorner<r,Dynamic>(r,c)));
94 VERIFY_IS_EQUAL((const_matrix.template bottomLeftCorner<
[all...]
/external/chromium_org/third_party/WebKit/Source/core/rendering/shapes/
H A DBoxShape.cpp69 float bottomCornerMinY = std::min<float>(marginBounds.bottomLeftCorner().y(), marginBounds.bottomRightCorner().y());
79 if (y1 <= marginBounds.topLeftCorner().maxY() && y2 >= marginBounds.bottomLeftCorner().y())
/external/chromium_org/third_party/WebKit/Source/platform/geometry/
H A DFloatRoundedRectTest.cpp101 EXPECT_EQ(FloatRect(1, 6, 0, 0), r.bottomLeftCorner());
136 EXPECT_EQ(FloatRect(0, 50, 50, 50), r.bottomLeftCorner());
181 EXPECT_EQ(FloatRect(0, 85, 25, 15), r.bottomLeftCorner());
H A DFloatRoundedRect.cpp118 const FloatRect& bottomLeftRect = bottomLeftCorner();
H A DFloatRoundedRect.h109 FloatRect bottomLeftCorner() const function in class:blink::FloatRoundedRect
/external/eigen/Eigen/src/plugins/
H A DBlockMethods.h306 inline Block<Derived> bottomLeftCorner(Index cRows, Index cCols) function
311 /** This is the const version of bottomLeftCorner(Index, Index).*/
312 inline const Block<const Derived> bottomLeftCorner(Index cRows, Index cCols) const function
327 inline Block<Derived, CRows, CCols> bottomLeftCorner() function
332 /** This is the const version of bottomLeftCorner<int, int>().*/
334 inline const Block<const Derived, CRows, CCols> bottomLeftCorner() const function
357 inline Block<Derived, CRows, CCols> bottomLeftCorner(Index cRows, Index cCols) function
362 /** This is the const version of bottomLeftCorner<int, int>(Index, Index).*/
364 inline const Block<const Derived, CRows, CCols> bottomLeftCorner(Index cRows, Index cCols) const function
/external/ceres-solver/internal/ceres/
H A Ddense_sparse_matrix.cc118 m_.bottomLeftCorner(m_.cols(), m_.cols()) =
/external/eigen/Eigen/src/Eigenvalues/
H A DHessenbergDecomposition.h359 result.bottomLeftCorner(n-2, n-2).template triangularView<Lower>().setZero();
/external/eigen/unsupported/Eigen/src/IterativeSolvers/
H A DGMRES.h92 H.bottomLeftCorner(m - 1, 1) = e;
190 H.bottomLeftCorner(m - 1, 1) = e;

Completed in 2850 milliseconds