Searched refs:numRows (Results 1 - 25 of 28) sorted by relevance

12

/external/webkit/Source/WebCore/html/
H A DHTMLTableSectionElement.cpp67 int numRows = children ? (int)children->length() : 0; local
68 if (index < -1 || index > numRows)
72 if (numRows == index || index == -1)
89 int numRows = children ? (int)children->length() : 0; local
91 index = numRows - 1;
92 if (index >= 0 && index < numRows) {
99 int HTMLTableSectionElement::numRows() const function in class:WebCore::HTMLTableSectionElement
H A DHTMLTableSectionElement.h40 int numRows() const;
/external/webkit/Source/WebCore/accessibility/
H A DAccessibilityTable.cpp125 int numRows = firstBody->numRows(); local
128 if (numRows == 1 && numCols == 1)
150 for (int row = 0; row < numRows; ++row) {
220 if (headersInFirstColumnCount == numRows && numRows > 1)
315 unsigned numRows = tableSection->numRows(); local
317 for (unsigned rowIndex = 0; rowIndex < numRows; ++rowIndex) {
429 int numRows local
467 unsigned numRows = tableSection->numRows(); local
[all...]
H A DAccessibilityTableColumn.cpp133 if (!section->numRows())
184 int numRows = m_parentTable->rowCount(); local
186 for (int i = 0; i < numRows; i++) {
H A DAccessibilityTableCell.cpp124 rowOffset += tableSection->numRows();
/external/webkit/Source/WebCore/platform/image-decoders/openvg/
H A DImageDecoderOpenVG.cpp53 const int numRows = tiledImage->numRows(); local
55 for (int yIndex = 0; yIndex < numRows; ++yIndex) {
/external/webkit/Source/WebCore/platform/graphics/openvg/
H A DTiledImageOpenVG.h47 int numRows() const;
H A DTiledImageOpenVG.cpp78 int TiledImageOpenVG::numRows() const function in class:WebCore::TiledImageOpenVG
H A DPainterOpenVG.cpp1174 const int numRows = tiledImage->numRows(); local
1177 for (int yIndex = 0; yIndex < numRows; ++yIndex) {
1190 for (int yIndex = 0; yIndex < numRows; ++yIndex) {
/external/chromium/chrome/browser/resources/net_internals/
H A 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/image-decoders/bmp/
H A DBMPImageReader.h182 // Returns true if the current y-coordinate plus |numRows| would be past
185 inline bool pastEndOfImage(int numRows) argument
187 return m_isTopDown ? ((m_coord.y() + numRows) >= m_parent->size().height()) : ((m_coord.y() - numRows) < 0);
/external/webkit/Source/WebCore/platform/graphics/skia/
H A DImageBufferSkia.cpp216 int numRows = endY - originY; local
218 if (numRows <= 0)
226 srcDevice.readPixels(SkIRect::MakeXYWH(originX, originY, numColumns, numRows), &srcBitmap);
231 for (int y = 0; y < numRows; ++y) {
297 int numRows = endY - destY;
309 destBitmap.setConfig(SkBitmap::kARGB_8888_Config, numColumns, numRows, srcBytesPerRow);
313 deviceBitmap.extractSubset(&destBitmap, SkIRect::MakeXYWH(destX, destY, numColumns, numRows));
318 for (int y = 0; y < numRows; ++y) {
/external/webkit/Source/WebCore/platform/graphics/android/
H A DImageBufferAndroid.cpp168 int numRows = endy - originy; local
175 for (int y = 0; y < numRows; ++y) {
228 int numRows = endy - desty; local
235 for (int y = 0; y < numRows; ++y) {
/external/webkit/Source/WebCore/platform/graphics/qt/
H A DImageBufferQt.cpp229 int numRows = endy - originy; local
242 for (int y = 0; y < numRows; ++y) {
264 for (int y = 0; y < numRows; ++y) {
332 int numRows = endy - desty; local
337 QImage image(numColumns, numRows, QImage::Format_ARGB32_Premultiplied);
344 for (int y = 0; y < numRows; ++y) {
354 for (int y = 0; y < numRows; ++y) {
/external/webkit/Source/WebCore/platform/graphics/cairo/
H A DImageBufferCairo.cpp191 int numRows = endy - originy; local
197 for (int y = 0; y < numRows; ++y) {
259 int numRows = endy - desty; local
265 for (int y = 0; y < numRows; ++y) {
283 numColumns, numRows);
/external/llvm/utils/Misc/
H A Dzkill84 numRows = len(header)
101 fields = ln.split(None, numRows - 1)
102 if len(fields) != numRows:
/external/webkit/Source/WebCore/rendering/
H A DRenderTable.cpp870 if (firstNonEmptySection && !firstNonEmptySection->numRows())
928 if (firstNonEmptySection && !firstNonEmptySection->numRows())
1103 if (prevSection->isTableSection() && prevSection != m_head && prevSection != m_foot && (!skipEmptySections || toRenderTableSection(prevSection)->numRows()))
1107 if (!prevSection && m_head && (!skipEmptySections || m_head->numRows()))
1121 if (nextSection->isTableSection() && nextSection != m_head && nextSection != m_foot && (!skipEmptySections || toRenderTableSection(nextSection)->numRows()))
1125 if (!nextSection && m_foot && (!skipEmptySections || m_foot->numRows()))
1145 rAbove = section->numRows() - 1;
1165 if (r < cell->section()->numRows() - 1) {
1225 if (firstNonEmptySection && !firstNonEmptySection->numRows())
H A DRenderTableSection.h107 int numRows() const { return m_gridRows; } function in class:WebCore::RenderTableSection
H A DRenderTableSection.cpp166 bool RenderTableSection::ensureRows(int numRows) argument
169 if (numRows > nRows) {
170 if (numRows > static_cast<int>(m_grid.size())) {
172 if (static_cast<size_t>(numRows) > maxSize)
174 m_grid.grow(numRows);
176 m_gridRows = numRows;
178 for (int r = nRows; r < numRows; r++) {
H A DFixedTableLayout.cpp147 if (section && !section->numRows())
H A DAutoTableLayout.cpp57 int numRows = section->numRows(); local
58 for (int i = 0; i < numRows; i++) {
H A DRenderTableCell.cpp638 if (row() + rowSpan() >= currSection->numRows()) {
/external/icu4c/common/
H A Drbbitblb.cpp1062 int32_t numRows; local
1072 numRows = fDStates->size();
1079 size += numRows * rowSize;
/external/opencv/cvaux/src/
H A Dcvtrifocal.cpp475 int numRows; local
476 numRows = srcMatr->rows;
479 if( numRows != dstMatr->rows )
492 for( i = 0; i < numRows; i++ )
/external/zxing/core/
H A Dcore.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/zxing/ com/google/zxing/aztec/ ...

Completed in 1471 milliseconds

12