HomeSort by relevance Sort by last modified time
    Searched refs:bottomLeftCorner (Results 1 - 13 of 13) sorted by null

  /external/eigen/doc/snippets/
MatrixBase_bottomLeftCorner_int_int.cpp 3 cout << "Here is m.bottomLeftCorner(2, 2):" << endl;
4 cout << m.bottomLeftCorner(2, 2) << endl;
5 m.bottomLeftCorner(2, 2).setZero();
MatrixBase_template_int_int_bottomLeftCorner.cpp 3 cout << "Here is m.bottomLeftCorner<2,2>():" << endl;
4 cout << m.bottomLeftCorner<2,2>() << endl;
5 m.bottomLeftCorner<2,2>().setZero();
MatrixBase_template_int_int_bottomLeftCorner_int_int.cpp 3 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();
Tutorial_AdvancedInitialization_ThreeWays.cpp 5 mat1.bottomLeftCorner(size/2, size/2) = MatrixXd::Identity(size/2, size/2);
12 mat2.bottomLeftCorner(size/2, size/2).setIdentity();
  /external/eigen/test/
corners.cpp 30 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<r,c>()), (const_matrix.template bottomLeftCorner<Dynamic,c>(r,c)))
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/rendering/shapes/
BoxShape.cpp 71 float bottomCornerMinY = std::min<float>(marginBounds.bottomLeftCorner().y(), marginBounds.bottomRightCorner().y());
83 if (y1 <= marginBounds.topLeftCorner().maxY() && y2 >= marginBounds.bottomLeftCorner().y())
  /external/chromium_org/third_party/WebKit/Source/platform/geometry/
FloatRoundedRectTest.cpp 101 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());
FloatRoundedRect.cpp 118 const FloatRect& bottomLeftRect = bottomLeftCorner();
FloatRoundedRect.h 109 FloatRect bottomLeftCorner() const
  /external/eigen/Eigen/src/plugins/
BlockMethods.h 306 inline Block<Derived> bottomLeftCorner(Index cRows, Index cCols)
311 /** This is the const version of bottomLeftCorner(Index, Index).*/
312 inline const Block<const Derived> bottomLeftCorner(Index cRows, Index cCols) const
327 inline Block<Derived, CRows, CCols> bottomLeftCorner()
332 /** This is the const version of bottomLeftCorner<int, int>().*/
334 inline const Block<const Derived, CRows, CCols> bottomLeftCorner() const
357 inline Block<Derived, CRows, CCols> bottomLeftCorner(Index cRows, Index cCols)
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
    [all...]
  /external/ceres-solver/internal/ceres/
dense_sparse_matrix.cc 118 m_.bottomLeftCorner(m_.cols(), m_.cols()) =
  /external/eigen/Eigen/src/Eigenvalues/
HessenbergDecomposition.h 359 result.bottomLeftCorner(n-2, n-2).template triangularView<Lower>().setZero();
  /external/eigen/unsupported/Eigen/src/IterativeSolvers/
GMRES.h 92 H.bottomLeftCorner(m - 1, 1) = e;
190 H.bottomLeftCorner(m - 1, 1) = e;

Completed in 443 milliseconds