HomeSort by relevance Sort by last modified time
    Searched refs:xHeight (Results 1 - 25 of 35) sorted by null

1 2

  /external/webkit/Source/WebCore/platform/graphics/
FontMetrics.h 73 float xHeight() const { return m_xHeight; }
74 void setXHeight(float xHeight) { m_xHeight = xHeight; }
SimpleFontData.cpp 84 float xHeight = svgFontFaceElement->xHeight() * scale;
90 if (!xHeight) {
94 xHeight = letterXGlyphs.isEmpty() ? 2 * ascent / 3 : letterXGlyphs.first().horizontalAdvanceX * scale;
102 m_fontMetrics.setXHeight(xHeight);
106 m_spaceWidth = spaceGlyphs.isEmpty() ? xHeight : spaceGlyphs.first().horizontalAdvanceX * scale;
141 m_avgCharWidth = m_fontMetrics.xHeight();
  /external/webkit/Source/WebCore/svg/
SVGFontFaceElement.h 39 int xHeight() const;
SVGLength.cpp 441 float xHeight = ceilf(style->fontMetrics().xHeight());
442 if (!xHeight) {
447 return value / xHeight;
460 return value * ceilf(style->fontMetrics().xHeight());
SVGFontFaceElement.cpp 133 int SVGFontFaceElement::xHeight() const
  /external/webkit/Source/WebKit/chromium/public/
WebFont.h 59 virtual float xHeight() const = 0;
  /external/webkit/Source/WebKit/chromium/src/
WebFontImpl.h 51 virtual float xHeight() const;
WebFontImpl.cpp 85 float WebFontImpl::xHeight() const
87 return m_font.fontMetrics().xHeight();
  /external/webkit/Source/WebCore/platform/graphics/chromium/
SimpleFontDataLinux.cpp 103 float xHeight;
105 xHeight = metrics.fXHeight;
108 xHeight = ascent * 0.56f;
113 m_fontMetrics.setXHeight(xHeight);
135 m_avgCharWidth = xHeight;
SimpleFontDataChromiumWin.cpp 84 float xHeight = ascent * 0.56f; // Best guess for xHeight for non-Truetype fonts.
88 // This is a TrueType font. We might be able to get an accurate xHeight.
93 xHeight = static_cast<float>(glyphMetrics.gmBlackBoxY);
99 m_fontMetrics.setXHeight(xHeight);
  /external/webkit/Source/WebCore/platform/graphics/win/
SimpleFontDataCairoWin.cpp 67 float xHeight = ascent * 0.56f; // Best guess for xHeight for non-Truetype fonts.
78 // This is a TrueType font. We might be able to get an accurate xHeight
83 xHeight = gm.gmptGlyphOrigin.y * metricsMultiplier;
86 m_fontMetrics.setXHeight(xHeight);
SimpleFontDataWin.cpp 88 float xHeight = ascent * 0.56f; // Best guess for xHeight if no x glyph is present.
94 xHeight = gm.gmptGlyphOrigin.y;
96 m_fontMetrics.setXHeight(xHeight);
  /external/webkit/Source/WebCore/platform/wx/wxcode/mac/carbon/
fontprops.mm 80 wxCoord xHeight = 0;
81 GetTextExtent(*font, wxT("x"), NULL, &xHeight, NULL, NULL);
82 m_xHeight = lroundf(xHeight);
  /external/webkit/Source/WebCore/platform/graphics/qt/
SimpleFontDataQt.cpp 72 m_fontMetrics.setXHeight(fm.xHeight());
  /external/webkit/Source/WebCore/platform/graphics/mac/
SimpleFontDataMac.mm 277 float xHeight;
285 xHeight = -CGRectGetMinY(platformBoundsForGlyph(xGlyph));
287 xHeight = scaleEmToUnits(CGFontGetXHeight(m_platformData.cgFont()), unitsPerEm) * pointSize;
289 xHeight = verticalRightOrientationFontData()->fontMetrics().xHeight();
295 m_fontMetrics.setXHeight(xHeight);
  /external/freetype/include/freetype/
tttables.h 446 FT_UShort xHeight;
    [all...]
  /external/webkit/Source/WebCore/rendering/mathml/
RenderMathMLFraction.cpp 179 int shift = int(ceil((refStyle->fontMetrics().xHeight() + 1) / 2));
  /external/webkit/Source/WebCore/rendering/svg/
SVGTextLayoutEngineBaseline.cpp 135 return fontMetrics.xHeight() / 2;
  /hardware/ti/omap4xxx/camera/OMXCameraAdapter/
OMXZoom.cpp 115 zoomControl.xHeight = ZOOM_STEPS[index];
  /frameworks/native/include/media/openmax/
OMX_IVCommon.h 192 OMX_S32 xHeight; /**< Fixed point value stored as Q16 */
    [all...]
  /hardware/qcom/media/mm-core/inc/
OMX_IVCommon.h 163 OMX_S32 xHeight; /**< Fixed point value stored as Q16 */
  /hardware/qcom/media/mm-core/omxcore/inc/
OMX_IVCommon.h 163 OMX_S32 xHeight; /**< Fixed point value stored as Q16 */
  /hardware/samsung_slsi/exynos5/exynos_omx/openmax/exynos_omx/include/khronos/
OMX_IVCommon.h 163 OMX_S32 xHeight; /**< Fixed point value stored as Q16 */
  /hardware/ti/omap3/omx/system/src/openmax_il/omx_core/inc/
OMX_IVCommon.h 163 OMX_S32 xHeight; /**< Fixed point value stored as Q16 */
    [all...]
  /hardware/ti/omap4xxx/domx/omx_core/inc/
OMX_IVCommon.h 163 OMX_S32 xHeight; /**< Fixed point value stored as Q16 */

Completed in 2652 milliseconds

1 2