Home
last modified time | relevance | path

Searched refs:m_columnIndex (Results 1 – 3 of 3) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/accessibility/
DAXTableColumn.h51 void setColumnIndex(int columnIndex) { m_columnIndex = columnIndex; } in setColumnIndex()
52 int columnIndex() const { return m_columnIndex; } in columnIndex()
60 unsigned m_columnIndex;
DAXTableColumn.cpp118 if (m_columnIndex >= numCols) in headerObjectForSection()
126 for (int testCol = m_columnIndex; testCol >= 0; --testCol) { in headerObjectForSection()
133 if ((testCell->col() + (testCell->colSpan()-1)) < m_columnIndex) in headerObjectForSection()
172 AXTableCell* cell = parentTable->cellForColumnAndRow(m_columnIndex, i); in addChildren()
/external/chromium_org/third_party/WebKit/Source/core/rendering/
DRenderGrid.cpp100 , m_columnIndex((direction == ForColumns) ? fixedTrackIndex : 0) in GridIterator()
104 ASSERT(m_columnIndex < m_grid[0].size()); in GridIterator()
111 size_t& varyingTrackIndex = (m_direction == ForColumns) ? m_rowIndex : m_columnIndex; in nextGridItem()
114 const GridCell& children = m_grid[m_rowIndex][m_columnIndex]; in nextGridItem()
127 size_t& varyingTrackIndex = (m_direction == ForColumns) ? m_rowIndex : m_columnIndex; in nextEmptyGridArea()
130 const GridCell& children = m_grid[m_rowIndex][m_columnIndex]; in nextEmptyGridArea()
132 …tPtr(new GridCoordinate(GridSpan(m_rowIndex, m_rowIndex), GridSpan(m_columnIndex, m_columnIndex))); in nextEmptyGridArea()
145 size_t m_columnIndex; member in WebCore::RenderGrid::GridIterator