Home | History | Annotate | Download | only in rendering

Lines Matching refs:ty

979 void RenderTableSection::paint(PaintInfo& paintInfo, int tx, int ty)
994 ty += y();
997 bool pushedClip = pushContentsClip(paintInfo, tx, ty);
998 paintObject(paintInfo, tx, ty);
1000 popContentsClip(paintInfo, phase, tx, ty);
1008 void RenderTableSection::paintCell(RenderTableCell* cell, PaintInfo& paintInfo, int tx, int ty)
1010 IntPoint cellPoint = flipForWritingMode(cell, IntPoint(tx, ty), ParentToChildFlippingAdjustment);
1042 void RenderTableSection::paintObject(PaintInfo& paintInfo, int tx, int ty)
1073 localRepaintRect.move(-tx, -ty);
1134 paintCell(cell, paintInfo, tx, ty);
1161 paintCell(cells[i], paintInfo, tx, ty);
1258 bool RenderTableSection::nodeAtPoint(const HitTestRequest& request, HitTestResult& result, int xPos, int yPos, int tx, int ty, HitTestAction action)
1267 ty += y();
1269 if (hasOverflowClip() && !overflowClipRect(tx, ty).intersects(result.rectForPoint(xPos, yPos)))
1279 IntPoint childPoint = flipForWritingMode(toRenderBox(child), IntPoint(tx, ty), ParentToChildFlippingAdjustment);
1289 IntPoint location = IntPoint(xPos - tx, yPos - ty);
1323 IntPoint cellPoint = flipForWritingMode(cell, IntPoint(tx, ty), ParentToChildFlippingAdjustment);