Home | History | Annotate | Download | only in rendering

Lines Matching refs:effCol

1070         int effCol = colToEffCol(cell->col());
1074 aboveCell = section->cellAt(rAbove, effCol);
1075 effCol--;
1076 } while (!aboveCell.cell && aboveCell.inColSpan && effCol >= 0);
1102 int effCol = colToEffCol(cell->col());
1106 belowCell = section->cellAt(rBelow, effCol);
1107 effCol--;
1108 } while (!belowCell.cell && belowCell.inColSpan && effCol >= 0);
1119 int effCol = colToEffCol(cell->col());
1120 if (!effCol)
1126 prevCell = section->cellAt(cell->row(), effCol - 1);
1127 effCol--;
1128 } while (!prevCell.cell && prevCell.inColSpan && effCol >= 0);
1136 int effCol = colToEffCol(cell->col() + cell->colSpan());
1137 if (effCol >= numEffCols())
1139 return cell->section()->cellAt(cell->row(), effCol).cell;