HomeSort by relevance Sort by last modified time
    Searched refs:langFontLink (Results 1 - 7 of 7) sorted by null

  /external/webkit/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...]
GlyphPageTreeNodeWince.cpp 55 } else if (IMLangFontLink2* langFontLink = fontCache()->getFontLinkInterface()) {
57 } else if (IMLangFontLink* langFontLink = fontCache()->getFontLinkInterface()) {
61 langFontLink->GetCharCodePages(buffer[i], &actualCodePages);
SimpleFontDataWince.cpp 94 IMLangFontLink2* langFontLink = fontCache()->getFontLinkInterface();
96 IMLangFontLink* langFontLink = fontCache()->getFontLinkInterface();
98 if (!langFontLink)
106 langFontLink->CodePageToCodePages(CP_ACP, &acpCodePages);
111 langFontLink->GetStrCodePages(characters, length, acpCodePages, &actualCodePages, &numCharactersProcessed);
FontPlatformData.cpp 56 if (IMLangFontLink2* langFontLink = fontCache()->getFontLinkInterface())
57 langFontLink->CodePageToCodePages(m_codePage, &m_codePages);
59 if (IMLangFontLink* langFontLink = fontCache()->getFontLinkInterface())
60 langFontLink->CodePageToCodePages(m_codePage, &m_codePages);
270 if (IMLangFontLink2* langFontLink = fontCache()->getFontLinkInterface()) {
272 if (IMLangFontLink* langFontLink = fontCache()->getFontLinkInterface()) {
274 langFontLink->GetFontCodePages(g_screenDC, fontData->m_hfont.get(), &fontData->m_codePages);
  /external/webkit/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, static_cast<HFONT>(font.GetHFONT()), &fontCodePages);
98 langFontLink->GetStrCodePages(characters, length, acpCodePages, &actualCodePages, &numCharactersProcessed);
  /external/webkit/WebCore/platform/graphics/win/
SimpleFontDataWin.cpp 133 IMLangFontLink2* langFontLink = fontCache()->getFontLinkInterface();
134 if (!langFontLink)
140 langFontLink->CodePageToCodePages(CP_ACP, &acpCodePages);
143 langFontLink->GetFontCodePages(dc, m_platformData.hfont(), &fontCodePages);
149 langFontLink->GetStrCodePages(characters, length, acpCodePages, &actualCodePages, &numCharactersProcessed);
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 273 milliseconds