OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:xHeight
(Results
1 - 22
of
22
) sorted by null
/external/chromium_org/third_party/WebKit/Source/web/
WebFontImpl.h
51
virtual float
xHeight
() const OVERRIDE;
WebFontImpl.cpp
83
float WebFontImpl::
xHeight
() const
85
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/platform/fonts/
FontMetrics.h
79
float
xHeight
() const { return m_xHeight; }
80
void setXHeight(float
xHeight
)
82
m_xHeight =
xHeight
;
SimpleFontData.cpp
94
m_avgCharWidth = m_fontMetrics.
xHeight
();
/external/chromium_org/third_party/WebKit/Source/core/svg/
SVGFontFaceElement.h
41
int
xHeight
() const;
SVGLengthContext.cpp
270
float
xHeight
= ceilf(style->fontMetrics().
xHeight
());
271
if (!
xHeight
) {
276
return value /
xHeight
;
289
return value * ceilf(style->fontMetrics().
xHeight
());
SVGFontData.cpp
82
float
xHeight
= svgFontFaceElement->
xHeight
() * scale;
89
if (!
xHeight
&& glyphPageZero) {
92
xHeight
= letterXGlyph ? fontData->widthForGlyph(letterXGlyph) : 2 * ascent / 3;
101
fontMetrics.setXHeight(
xHeight
);
SVGFontFaceElement.cpp
130
int SVGFontFaceElement::
xHeight
() const
/external/chromium_org/third_party/WebKit/Source/platform/fonts/skia/
SimpleFontDataSkia.cpp
120
float
xHeight
;
122
xHeight
= metrics.fXHeight;
123
m_fontMetrics.setXHeight(
xHeight
);
125
xHeight
= ascent * 0.56; // Best guess from Windows font metrics.
126
m_fontMetrics.setXHeight(
xHeight
);
164
m_avgCharWidth =
xHeight
;
/external/chromium_org/third_party/WebKit/Source/platform/fonts/mac/
SimpleFontDataMac.mm
247
float
xHeight
;
255
xHeight
= -CGRectGetMinY(platformBoundsForGlyph(xGlyph));
257
xHeight
= scaleEmToUnits(CGFontGetXHeight(m_platformData.cgFont()), unitsPerEm) * pointSize;
259
xHeight
= verticalRightOrientationFontData()->fontMetrics().
xHeight
();
265
m_fontMetrics.setXHeight(
xHeight
);
/external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
SVGTextLayoutEngineBaseline.cpp
132
return fontMetrics.
xHeight
() / 2;
/external/chromium_org/third_party/freetype/include/freetype/
tttables.h
446
FT_UShort
xHeight
;
[
all
...]
/external/freetype/include/
tttables.h
450
FT_UShort
xHeight
;
[
all
...]
/external/chromium_org/third_party/WebKit/Source/platform/fonts/opentype/
OpenTypeUtilities.cpp
100
BigEndianUShort
xHeight
;
/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
...]
/external/freetype/src/sfnt/
ttload.c
[
all
...]
/external/chromium_org/third_party/WebKit/Source/core/css/
CSSPrimitiveValue.cpp
622
factor = style.fontMetrics().
xHeight
();
[
all
...]
/external/chromium_org/third_party/WebKit/Source/core/rendering/
RootInlineBox.cpp
[
all
...]
/external/chromium_org/third_party/skia/src/ports/
SkScalerContext_win_dw.cpp
522
metrics->fXHeight = fTextSizeRender * SkIntToScalar(dwfm.
xHeight
) / upem;
/cts/suite/cts/deviceTests/browserbench/assets/octane/
pdfjs.js
[
all
...]
Completed in 1326 milliseconds