Searched defs:xHeight (Results 1 - 10 of 10) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/platform/graphics/chromium/
H A DSimpleFontDataChromiumWin.cpp79 float xHeight = ascent * 0.56f; // Best guess for xHeight for non-Truetype fonts. local
85 // This is a TrueType font. We might be able to get an accurate xHeight.
90 xHeight = static_cast<float>(glyphMetrics.gmBlackBoxY);
96 m_fontMetrics.setXHeight(xHeight);
/external/chromium_org/third_party/WebKit/Source/web/
H A DWebFontImpl.cpp86 float WebFontImpl::xHeight() const function in class:WebKit::WebFontImpl
88 return m_font.fontMetrics().xHeight();
/external/chromium_org/third_party/WebKit/Source/core/svg/
H A DSVGLengthContext.cpp261 float xHeight = ceilf(style->fontMetrics().xHeight()); local
262 if (!xHeight) {
267 return value / xHeight;
280 return value * ceilf(style->fontMetrics().xHeight());
H A DSVGFontData.cpp76 float xHeight = svgFontFaceElement->xHeight() * scale; local
83 if (!xHeight && glyphPageZero) {
86 xHeight = letterXGlyph ? fontData->widthForGlyph(letterXGlyph) : 2 * ascent / 3;
95 fontMetrics.setXHeight(xHeight);
H A DSVGFontFaceElement.cpp134 int SVGFontFaceElement::xHeight() const function in class:WebCore::SVGFontFaceElement
/external/chromium_org/third_party/WebKit/Source/core/platform/graphics/
H A DFontMetrics.h77 float xHeight() const { return m_xHeight; } function in class:WebCore::FontMetrics
78 void setXHeight(float xHeight) argument
80 m_xHeight = xHeight;
/external/chromium_org/third_party/WebKit/Source/core/platform/graphics/skia/
H A DSimpleFontDataSkia.cpp110 float xHeight; local
112 xHeight = metrics.fXHeight;
113 m_fontMetrics.setXHeight(xHeight);
115 xHeight = ascent * 0.56; // Best guess from Windows font metrics.
116 m_fontMetrics.setXHeight(xHeight);
148 m_avgCharWidth = xHeight;
/external/chromium_org/third_party/WebKit/Source/core/platform/graphics/opentype/
H A DOpenTypeUtilities.cpp118 BigEndianUShort xHeight; member in struct:WebCore::OS2Table
/external/chromium_org/third_party/freetype/include/freetype/
H A Dtttables.h446 FT_UShort xHeight; member in struct:TT_PCLT_
/external/freetype/include/freetype/
H A Dtttables.h446 FT_UShort xHeight; member in struct:TT_PCLT_

Completed in 211 milliseconds