/external/chromium_org/third_party/WebKit/Source/web/tests/ |
RenderTableRowTest.cpp | 68 m_row = RenderTableRow::createAnonymous(document()); 73 m_row->destroy(); 76 RenderTableRow* m_row; member in class:WebCore::__anon13666::RenderTableRowDeathTest 87 m_row->setRowIndex(rowIndex); 88 EXPECT_EQ(rowIndex, m_row->rowIndex()); 93 m_row->setRowIndex(maxRowIndex); 94 EXPECT_EQ(maxRowIndex, m_row->rowIndex()); 103 ASSERT_DEATH(m_row->setRowIndex(maxRowIndex + 1), ""); 108 ASSERT_DEATH(m_row->setRowIndex(unsetRowIndex), "");
|
/external/eigen/Eigen/src/Core/ |
CommaInitializer.h | 34 : m_xpr(xpr), m_row(0), m_col(1), m_currentBlockRows(1) 41 : m_xpr(xpr), m_row(0), m_col(other.cols()), m_currentBlockRows(other.rows()) 51 m_row+=m_currentBlockRows; 54 eigen_assert(m_row<m_xpr.rows() 60 m_xpr.coeffRef(m_row, m_col++) = s; 70 m_row+=m_currentBlockRows; 73 eigen_assert(m_row+m_currentBlockRows<=m_xpr.rows() 82 (m_row, m_col) = other; 84 m_xpr.block(m_row, m_col, other.rows(), other.cols()) = other; 91 eigen_assert((m_row+m_currentBlockRows) == m_xpr.rows( [all...] |
/external/eigen/Eigen/src/Eigen2Support/ |
Minor.h | 63 : m_matrix(matrix), m_row(row), m_col(col) 76 return m_matrix.const_cast_derived().coeffRef(row + (row >= m_row), col + (col >= m_col)); 81 return m_matrix.coeff(row + (row >= m_row), col + (col >= m_col)); 86 const Index m_row, m_col; member in class:Eigen::Minor
|
/external/eigen/Eigen/src/SparseCore/ |
SparseUtil.h | 152 Triplet() : m_row(0), m_col(0), m_value(0) {} 155 : m_row(i), m_col(j), m_value(v) 159 const Index& row() const { return m_row; } 167 Index m_row, m_col; member in class:Eigen::Triplet
|