Searched refs:itemFont (Results 1 - 3 of 3) sorted by relevance

/external/webkit/WebCore/rendering/
H A DRenderListBox.cpp106 Font itemFont = style()->font(); local
111 FontDescription d = itemFont.fontDescription();
113 itemFont = Font(d, itemFont.letterSpacing(), itemFont.wordSpacing());
114 itemFont.update(document()->styleSelector()->fontSelector());
118 float textWidth = itemFont.floatWidth(TextRun(text.impl(), 0, 0, 0, false, false, false, false));
327 Font itemFont = style()->font(); local
329 FontDescription d = itemFont.fontDescription();
331 itemFont
[all...]
/external/webkit/WebCore/platform/win/
H A DPopupMenuWin.cpp312 Font itemFont = client()->menuStyle().font(); local
314 FontDescription d = itemFont.fontDescription();
316 itemFont = Font(d, itemFont.letterSpacing(), itemFont.wordSpacing());
317 itemFont.update(m_popupClient->fontSelector());
320 popupWidth = max(popupWidth, itemFont.width(TextRun(text.characters(), text.length())));
634 Font itemFont = client()->menuStyle().font(); local
636 FontDescription d = itemFont.fontDescription();
638 itemFont
[all...]
/external/webkit/WebCore/platform/chromium/
H A DPopupMenuChromium.cpp831 Font itemFont = getRowFont(rowIndex); local
846 itemText = StringTruncator::rightTruncate(itemText, maxWidth, itemFont);
860 textX += maxWidth - itemFont.width(textRun);
862 int textY = rowRect.y() + itemFont.ascent() + (rowRect.height() - itemFont.height()) / 2;
863 gc->drawBidiText(itemFont, textRun, IntPoint(textX, textY));
868 Font itemFont = m_popupClient->menuStyle().font(); local
871 FontDescription d = itemFont.fontDescription();
873 Font font(d, itemFont.letterSpacing(), itemFont
1120 Font itemFont = getRowFont(i); local
[all...]

Completed in 49 milliseconds