Home
last modified time | relevance | path

Searched refs:hasSameDirectionAs (Results 1 – 7 of 7) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/rendering/
DRenderTableRow.h74 if (section()->hasSameDirectionAs(table())) in borderAdjoiningTableStart()
82 if (section()->hasSameDirectionAs(table())) in borderAdjoiningTableEnd()
DRenderTableSection.h144 if (hasSameDirectionAs(table())) in borderAdjoiningTableStart()
152 if (hasSameDirectionAs(table())) in borderAdjoiningTableEnd()
DRenderTableCell.h183 if (section()->hasSameDirectionAs(table())) in borderAdjoiningTableStart()
192 if (section()->hasSameDirectionAs(table())) in borderAdjoiningTableEnd()
DRenderTableSection.cpp1649 return hasSameDirectionAs(cell) ? style()->borderStart() : style()->borderEnd(); in borderAdjoiningStartCell()
1655 return hasSameDirectionAs(cell) ? style()->borderEnd() : style()->borderStart(); in borderAdjoiningEndCell()
1660 …unsigned adjoiningStartCellColumnIndex = hasSameDirectionAs(table()) ? 0 : table()->lastColumnInde… in firstRowCellAdjoiningTableStart()
1666 …unsigned adjoiningEndCellColumnIndex = hasSameDirectionAs(table()) ? table()->lastColumnIndex() : … in firstRowCellAdjoiningTableEnd()
DRenderTable.cpp1433 if (hasSameDirectionAs(cell->row())) in tableStartBorderAdjoiningCell()
1442 if (hasSameDirectionAs(cell->row())) in tableEndBorderAdjoiningCell()
DRenderTableCell.cpp484 bool hasSameDirectionAsTable = hasSameDirectionAs(table()); in hasStartBorderAdjoiningTable()
495 bool hasSameDirectionAsTable = hasSameDirectionAs(table()); in hasEndBorderAdjoiningTable()
DRenderBox.h595 …bool hasSameDirectionAs(const RenderBox* object) const { return style()->direction() == object->st… in hasSameDirectionAs() function