Home
last modified time | relevance | path

Searched refs:numRows (Results 1 – 22 of 22) sorted by relevance

/external/webkit/WebCore/accessibility/
DAccessibilityTable.cpp114 int numRows = firstBody->numRows(); in isTableExposableThroughAccessibility() local
117 if (numRows == 1 && numCols == 1) in isTableExposableThroughAccessibility()
135 for (int row = 0; row < numRows; ++row) { in isTableExposableThroughAccessibility()
233 unsigned numRows = tableSection->numRows(); in addChildren() local
235 for (unsigned rowIndex = 0; rowIndex < numRows; ++rowIndex) { in addChildren()
346 int numRows = m_rows.size(); in cells() local
347 for (int row = 0; row < numRows; ++row) { in cells()
387 unsigned numRows = tableSection->numRows(); in cellForColumnAndRow() local
390 rowCount += numRows; in cellForColumnAndRow()
393 if (row < rowCount && column < numCols && sectionSpecificRow < numRows) { in cellForColumnAndRow()
[all …]
DAccessibilityTableColumn.cpp169 int numRows = m_parentTable->rowCount(); in addChildren() local
171 for (int i = 0; i < numRows; i++) { in addChildren()
DAccessibilityTableCell.cpp113 rowOffset += tableSection->numRows(); in rowIndexRange()
/external/webkit/WebCore/html/
DHTMLTableSectionElement.cpp83 int numRows = children ? (int)children->length() : 0; in insertRow() local
84 if (index < -1 || index > numRows) in insertRow()
88 if (numRows == index || index == -1) in insertRow()
105 int numRows = children ? (int)children->length() : 0; in deleteRow() local
107 index = numRows - 1; in deleteRow()
108 if (index >= 0 && index < numRows) { in deleteRow()
115 int HTMLTableSectionElement::numRows() const in numRows() function in WebCore::HTMLTableSectionElement
DHTMLTableSectionElement.h47 int numRows() const;
/external/webkit/WebCore/platform/graphics/android/
DImageBufferAndroid.cpp129 int numRows = endy - originy; in getUnmultipliedImageData() local
136 for (int y = 0; y < numRows; ++y) { in getUnmultipliedImageData()
189 int numRows = endy - desty; in putUnmultipliedImageData() local
196 for (int y = 0; y < numRows; ++y) { in putUnmultipliedImageData()
/external/webkit/WebCore/platform/graphics/cairo/
DImageBufferCairo.cpp174 int numRows = endy - originy; in getImageData() local
180 for (int y = 0; y < numRows; ++y) { in getImageData()
242 int numRows = endy - desty; in putImageData() local
248 for (int y = 0; y < numRows; ++y) { in putImageData()
266 numColumns, numRows); in putImageData()
/external/webkit/WebCore/platform/image-decoders/bmp/
DBMPImageReader.h180 inline bool pastEndOfImage(int numRows) in pastEndOfImage() argument
183 ? ((m_coord.y() + numRows) >= m_parent->size().height()) in pastEndOfImage()
184 : ((m_coord.y() - numRows) < 0); in pastEndOfImage()
/external/webkit/WebCore/platform/graphics/skia/
DImageBufferSkia.cpp157 int numRows = endY - originY; in getImageData() local
165 for (int y = 0; y < numRows; ++y) { in getImageData()
229 int numRows = endY - destY; in putImageData() local
238 for (int y = 0; y < numRows; ++y) { in putImageData()
/external/webkit/WebCore/platform/graphics/qt/
DImageBufferQt.cpp157 int numRows = endy - originy; in getImageData() local
169 for (int y = 0; y < numRows; ++y) { in getImageData()
222 int numRows = endy - desty; in putImageData() local
237 for (int y = 0; y < numRows; ++y) { in putImageData()
/external/webkit/WebCore/platform/graphics/cg/
DImageBufferCG.cpp154 int numRows = endy - originy; in getImageData() local
162 for (int y = 0; y < numRows; ++y) { in getImageData()
217 int numRows = endy - desty; in putImageData() local
224 for (int y = 0; y < numRows; ++y) { in putImageData()
/external/webkit/WebCore/rendering/
DRenderTable.cpp789 if (firstNonEmptySection && !firstNonEmptySection->numRows()) in calcBorderLeft()
848 if (firstNonEmptySection && !firstNonEmptySection->numRows()) in calcBorderRight()
1023 …d && prevSection != m_foot && (!skipEmptySections || toRenderTableSection(prevSection)->numRows())) in sectionAbove()
1027 if (!prevSection && m_head && (!skipEmptySections || m_head->numRows())) in sectionAbove()
1041 …d && nextSection != m_foot && (!skipEmptySections || toRenderTableSection(nextSection)->numRows())) in sectionBelow()
1045 if (!nextSection && m_foot && (!skipEmptySections || m_foot->numRows())) in sectionBelow()
1065 rAbove = section->numRows() - 1; in cellAbove()
1090 if (r < cell->section()->numRows() - 1) { in cellBelow()
1154 if (firstNonEmptySection && !firstNonEmptySection->numRows()) in firstLineBoxBaseline()
DRenderTableSection.cpp154 bool RenderTableSection::ensureRows(int numRows) in ensureRows() argument
157 if (numRows > nRows) { in ensureRows()
158 if (numRows > static_cast<int>(m_grid.size())) { in ensureRows()
160 if (static_cast<size_t>(numRows) > maxSize) in ensureRows()
162 m_grid.grow(numRows); in ensureRows()
164 m_gridRows = numRows; in ensureRows()
169 for (int r = nRows; r < numRows; r++) { in ensureRows()
DRenderTableSection.h87 int numRows() const { return m_gridRows; } in numRows() function
DAutoTableLayout.cpp66 int numRows = section->numRows(); in recalcColumn() local
68 for (int i = 0; i < numRows; i++) { in recalcColumn()
DFixedTableLayout.cpp149 if (section && !section->numRows()) in calcWidthArray()
DRenderTableCell.cpp554 if (row() + rowSpan() >= currSection->numRows()) { in collapsedBottomBorder()
/external/icu4c/common/
Drbbitblb.cpp1062 int32_t numRows; in getTableSize() local
1072 numRows = fDStates->size(); in getTableSize()
1079 size += numRows * rowSize; in getTableSize()
/external/chromium/third_party/icu/source/common/
Drbbitblb.cpp1080 int32_t numRows; in getTableSize() local
1090 numRows = fDStates->size(); in getTableSize()
1097 size += numRows * rowSize; in getTableSize()
/external/webkit/WebCore/
DChangeLog-2005-08-236505 (DOM::HTMLTableSectionElementImpl::numRows):
9137 (DOM::HTMLTableSectionElementImpl::numRows):
11740 (DOM::HTMLTableSectionElementImpl::numRows):
37888 (khtml::RenderTableSection::numRows):
DChangeLog-2003-10-2515001 (HTMLTableSectionElementImpl::numRows):
DChangeLog-2007-10-1469085 (WebCore::RenderTableSection::numRows):