Home
last modified time | relevance | path

Searched refs:nextCell (Results 1 – 9 of 9) sorted by relevance

/external/srec/portable/src/
Dpmalloc.c478 register _Cell *nextCell; variable
483 while ((nextCell = qp->_Next) != 0
484 && _PTR_NORM(nextCell) < _PTR_NORM(q))
495 while ((nextCell = qp->_Next) != 0
496 && _PTR_NORM(nextCell) < _PTR_NORM(q))
522 while ((nextCell = qp->_Next) != 0
523 && _PTR_NORM(nextCell) < _PTR_NORM(q))
/external/chromium_org/third_party/WebKit/Source/core/rendering/
DRenderTableRow.cpp172 for (RenderTableCell* cell = firstCell(); cell; cell = cell->nextCell()) { in layout()
191 for (RenderTableCell* cell = firstCell(); cell; cell = cell->nextCell()) { in layout()
DFixedTableLayout.cpp139 for (RenderTableCell* cell = firstRow->firstCell(); cell; cell = cell->nextCell()) { in calcWidthArray()
331 for (RenderTableCell* cell = row->firstCell(); cell; cell = cell->nextCell()) in willChangeTableLayout()
DRenderTableCell.h81 RenderTableCell* nextCell() const;
302 inline RenderTableCell* RenderTableCell::nextCell() const in nextCell() function
DRenderTableCell.cpp799 RenderTableCell* nextCell = table->cellBelow(this); in computeCollapsedAfterBorder() local
800 if (nextCell) { in computeCollapsedAfterBorder()
802 …lt = chooseBorder(result, CollapsedBorderValue(nextCell->style()->borderBefore(), includeColor ? n… in computeCollapsedAfterBorder()
813 if (nextCell) { in computeCollapsedAfterBorder()
814 …chooseBorder(result, CollapsedBorderValue(nextCell->parent()->style()->borderBefore(), includeColo… in computeCollapsedAfterBorder()
DRenderTableSection.cpp1404 for (RenderTableCell* cell = row->firstCell(); cell; cell = cell->nextCell()) in recalcCells()
1421 … (RenderTableCell* cell = m_grid[rowIndex].rowRenderer->firstCell(); cell; cell = cell->nextCell()) in rowLogicalHeightChanged()
DTextAutosizer.cpp407 for (RenderTableCell* cell = row->firstCell(); cell; cell = cell->nextCell()) { in inflateAutoTable()
DRenderTable.cpp581 for (RenderTableCell* cell = row->firstCell(); cell; cell = cell->nextCell()) { in recalcCollapsedBorders()
/external/chromium_org/third_party/WebKit/Source/core/paint/
DTableRowPainter.cpp21 for (RenderTableCell* cell = m_renderTableRow.firstCell(); cell; cell = cell->nextCell()) { in paint()