/external/webkit/Source/WebCore/accessibility/ |
D | AccessibilityTable.cpp | 125 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 …]
|
D | AccessibilityTableColumn.cpp | 133 if (!section->numRows()) in headerObjectForSection() 184 int numRows = m_parentTable->rowCount(); in addChildren() local 186 for (int i = 0; i < numRows; i++) { in addChildren()
|
D | AccessibilityTableCell.cpp | 124 rowOffset += tableSection->numRows(); in rowIndexRange()
|
/external/webkit/Source/WebCore/html/ |
D | HTMLTableSectionElement.cpp | 67 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
|
D | HTMLTableSectionElement.h | 40 int numRows() const;
|
/external/webkit/Source/WebCore/platform/image-decoders/openvg/ |
D | ImageDecoderOpenVG.cpp | 53 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/ |
D | ImageBufferSkia.cpp | 216 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/ |
D | util.js | 253 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/ |
D | ImageBufferQt.cpp | 229 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/ |
D | BMPImageReader.h | 185 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/ |
D | ImageBufferAndroid.cpp | 156 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/ |
D | ImageBufferCairo.cpp | 191 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/ |
D | RenderTable.cpp | 869 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()
|
D | RenderTableSection.cpp | 160 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()
|
D | RenderTableSection.h | 107 int numRows() const { return m_gridRows; } in numRows() function
|
D | AutoTableLayout.cpp | 57 int numRows = section->numRows(); in recalcColumn() local 58 for (int i = 0; i < numRows; i++) { in recalcColumn()
|
D | FixedTableLayout.cpp | 147 if (section && !section->numRows()) in calcWidthArray()
|
D | RenderTableCell.cpp | 638 if (row() + rowSpan() >= currSection->numRows()) { in collapsedAfterBorder()
|
/external/llvm/utils/Misc/ |
D | zkill | 84 numRows = len(header) 101 fields = ln.split(None, numRows - 1) 102 if len(fields) != numRows:
|
/external/webkit/Source/WebCore/platform/graphics/openvg/ |
D | TiledImageOpenVG.h | 47 int numRows() const;
|
D | TiledImageOpenVG.cpp | 78 int TiledImageOpenVG::numRows() const in numRows() function in WebCore::TiledImageOpenVG
|
D | PainterOpenVG.cpp | 1174 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/ |
D | 2010-02-24-BigStack.ll | 7 define void @FindMin(double* %panelTDEL, i8* %dclOfRow, i32 %numRows, i32 %numCols, double* %retMin…
|
/external/icu4c/common/ |
D | rbbitblb.cpp | 1062 int32_t numRows; in getTableSize() local 1072 numRows = fDStates->size(); in getTableSize() 1079 size += numRows * rowSize; in getTableSize()
|
/external/opencv/cvaux/src/ |
D | cvtrifocal.cpp | 475 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()
|