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

  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderTable.h 165 unsigned lastColumnIndex() const { return numEffCols() - 1; }
169 unsigned numEffCols() const { return m_columns.size(); }
178 unsigned numColumns = numEffCols();
197 if (unsigned effectiveColumnCount = numEffCols())
345 for (unsigned c = 0; c < numEffCols(); c++) {
FixedTableLayout.cpp 85 unsigned nEffCols = m_table->numEffCols();
208 unsigned nEffCols = m_table->numEffCols();
215 nEffCols = m_table->numEffCols();
RenderTable.cpp 728 m_columnPos.grow(numEffCols() + 1);
    [all...]
RenderTableSection.cpp 211 unsigned effectiveColumnCount = std::max(1u, table()->numEffCols());
    [all...]
AutoTableLayout.cpp 145 unsigned nEffCols = m_table->numEffCols();
499 size_t nEffCols = m_table->numEffCols();
506 nEffCols = m_table->numEffCols();
    [all...]
RenderTableCell.cpp 474 bool isEndColumn = table()->colToEffCol(col() + colSpan() - 1) == table()->numEffCols() - 1;
485 bool isEndColumn = table()->colToEffCol(col() + colSpan() - 1) == table()->numEffCols() - 1;
606 bool isEndColumn = table->colToEffCol(col() + colSpan() - 1) == table->numEffCols() - 1;
    [all...]

Completed in 271 milliseconds