Lines Matching full:width
182 // Width in pixels of the visible portion of the box, excluding the ellipsis.
200 int widthOfVisibleText = toRenderText(renderer())->width(m_start, offset, textPos(), m_firstLine);
338 int rightOverflow = parent()->rightVisualOverflow() - (parent()->x() + parent()->width());
340 int w = width() + leftOverflow + rightOverflow;
363 int widthOfVisibleText = toRenderText(renderer())->width(m_start, m_truncation, textPos(), m_firstLine);
498 paintTextWithShadows(context, font, textRun, 0, length, length, textOrigin, m_x + tx, m_y + ty, width(), height(), textShadow, textStrokeWidth > 0);
500 paintTextWithShadows(context, font, textRun, ePos, sPos, length, textOrigin, m_x + tx, m_y + ty, width(), height(), textShadow, textStrokeWidth > 0);
512 paintTextWithShadows(context, font, textRun, sPos, ePos, length, textOrigin, m_x + tx, m_y + ty, width(), height(), selectionShadow, selectionStrokeWidth > 0);
639 FloatRect rootRect(tx + r->x(), ty + selectionTop(), r->width(), selectionHeight());
640 FloatRect textRect(tx + x(), rootRect.y(), width(), rootRect.height());
655 int width = m_width;
657 width = toRenderText(renderer())->width(m_start, m_truncation, textPos(), m_firstLine);
659 tx += (m_width - width);
678 IntRect clipRect(tx, ty, width, baseline + 2);
680 IntRect shadowRect(tx, ty, width, baseline + 2);
712 context->drawLineForText(IntPoint(tx, ty + baseline + 1), width, isPrinting);
717 context->drawLineForText(IntPoint(tx, ty), width, isPrinting);
722 context->drawLineForText(IntPoint(tx, ty + 2 * baseline / 3), width, isPrinting);
742 int width = m_width; // how much line to draw
760 // Calculate start & width
767 width = markerRect.width();
795 pt->drawLineForMisspellingOrBadGrammar(IntPoint(tx + m_x + start, ty + m_y + underlineOffset), width, grammar);
915 int width = m_width; // how much line to draw
922 start = toRenderText(renderer())->width(m_start, paintStart - m_start, textPos(), m_firstLine);
933 width = toRenderText(renderer())->width(paintStart, paintEnd - paintStart, textPos() + start, m_firstLine);
947 width -= 2;
951 ctx->drawLineForText(IntPoint(tx + start, ty + height() - lineThickness), width, textRenderer()->document()->printing());