Home
last modified time | relevance | path

Searched refs:textX (Results 1 – 3 of 3) sorted by relevance

/external/webkit/WebCore/rendering/
DRenderFileUploadControl.cpp207 int textX; in paintObject() local
209 textX = contentLeft + buttonAndIconWidth; in paintObject()
211textX = contentLeft + contentWidth() - buttonAndIconWidth - style()->font().width(textRun); in paintObject()
221 paintInfo.context->drawBidiText(style()->font(), textRun, IntPoint(textX, textY)); in paintObject()
/external/webkit/WebCore/platform/chromium/
DPopupMenuChromium.cpp835 int textX = 0; in paintRow() local
840 textX = max(0, m_popupClient->clientPaddingLeft() - m_popupClient->clientInsetLeft()); in paintRow()
841 maxWidth = rowRect.width() - textX; in paintRow()
860 textX += maxWidth - itemFont.width(textRun); in paintRow()
863 gc->drawBidiText(itemFont, textRun, IntPoint(textX, textY)); in paintRow()
/external/webkit/WebCore/platform/win/
DPopupMenuWin.cpp644 int textX = max(0, client()->clientPaddingLeft() - client()->clientInsetLeft()); in paint() local
646 textX += itemStyle.textIndent().calcMinValue(itemRect.width()); in paint()
648 context.drawBidiText(itemFont, textRun, IntPoint(textX, textY)); in paint()