OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:langFontLink
(Results
1 - 3
of
3
) sorted by null
/external/webkit/Source/WebCore/platform/wx/wxcode/win/
fontprops.cpp
80
static IMLangFontLink2*
langFontLink
;
81
if (!
langFontLink
) {
82
if (multiLanguage->QueryInterface(&
langFontLink
) != S_OK)
89
langFontLink
->CodePageToCodePages(CP_ACP, &acpCodePages);
92
langFontLink
->GetFontCodePages(dc, (HFONT)font, &fontCodePages);
98
langFontLink
->GetStrCodePages(characters, length, acpCodePages, &actualCodePages, &numCharactersProcessed);
/external/webkit/Source/WebCore/platform/graphics/wince/
FontCacheWinCE.cpp
49
static IMLangFontLink2*
langFontLink
= 0;
51
static IMLangFontLink*
langFontLink
= 0;
68
if (!
langFontLink
) {
70
mli->QueryInterface(&
langFontLink
);
73
return
langFontLink
;
77
static bool currentFontContainsCharacter(IMLangFontLink2*
langFontLink
, HDC hdc, UChar character)
80
if (S_OK !=
langFontLink
->GetFontUnicodeRanges(hdc, &unicodeRanges, 0))
86
if (S_OK !=
langFontLink
->GetFontUnicodeRanges(hdc, &unicodeRanges, glyphsetBuffer.data()))
98
static bool currentFontContainsCharacter(IMLangFontLink*
langFontLink
, HDC hdc, HFONT hfont, UChar character, const wchar_t* faceName)
101
HRESULT result =
langFontLink
->GetFontCodePages(hdc, hfont, &fontCodePages)
[
all
...]
/external/webkit/Source/WebCore/platform/graphics/win/
FontCacheWin.cpp
64
static IMLangFontLink2*
langFontLink
;
65
if (!
langFontLink
) {
66
if (multiLanguage->QueryInterface(&
langFontLink
) != S_OK)
70
return
langFontLink
;
138
IMLangFontLink2*
langFontLink
= fontCache()->getFontLinkInterface();
139
if (!
langFontLink
)
145
langFontLink
->CodePageToCodePages(defaultCodePage, &defaultCodePageMask);
152
langFontLink
->CodePageToCodePages(CJKCodePages[i], &codePageMask);
175
static HFONT createMLangFont(IMLangFontLink2*
langFontLink
, HDC hdc, DWORD codePageMask, UChar character = 0)
179
if (SUCCEEDED(
langFontLink
->MapFont(hdc, codePageMask, character, &MLangFont)) && MLangFont)
[
all
...]
Completed in 49 milliseconds