OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:m_avgCharWidth
(Results
1 - 5
of
5
) sorted by null
/external/chromium_org/third_party/WebKit/Source/platform/fonts/
SimpleFontData.cpp
44
,
m_avgCharWidth
(-1)
87
if (
m_avgCharWidth
<= 0.f && glyphPageZero) {
91
m_avgCharWidth
= widthForGlyph(digitZeroGlyph);
95
if (
m_avgCharWidth
<= 0.f)
96
m_avgCharWidth
= m_fontMetrics.xHeight();
99
m_maxCharWidth = max(
m_avgCharWidth
, m_fontMetrics.floatAscent());
SimpleFontData.h
114
float avgCharWidth() const { return
m_avgCharWidth
; }
115
void setAvgCharWidth(float avgCharWidth) {
m_avgCharWidth
= avgCharWidth; }
196
float
m_avgCharWidth
;
/external/chromium_org/third_party/WebKit/Source/platform/fonts/skia/
SimpleFontDataSkia.cpp
57
m_avgCharWidth
= 0;
136
//
m_avgCharWidth
in order for text entry widgets to be sized correctly.
147
m_avgCharWidth
= SkScalarRound(metrics.fAvgCharWidth);
149
m_avgCharWidth
= xHeight;
163
m_avgCharWidth
= widthForGlyph(xGlyph);
/external/chromium_org/third_party/WebKit/Source/platform/fonts/win/
SimpleFontDataWin.cpp
53
m_avgCharWidth
= 0;
72
m_avgCharWidth
= textMetric.tmAveCharWidth;
/external/chromium_org/third_party/WebKit/Source/platform/fonts/mac/
SimpleFontDataMac.mm
265
m_avgCharWidth
= 0;
272
m_avgCharWidth
= scaleEmToUnits(os2AvgCharWidth, m_fontMetrics.unitsPerEm()) * m_platformData.m_size;
Completed in 1768 milliseconds