Home
last modified time | relevance | path

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

/external/webkit/Source/WebKit2/WebProcess/WebCoreSupport/win/
DWebPopupMenuWin.cpp134 int textX = std::max(0, data.m_clientPaddingLeft - data.m_clientInsetLeft); in setUpPlatformData() local
136 textX += itemStyle.textIndent().calcMinValue(itemRect.width()); in setUpPlatformData()
139 notSelectedBackingStoreContext->drawBidiText(itemFont, textRun, IntPoint(textX, textY)); in setUpPlatformData()
140 selectedBackingStoreContext->drawBidiText(itemFont, textRun, IntPoint(textX, textY)); in setUpPlatformData()
/external/webkit/Source/WebCore/rendering/
DRenderFileUploadControl.cpp238 int textX; in paintObject() local
240 textX = contentLeft + buttonAndIconWidth; in paintObject()
242textX = contentLeft + contentWidth() - buttonAndIconWidth - style()->font().width(textRun); in paintObject()
252 paintInfo.context->drawBidiText(style()->font(), textRun, IntPoint(textX, textY)); in paintObject()
/external/webkit/Source/WebCore/platform/chromium/
DPopupMenuChromium.cpp933 int textX = 0; in paintRow() local
938 textX = max(0, m_popupClient->clientPaddingLeft() - m_popupClient->clientInsetLeft()); in paintRow()
939 maxWidth = rowRect.width() - textX; in paintRow()
967 textX += maxWidth - itemFont.width(textRun); in paintRow()
971 gc->drawBidiText(itemFont, textRun, IntPoint(textX, textY)); in paintRow()
993 textX = max(0, m_popupClient->clientPaddingLeft() - m_popupClient->clientInsetLeft()); in paintRow()
995 textX = remainingWidth - itemFont.width(labelTextRun); in paintRow()
998 gc->drawBidiText(itemFont, labelTextRun, IntPoint(textX, textY)); in paintRow()
/external/webkit/Source/WebCore/platform/win/
DPopupMenuWin.cpp648 int textX = max(0, client()->clientPaddingLeft() - client()->clientInsetLeft()); in paint() local
650 textX += itemStyle.textIndent().calcMinValue(itemRect.width()); in paint()
652 context.drawBidiText(itemFont, textRun, IntPoint(textX, textY)); in paint()