/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 | 168 int numRows = endy - originy; in getUnmultipliedImageData() local 175 for (int y = 0; y < numRows; ++y) { in getUnmultipliedImageData() 228 int numRows = endy - desty; in putUnmultipliedImageData() local 235 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/eigen/Eigen/src/plugins/ |
D | BlockMethods.h | 347 inline RowsBlockXpr middleRows(Index startRow, Index numRows) in middleRows() argument 349 return RowsBlockXpr(derived(), startRow, 0, numRows, cols()); in middleRows() 353 inline ConstRowsBlockXpr middleRows(Index startRow, Index numRows) const in middleRows() argument 355 return ConstRowsBlockXpr(derived(), startRow, 0, numRows, cols()); in middleRows()
|
/external/webkit/Source/WebCore/rendering/ |
D | RenderTable.cpp | 870 if (firstNonEmptySection && !firstNonEmptySection->numRows()) in calcBorderStart() 928 if (firstNonEmptySection && !firstNonEmptySection->numRows()) in calcBorderEnd() 1103 …d && prevSection != m_foot && (!skipEmptySections || toRenderTableSection(prevSection)->numRows())) in sectionAbove() 1107 if (!prevSection && m_head && (!skipEmptySections || m_head->numRows())) in sectionAbove() 1121 …d && nextSection != m_foot && (!skipEmptySections || toRenderTableSection(nextSection)->numRows())) in sectionBelow() 1125 if (!nextSection && m_foot && (!skipEmptySections || m_foot->numRows())) in sectionBelow() 1145 rAbove = section->numRows() - 1; in cellAbove() 1165 if (r < cell->section()->numRows() - 1) { in cellBelow() 1225 if (firstNonEmptySection && !firstNonEmptySection->numRows()) in firstLineBoxBaseline()
|
D | RenderTableSection.cpp | 166 bool RenderTableSection::ensureRows(int numRows) in ensureRows() argument 169 if (numRows > nRows) { in ensureRows() 170 if (numRows > static_cast<int>(m_grid.size())) { in ensureRows() 172 if (static_cast<size_t>(numRows) > maxSize) in ensureRows() 174 m_grid.grow(numRows); in ensureRows() 176 m_gridRows = numRows; in ensureRows() 178 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()
|
/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/utils/Misc/ |
D | zkill | 84 numRows = len(header) 101 fields = ln.split(None, numRows - 1) 102 if len(fields) != numRows:
|
/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/eigen/doc/ |
D | SparseQuickReference.dox | 184 sm1.middleRows(start, numRows); // For row major matrices, get a range of numRows rows
|