/external/eigen/test/ |
D | corners.cpp | 29 COMPARE_CORNER(topRightCorner(r,c), block(0,cols-c,r,c)); in corners() 61 VERIFY_IS_EQUAL((matrix.template topRightCorner<r,c>()), (matrix.template block<r,c>(0,cols-c))); in corners_fixedsize() 66 …VERIFY_IS_EQUAL((matrix.template topRightCorner<r,c>()), (matrix.template topRightCorner<r,Dynamic… in corners_fixedsize() 71 …VERIFY_IS_EQUAL((matrix.template topRightCorner<r,c>()), (matrix.template topRightCorner<Dynamic,c… in corners_fixedsize() 83 …VERIFY_IS_EQUAL((const_matrix.template topRightCorner<r,c>()), (const_matrix.template block<r,c>(0… in corners_fixedsize() 88 …VERIFY_IS_EQUAL((const_matrix.template topRightCorner<r,c>()), (const_matrix.template topRightCorn… in corners_fixedsize() 93 …VERIFY_IS_EQUAL((const_matrix.template topRightCorner<r,c>()), (const_matrix.template topRightCorn… in corners_fixedsize()
|
/external/eigen/doc/snippets/ |
D | MatrixBase_template_int_int_topRightCorner.cpp | 4 cout << m.topRightCorner<2,2>() << endl; 5 m.topRightCorner<2,2>().setZero();
|
D | MatrixBase_topRightCorner_int_int.cpp | 4 cout << m.topRightCorner(2, 2) << endl; 5 m.topRightCorner(2, 2).setZero();
|
D | MatrixBase_template_int_int_topRightCorner_int_int.cpp | 4 cout << m.topRightCorner<2,Dynamic>(2,2) << endl; 5 m.topRightCorner<2,Dynamic>(2,2).setZero();
|
D | 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/chromium_org/third_party/WebKit/Source/platform/geometry/ |
D | FloatRoundedRectTest.cpp | 99 EXPECT_EQ(FloatRect(4, 2, 0, 0), r.topRightCorner()); in TEST() 135 EXPECT_EQ(FloatRect(50, 0, 50, 50), r.topRightCorner()); in TEST() 180 EXPECT_EQ(FloatRect(90, 0, 10, 20), r.topRightCorner()); in TEST()
|
D | FloatRoundedRect.h | 105 FloatRect topRightCorner() const in topRightCorner() function
|
D | FloatRoundedRect.cpp | 127 const FloatRect& topRightRect = topRightCorner(); in xInterceptsAtY()
|
/external/chromium_org/third_party/WebKit/Source/core/rendering/shapes/ |
D | BoxShape.cpp | 68 …rMaxY = std::max<float>(marginBounds.topLeftCorner().maxY(), marginBounds.topRightCorner().maxY()); in getExcludedInterval() 82 if (y1 <= marginBounds.topRightCorner().maxY() && y2 >= marginBounds.bottomRightCorner().y()) in getExcludedInterval()
|
/external/eigen/Eigen/src/plugins/ |
D | BlockMethods.h | 80 inline Block<Derived> topRightCorner(Index cRows, Index cCols) in topRightCorner() function 86 inline const Block<const Derived> topRightCorner(Index cRows, Index cCols) const in topRightCorner() function 102 inline Block<Derived, CRows, CCols> topRightCorner() in topRightCorner() function 109 inline const Block<const Derived, CRows, CCols> topRightCorner() const in topRightCorner() function 132 inline Block<Derived, CRows, CCols> topRightCorner(Index cRows, Index cCols) in topRightCorner() function 139 inline const Block<const Derived, CRows, CCols> topRightCorner(Index cRows, Index cCols) const in topRightCorner() function
|
/external/eigen/doc/ |
D | TutorialBlockOperations.dox | 129 \link DenseBase::topRightCorner() * \endlink</td> 131 matrix.topRightCorner(p,q);\endcode </td> 133 matrix.topRightCorner<p,q>();\endcode </td>
|
D | AsciiQuickReference.txt | 75 P.topRightCorner(rows, cols) // P(1:rows, end-cols+1:end) 79 P.topRightCorner<rows,cols>() // P(1:rows, end-cols+1:end)
|
D | A05_PortingFrom2To3.dox | 66 matrix.topRightCorner(r,c) 70 matrix.topRightCorner<r,c>()
|
D | SparseQuickReference.dox | 193 sm1.topRightCorner(rows, cols);
|
D | QuickReference.dox | 495 mat1.topRightCorner(rows,cols) 500 mat1.topRightCorner<rows,cols>()
|
/external/eigen/Eigen/src/LU/ |
D | FullPivLU.h | 612 m.topRightCorner(rank(), dimker)
|
/external/eigen/Eigen/src/Geometry/ |
D | Transform.h | 1146 res.matrix().template topRightCorner<Dim,1>()
|