OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:xHeight
(Results
1 - 25
of
37
) sorted by null
1
2
/external/chromium_org/third_party/WebKit/Source/platform/fonts/
FontMetrics.h
77
float
xHeight
() const { return m_xHeight; }
78
void setXHeight(float
xHeight
)
80
m_xHeight =
xHeight
;
SimpleFontData.cpp
96
m_avgCharWidth = m_fontMetrics.
xHeight
();
/external/chromium_org/third_party/WebKit/Source/web/
WebFontImpl.h
51
virtual float
xHeight
() const;
WebFontImpl.cpp
85
float WebFontImpl::
xHeight
() const
87
return m_font.fontMetrics().
xHeight
();
/external/chromium_org/third_party/WebKit/public/web/
WebFont.h
59
virtual float
xHeight
() const = 0;
/external/chromium_org/third_party/WebKit/Source/core/svg/
SVGFontFaceElement.h
39
int
xHeight
() const;
SVGLengthContext.cpp
258
float
xHeight
= ceilf(style->fontMetrics().
xHeight
());
259
if (!
xHeight
) {
264
return value /
xHeight
;
277
return value * ceilf(style->fontMetrics().
xHeight
());
SVGFontData.cpp
78
float
xHeight
= svgFontFaceElement->
xHeight
() * scale;
85
if (!
xHeight
&& glyphPageZero) {
88
xHeight
= letterXGlyph ? fontData->widthForGlyph(letterXGlyph) : 2 * ascent / 3;
97
fontMetrics.setXHeight(
xHeight
);
SVGFontFaceElement.cpp
132
int SVGFontFaceElement::
xHeight
() const
/external/chromium_org/third_party/WebKit/Source/platform/fonts/skia/
SimpleFontDataSkia.cpp
111
float
xHeight
;
113
xHeight
= metrics.fXHeight;
114
m_fontMetrics.setXHeight(
xHeight
);
116
xHeight
= ascent * 0.56; // Best guess from Windows font metrics.
117
m_fontMetrics.setXHeight(
xHeight
);
149
m_avgCharWidth =
xHeight
;
/external/chromium_org/third_party/WebKit/Source/platform/fonts/win/
SimpleFontDataWin.cpp
79
float
xHeight
= ascent * 0.56f; // Best guess for
xHeight
for non-Truetype fonts.
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/platform/fonts/mac/
SimpleFontDataMac.mm
237
float
xHeight
;
245
xHeight
= -CGRectGetMinY(platformBoundsForGlyph(xGlyph));
247
xHeight
= scaleEmToUnits(CGFontGetXHeight(m_platformData.cgFont()), unitsPerEm) * pointSize;
249
xHeight
= verticalRightOrientationFontData()->fontMetrics().
xHeight
();
255
m_fontMetrics.setXHeight(
xHeight
);
/external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
SVGTextLayoutEngineBaseline.cpp
136
return fontMetrics.
xHeight
() / 2;
/external/chromium_org/third_party/freetype/include/freetype/
tttables.h
446
FT_UShort
xHeight
;
[
all
...]
/external/freetype/include/freetype/
tttables.h
446
FT_UShort
xHeight
;
[
all
...]
/hardware/ti/omap4xxx/camera/OMXCameraAdapter/
OMXZoom.cpp
115
zoomControl.
xHeight
= ZOOM_STEPS[index];
/external/chromium_org/third_party/WebKit/Source/platform/fonts/opentype/
OpenTypeUtilities.cpp
100
BigEndianUShort
xHeight
;
/frameworks/native/include/media/openmax/
OMX_IVCommon.h
193
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 */
/external/chromium_org/content/child/
browser_font_resource_trusted.cc
291
metrics->x_height = static_cast<int32_t>(font_->
xHeight
());
/external/chromium_org/third_party/freetype/src/sfnt/
ttload.c
[
all
...]
Completed in 522 milliseconds
1
2