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

  /external/eigen/doc/snippets/
MatrixBase_template_int_int_topRightCorner.cpp 3 cout << "Here is m.topRightCorner<2,2>():" << endl;
4 cout << m.topRightCorner<2,2>() << endl;
5 m.topRightCorner<2,2>().setZero();
MatrixBase_template_int_int_topRightCorner_int_int.cpp 3 cout << "Here is m.topRightCorner<2,Dynamic>(2,2):" << endl;
4 cout << m.topRightCorner<2,Dynamic>(2,2) << endl;
5 m.topRightCorner<2,Dynamic>(2,2).setZero();
MatrixBase_topRightCorner_int_int.cpp 3 cout << "Here is m.topRightCorner(2, 2):" << endl;
4 cout << m.topRightCorner(2, 2) << endl;
5 m.topRightCorner(2, 2).setZero();
Tutorial_AdvancedInitialization_ThreeWays.cpp 4 mat1.topRightCorner(size/2, size/2) = MatrixXd::Identity(size/2, size/2);
11 mat2.topRightCorner(size/2, size/2).setIdentity();
  /external/eigen/test/
corners.cpp 29 COMPARE_CORNER(topRightCorner(r,c), block(0,cols-c,r,c));
61 VERIFY_IS_EQUAL((matrix.template topRightCorner<r,c>()), (matrix.template block<r,c>(0,cols-c)));
66 VERIFY_IS_EQUAL((matrix.template topRightCorner<r,c>()), (matrix.template topRightCorner<r,Dynamic>(r,c)));
71 VERIFY_IS_EQUAL((matrix.template topRightCorner<r,c>()), (matrix.template topRightCorner<Dynamic,c>(r,c)));
83 VERIFY_IS_EQUAL((const_matrix.template topRightCorner<r,c>()), (const_matrix.template block<r,c>(0,cols-c)));
88 VERIFY_IS_EQUAL((const_matrix.template topRightCorner<r,c>()), (const_matrix.template topRightCorner<r,Dynamic>(r,c)));
93 VERIFY_IS_EQUAL((const_matrix.template topRightCorner<r,c>()), (const_matrix.template topRightCorner<Dynamic,c>(r,c)))
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/rendering/shapes/
BoxShape.cpp 70 float topCornerMaxY = std::max<float>(marginBounds.topLeftCorner().maxY(), marginBounds.topRightCorner().maxY());
86 if (y1 <= marginBounds.topRightCorner().maxY() && y2 >= marginBounds.bottomRightCorner().y())
  /external/chromium_org/third_party/WebKit/Source/platform/geometry/
FloatRoundedRectTest.cpp 99 EXPECT_EQ(FloatRect(4, 2, 0, 0), r.topRightCorner());
135 EXPECT_EQ(FloatRect(50, 0, 50, 50), r.topRightCorner());
180 EXPECT_EQ(FloatRect(90, 0, 10, 20), r.topRightCorner());
FloatRoundedRect.cpp 127 const FloatRect& topRightRect = topRightCorner();
FloatRoundedRect.h 105 FloatRect topRightCorner() const
  /external/eigen/Eigen/src/plugins/
BlockMethods.h 80 inline Block<Derived> topRightCorner(Index cRows, Index cCols)
85 /** This is the const version of topRightCorner(Index, Index).*/
86 inline const Block<const Derived> topRightCorner(Index cRows, Index cCols) const
102 inline Block<Derived, CRows, CCols> topRightCorner()
107 /** This is the const version of topRightCorner<int, int>().*/
109 inline const Block<const Derived, CRows, CCols> topRightCorner() const
132 inline Block<Derived, CRows, CCols> topRightCorner(Index cRows, Index cCols)
137 /** This is the const version of topRightCorner<int, int>(Index, Index).*/
139 inline const Block<const Derived, CRows, CCols> topRightCorner(Index cRows, Index cCols) const
    [all...]
  /external/eigen/Eigen/src/LU/
FullPivLU.h 612 m.topRightCorner(rank(), dimker)
  /external/eigen/Eigen/src/Geometry/
Transform.h     [all...]

Completed in 396 milliseconds