numRows 134 Source/core/accessibility/AXTable.cpp int numRows = firstBody->numRows(); numRows 137 Source/core/accessibility/AXTable.cpp if (numRows == 1 && numCols == 1) numRows 141 Source/core/accessibility/AXTable.cpp if (numRows >= 20) numRows 167 Source/core/accessibility/AXTable.cpp for (int row = 0; row < numRows; ++row) { numRows 253 Source/core/accessibility/AXTable.cpp if (headersInFirstColumnCount == numRows && numRows > 1) numRows 346 Source/core/accessibility/AXTable.cpp unsigned numRows = tableSection->numRows(); numRows 347 Source/core/accessibility/AXTable.cpp for (unsigned rowIndex = 0; rowIndex < numRows; ++rowIndex) { numRows 438 Source/core/accessibility/AXTable.cpp int numRows = m_rows.size(); numRows 439 Source/core/accessibility/AXTable.cpp for (int row = 0; row < numRows; ++row) { numRows 122 Source/core/accessibility/AXTableCell.cpp rowOffset += tableSection->numRows(); numRows 120 Source/core/accessibility/AXTableColumn.cpp if (!section->numRows()) numRows 168 Source/core/accessibility/AXTableColumn.cpp int numRows = parentTable->rowCount(); numRows 170 Source/core/accessibility/AXTableColumn.cpp for (int i = 0; i < numRows; i++) { numRows 64 Source/core/html/HTMLTableSectionElement.cpp int numRows = children ? (int)children->length() : 0; numRows 65 Source/core/html/HTMLTableSectionElement.cpp if (index < -1 || index > numRows) { numRows 66 Source/core/html/HTMLTableSectionElement.cpp exceptionState.throwDOMException(IndexSizeError, "The provided index (" + String::number(index) + " is outside the range [-1, " + String::number(numRows) + "]."); numRows 69 Source/core/html/HTMLTableSectionElement.cpp if (numRows == index || index == -1) numRows 86 Source/core/html/HTMLTableSectionElement.cpp int numRows = children ? (int)children->length() : 0; numRows 88 Source/core/html/HTMLTableSectionElement.cpp index = numRows - 1; numRows 89 Source/core/html/HTMLTableSectionElement.cpp if (index >= 0 && index < numRows) { numRows 93 Source/core/html/HTMLTableSectionElement.cpp exceptionState.throwDOMException(IndexSizeError, "The provided index (" + String::number(index) + " is outside the range [-1, " + String::number(numRows) + "]."); numRows 42 Source/core/html/HTMLTableSectionElement.h int numRows() const; numRows 60 Source/core/rendering/AutoTableLayout.cpp unsigned numRows = section->numRows(); numRows 61 Source/core/rendering/AutoTableLayout.cpp for (unsigned i = 0; i < numRows; i++) { numRows 329 Source/core/rendering/FixedTableLayout.cpp for (unsigned i = 0; i < section->numRows(); i++) { numRows 806 Source/core/rendering/RenderTable.cpp if (section && !section->numRows()) numRows 1214 Source/core/rendering/RenderTable.cpp if (prevSection->isTableSection() && prevSection != m_head && prevSection != m_foot && (skipEmptySections == DoNotSkipEmptySections || toRenderTableSection(prevSection)->numRows())) numRows 1218 Source/core/rendering/RenderTable.cpp if (!prevSection && m_head && (skipEmptySections == DoNotSkipEmptySections || m_head->numRows())) numRows 1232 Source/core/rendering/RenderTable.cpp if (nextSection->isTableSection() && nextSection != m_head && nextSection != m_foot && (skipEmptySections == DoNotSkipEmptySections || toRenderTableSection(nextSection)->numRows())) numRows 1236 Source/core/rendering/RenderTable.cpp if (!nextSection && m_foot && (skipEmptySections == DoNotSkipEmptySections || m_foot->numRows())) numRows 1271 Source/core/rendering/RenderTable.cpp ASSERT(section->numRows()); numRows 1272 Source/core/rendering/RenderTable.cpp rAbove = section->numRows() - 1; numRows 1293 Source/core/rendering/RenderTable.cpp if (r < cell->section()->numRows() - 1) { numRows 832 Source/core/rendering/RenderTableCell.cpp if (rowIndex() + rowSpan() >= currSection->numRows()) { numRows 183 Source/core/rendering/RenderTableSection.cpp void RenderTableSection::ensureRows(unsigned numRows) numRows 185 Source/core/rendering/RenderTableSection.cpp if (numRows <= m_grid.size()) numRows 189 Source/core/rendering/RenderTableSection.cpp m_grid.grow(numRows); numRows 188 Source/core/rendering/RenderTableSection.h unsigned numRows() const { return m_grid.size(); } numRows 187 Source/platform/image-decoders/bmp/BMPImageReader.h inline bool pastEndOfImage(int numRows) numRows 189 Source/platform/image-decoders/bmp/BMPImageReader.h return m_isTopDown ? ((m_coord.y() + numRows) >= m_parent->size().height()) : ((m_coord.y() - numRows) < 0);