OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:winfont
(Results
1 - 4
of
4
) sorted by null
/external/webkit/WebCore/platform/graphics/wince/
FontPlatformData.cpp
243
LOGFONT&
winFont
= fontData->m_font;
245
winFont
.lfHeight = -72;
246
winFont
.lfWidth = 0;
247
winFont
.lfEscapement = 0;
248
winFont
.lfOrientation = 0;
249
winFont
.lfUnderline = false;
250
winFont
.lfStrikeOut = false;
251
winFont
.lfCharSet = DEFAULT_CHARSET;
252
winFont
.lfOutPrecision = OUT_DEFAULT_PRECIS;
253
winFont
.lfQuality = CLEARTYPE_QUALITY; //DEFAULT_QUALITY
[
all
...]
/external/webkit/WebCore/platform/graphics/chromium/
FontCacheChromiumWin.cpp
237
static HFONT createFontIndirectAndGetWinName(const String& family, LOGFONT*
winfont
, String* winName)
240
memcpy(
winfont
->lfFaceName, family.characters(), len * sizeof(WORD));
241
winfont
->lfFaceName[len] = '\0';
243
HFONT hfont = CreateFontIndirect(
winfont
);
450
static void FillLogFont(const FontDescription& fontDescription, LOGFONT*
winfont
)
455
winfont
->lfHeight = -fontDescription.computedPixelSize();
456
winfont
->lfWidth = 0;
457
winfont
->lfEscapement = 0;
458
winfont
->lfOrientation = 0;
459
winfont
->lfUnderline = false
520
LOGFONT
winfont
= {0};
local
[
all
...]
SimpleFontDataChromiumWin.cpp
109
LOGFONT
winFont
;
110
GetObject(m_platformData.hfont(), sizeof(LOGFONT), &
winFont
);
114
winFont
.lfHeight = -lroundf(smallCapsSize);
115
HFONT hfont = CreateFontIndirect(&
winFont
);
/external/webkit/WebCore/platform/graphics/win/
SimpleFontDataWin.cpp
114
LOGFONT
winfont
;
local
115
GetObject(m_platformData.hfont(), sizeof(LOGFONT), &
winfont
);
116
winfont
.lfHeight = -lroundf(smallCapsHeight * (m_platformData.useGDI() ? 1 : 32));
117
HFONT hfont = CreateFontIndirect(&
winfont
);
Completed in 46 milliseconds