Home
last modified time | relevance | path

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

12

/external/webkit/Source/WebCore/accessibility/
DAccessibilityTable.cpp125 int numRows = firstBody->numRows(); in isDataTable() local
128 if (numRows == 1 && numCols == 1) in isDataTable()
150 for (int row = 0; row < numRows; ++row) { in isDataTable()
220 if (headersInFirstColumnCount == numRows && numRows > 1) in isDataTable()
315 unsigned numRows = tableSection->numRows(); in addChildren() local
317 for (unsigned rowIndex = 0; rowIndex < numRows; ++rowIndex) { in addChildren()
429 int numRows = m_rows.size(); in cells() local
430 for (int row = 0; row < numRows; ++row) { in cells()
467 unsigned numRows = tableSection->numRows(); in cellForColumnAndRow() local
470 rowCount += numRows; in cellForColumnAndRow()
[all …]
DAccessibilityTableColumn.cpp133 if (!section->numRows()) in headerObjectForSection()
184 int numRows = m_parentTable->rowCount(); in addChildren() local
186 for (int i = 0; i < numRows; i++) { in addChildren()
DAccessibilityTableCell.cpp124 rowOffset += tableSection->numRows(); in rowIndexRange()
/external/webkit/Source/WebCore/html/
DHTMLTableSectionElement.cpp67 int numRows = children ? (int)children->length() : 0; in insertRow() local
68 if (index < -1 || index > numRows) in insertRow()
72 if (numRows == index || index == -1) in insertRow()
89 int numRows = children ? (int)children->length() : 0; in deleteRow() local
91 index = numRows - 1; in deleteRow()
92 if (index >= 0 && index < numRows) { in deleteRow()
99 int HTMLTableSectionElement::numRows() const in numRows() function in WebCore::HTMLTableSectionElement
DHTMLTableSectionElement.h40 int numRows() const;
/external/webkit/Source/WebCore/platform/image-decoders/openvg/
DImageDecoderOpenVG.cpp53 const int numRows = tiledImage->numRows(); in asNewNativeImage() local
55 for (int yIndex = 0; yIndex < numRows; ++yIndex) { in asNewNativeImage()
/external/webkit/Source/WebCore/platform/graphics/skia/
DImageBufferSkia.cpp216 int numRows = endY - originY; in getImageData() local
218 if (numRows <= 0) in getImageData()
226 srcDevice.readPixels(SkIRect::MakeXYWH(originX, originY, numColumns, numRows), &srcBitmap); in getImageData()
231 for (int y = 0; y < numRows; ++y) { in getImageData()
297 int numRows = endY - destY; in putImageData() local
309 destBitmap.setConfig(SkBitmap::kARGB_8888_Config, numColumns, numRows, srcBytesPerRow); in putImageData()
313 … deviceBitmap.extractSubset(&destBitmap, SkIRect::MakeXYWH(destX, destY, numColumns, numRows)); in putImageData()
318 for (int y = 0; y < numRows; ++y) { in putImageData()
/external/chromium/chrome/browser/resources/net_internals/
Dutil.js253 var numRows = this.rows_.length;
255 for (var r = 0; r < numRows; ++r) {
278 for (var r = 0; r < numRows; ++r) {
310 var numRows = this.rows_.length;
328 for (var r = 0; r < numRows; ++r) {
/external/webkit/Source/WebCore/platform/graphics/qt/
DImageBufferQt.cpp229 int numRows = endy - originy; in getImageData() local
242 for (int y = 0; y < numRows; ++y) { in getImageData()
264 for (int y = 0; y < numRows; ++y) { in getImageData()
332 int numRows = endy - desty; in putImageData() local
337 QImage image(numColumns, numRows, QImage::Format_ARGB32_Premultiplied); in putImageData()
344 for (int y = 0; y < numRows; ++y) { in putImageData()
354 for (int y = 0; y < numRows; ++y) { in putImageData()
/external/webkit/Source/WebCore/platform/image-decoders/bmp/
DBMPImageReader.h185 inline bool pastEndOfImage(int numRows) in pastEndOfImage() argument
187 …return m_isTopDown ? ((m_coord.y() + numRows) >= m_parent->size().height()) : ((m_coord.y() - numR… in pastEndOfImage()
/external/webkit/Source/WebCore/platform/graphics/android/
DImageBufferAndroid.cpp156 int numRows = endy - originy; in getUnmultipliedImageData() local
163 for (int y = 0; y < numRows; ++y) { in getUnmultipliedImageData()
216 int numRows = endy - desty; in putUnmultipliedImageData() local
223 for (int y = 0; y < numRows; ++y) { in putUnmultipliedImageData()
/external/webkit/Source/WebCore/platform/graphics/cairo/
DImageBufferCairo.cpp191 int numRows = endy - originy; in getImageData() local
197 for (int y = 0; y < numRows; ++y) { in getImageData()
259 int numRows = endy - desty; in putImageData() local
265 for (int y = 0; y < numRows; ++y) { in putImageData()
283 numColumns, numRows); in putImageData()
/external/webkit/Source/WebCore/rendering/
DRenderTable.cpp869 if (firstNonEmptySection && !firstNonEmptySection->numRows()) in calcBorderStart()
927 if (firstNonEmptySection && !firstNonEmptySection->numRows()) in calcBorderEnd()
1102 …d && prevSection != m_foot && (!skipEmptySections || toRenderTableSection(prevSection)->numRows())) in sectionAbove()
1106 if (!prevSection && m_head && (!skipEmptySections || m_head->numRows())) in sectionAbove()
1120 …d && nextSection != m_foot && (!skipEmptySections || toRenderTableSection(nextSection)->numRows())) in sectionBelow()
1124 if (!nextSection && m_foot && (!skipEmptySections || m_foot->numRows())) in sectionBelow()
1144 rAbove = section->numRows() - 1; in cellAbove()
1164 if (r < cell->section()->numRows() - 1) { in cellBelow()
1224 if (firstNonEmptySection && !firstNonEmptySection->numRows()) in firstLineBoxBaseline()
DRenderTableSection.cpp160 bool RenderTableSection::ensureRows(int numRows) in ensureRows() argument
163 if (numRows > nRows) { in ensureRows()
164 if (numRows > static_cast<int>(m_grid.size())) { in ensureRows()
166 if (static_cast<size_t>(numRows) > maxSize) in ensureRows()
168 m_grid.grow(numRows); in ensureRows()
170 m_gridRows = numRows; in ensureRows()
172 for (int r = nRows; r < numRows; r++) { in ensureRows()
DRenderTableSection.h107 int numRows() const { return m_gridRows; } in numRows() function
DAutoTableLayout.cpp57 int numRows = section->numRows(); in recalcColumn() local
58 for (int i = 0; i < numRows; i++) { in recalcColumn()
DFixedTableLayout.cpp147 if (section && !section->numRows()) in calcWidthArray()
DRenderTableCell.cpp638 if (row() + rowSpan() >= currSection->numRows()) { in collapsedAfterBorder()
/external/llvm/utils/Misc/
Dzkill84 numRows = len(header)
101 fields = ln.split(None, numRows - 1)
102 if len(fields) != numRows:
/external/webkit/Source/WebCore/platform/graphics/openvg/
DTiledImageOpenVG.h47 int numRows() const;
DTiledImageOpenVG.cpp78 int TiledImageOpenVG::numRows() const in numRows() function in WebCore::TiledImageOpenVG
DPainterOpenVG.cpp1174 const int numRows = tiledImage->numRows(); in asNewNativeImage() local
1177 for (int yIndex = 0; yIndex < numRows; ++yIndex) { in asNewNativeImage()
1190 for (int yIndex = 0; yIndex < numRows; ++yIndex) { in asNewNativeImage()
/external/llvm/test/CodeGen/Thumb2/
D2010-02-24-BigStack.ll7 define void @FindMin(double* %panelTDEL, i8* %dclOfRow, i32 %numRows, i32 %numCols, double* %retMin…
/external/icu4c/common/
Drbbitblb.cpp1062 int32_t numRows; in getTableSize() local
1072 numRows = fDStates->size(); in getTableSize()
1079 size += numRows * rowSize; in getTableSize()
/external/opencv/cvaux/src/
Dcvtrifocal.cpp475 int numRows; in icvSelectColsByNumbers() local
476 numRows = srcMatr->rows; in icvSelectColsByNumbers()
479 if( numRows != dstMatr->rows ) in icvSelectColsByNumbers()
492 for( i = 0; i < numRows; i++ ) in icvSelectColsByNumbers()

12