Home | History | Annotate | Download | only in rendering

Lines Matching refs:tx

120 void RenderFieldset::paintBoxDecorations(PaintInfo& paintInfo, int tx, int ty)
129 return RenderBlock::paintBoxDecorations(paintInfo, tx, ty);
136 paintBoxShadow(paintInfo.context, tx, ty, w, h, style(), Normal);
138 paintFillLayers(paintInfo, style()->backgroundColor(), style()->backgroundLayers(), tx, ty, w, h);
139 paintBoxShadow(paintInfo.context, tx, ty, w, h, style(), Inset);
146 return paintBorderMinusLegend(paintInfo.context, tx, ty, w, h, style(), legend->x(), legend->width(), legendBottom);
156 graphicsContext->clipOut(IntRect(tx + legend->x(), clipTop,
158 paintBorder(paintInfo.context, tx, ty, w, h, style(), true, true);
163 void RenderFieldset::paintMask(PaintInfo& paintInfo, int tx, int ty)
172 return RenderBlock::paintMask(paintInfo, tx, ty);
178 paintMaskImages(paintInfo, tx, ty, w, h);
181 void RenderFieldset::paintBorderMinusLegend(GraphicsContext* graphicsContext, int tx, int ty, int w, int h,
202 drawLineForBoxSide(graphicsContext, tx, ty, tx + min(lx, w), ty + style->borderTopWidth(), BSTop, tc, style->color(), ts,
206 drawLineForBoxSide(graphicsContext, tx + max(0, lx + lw), ty, tx + w, ty + style->borderTopWidth(), BSTop, tc, style->color(), ts,
212 drawLineForBoxSide(graphicsContext, tx, ty + h - style->borderBottomWidth(), tx + w, ty + h, BSBottom, bc, style->color(), bs,
236 drawLineForBoxSide(graphicsContext, tx, startY, tx + borderLeftWidth, ty + h, BSLeft, lc, style->color(), ls,
260 drawLineForBoxSide(graphicsContext, tx + w - borderRightWidth, startY, tx + w, ty + h, BSRight, rc, style->color(), rs,