Home
last modified time | relevance | path

Searched refs:langFontLink (Results 1 – 6 of 6) sorted by relevance

/external/webkit/WebCore/platform/graphics/wince/
DFontCacheWince.cpp49 static IMLangFontLink2* langFontLink = 0; variable
51 static IMLangFontLink* langFontLink = 0; variable
68 if (!langFontLink) { in getFontLinkInterface()
70 mli->QueryInterface(&langFontLink); in getFontLinkInterface()
73 return langFontLink; in getFontLinkInterface()
77 static bool currentFontContainsCharacter(IMLangFontLink2* langFontLink, HDC hdc, UChar character) in currentFontContainsCharacter() argument
80 if (S_OK != langFontLink->GetFontUnicodeRanges(hdc, &unicodeRanges, 0)) in currentFontContainsCharacter()
86 if (S_OK != langFontLink->GetFontUnicodeRanges(hdc, &unicodeRanges, glyphsetBuffer.data())) in currentFontContainsCharacter()
98 static bool currentFontContainsCharacter(IMLangFontLink* langFontLink, HDC hdc, HFONT hfont, UChar … in currentFontContainsCharacter() argument
101 HRESULT result = langFontLink->GetFontCodePages(hdc, hfont, &fontCodePages); in currentFontContainsCharacter()
[all …]
DSimpleFontDataWince.cpp94 IMLangFontLink2* langFontLink = fontCache()->getFontLinkInterface(); in containsCharacters() local
96 IMLangFontLink* langFontLink = fontCache()->getFontLinkInterface(); in containsCharacters() local
98 if (!langFontLink) in containsCharacters()
106 langFontLink->CodePageToCodePages(CP_ACP, &acpCodePages); in containsCharacters()
111langFontLink->GetStrCodePages(characters, length, acpCodePages, &actualCodePages, &numCharactersPr… in containsCharacters()
DGlyphPageTreeNodeWince.cpp55 } else if (IMLangFontLink2* langFontLink = fontCache()->getFontLinkInterface()) { in fill() local
57 } else if (IMLangFontLink* langFontLink = fontCache()->getFontLinkInterface()) { in fill()
61 langFontLink->GetCharCodePages(buffer[i], &actualCodePages); in fill()
DFontPlatformData.cpp56 if (IMLangFontLink2* langFontLink = fontCache()->getFontLinkInterface()) in codePages() local
57 langFontLink->CodePageToCodePages(m_codePage, &m_codePages); in codePages()
59 if (IMLangFontLink* langFontLink = fontCache()->getFontLinkInterface()) in codePages()
60 langFontLink->CodePageToCodePages(m_codePage, &m_codePages); in codePages()
270 if (IMLangFontLink2* langFontLink = fontCache()->getFontLinkInterface()) { in create() local
272 if (IMLangFontLink* langFontLink = fontCache()->getFontLinkInterface()) { in create()
274 langFontLink->GetFontCodePages(g_screenDC, fontData->m_hfont.get(), &fontData->m_codePages); in create()
/external/webkit/WebCore/platform/graphics/win/
DFontCacheWin.cpp63 static IMLangFontLink2* langFontLink; in getFontLinkInterface() local
64 if (!langFontLink) { in getFontLinkInterface()
65 if (multiLanguage->QueryInterface(&langFontLink) != S_OK) in getFontLinkInterface()
69 return langFontLink; in getFontLinkInterface()
137 IMLangFontLink2* langFontLink = fontCache()->getFontLinkInterface(); in getCJKCodePageMasks() local
138 if (!langFontLink) in getCJKCodePageMasks()
144 langFontLink->CodePageToCodePages(defaultCodePage, &defaultCodePageMask); in getCJKCodePageMasks()
151 langFontLink->CodePageToCodePages(CJKCodePages[i], &codePageMask); in getCJKCodePageMasks()
174 static HFONT createMLangFont(IMLangFontLink2* langFontLink, HDC hdc, DWORD codePageMask, UChar char… in createMLangFont() argument
178 if (SUCCEEDED(langFontLink->MapFont(hdc, codePageMask, character, &MLangFont)) && MLangFont) { in createMLangFont()
[all …]
DSimpleFontDataWin.cpp133 IMLangFontLink2* langFontLink = fontCache()->getFontLinkInterface(); in containsCharacters() local
134 if (!langFontLink) in containsCharacters()
140 langFontLink->CodePageToCodePages(CP_ACP, &acpCodePages); in containsCharacters()
143 langFontLink->GetFontCodePages(dc, m_platformData.hfont(), &fontCodePages); in containsCharacters()
149langFontLink->GetStrCodePages(characters, length, acpCodePages, &actualCodePages, &numCharactersPr… in containsCharacters()