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

  /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...]
GlyphPageTreeNodeWinCE.cpp 55 } else if (IMLangFontLink2* langFontLink = fontCache()->getFontLinkInterface()) {
57 } else if (IMLangFontLink* langFontLink = fontCache()->getFontLinkInterface()) {
61 langFontLink->GetCharCodePages(buffer[i], &actualCodePages);
SimpleFontDataWinCE.cpp 109 IMLangFontLink2* langFontLink = fontCache()->getFontLinkInterface();
111 IMLangFontLink* langFontLink = fontCache()->getFontLinkInterface();
113 if (!langFontLink)
121 langFontLink->CodePageToCodePages(CP_ACP, &acpCodePages);
126 langFontLink->GetStrCodePages(characters, length, acpCodePages, &actualCodePages, &numCharactersProcessed);
FontPlatformData.cpp 58 if (IMLangFontLink2* langFontLink = fontCache()->getFontLinkInterface())
59 langFontLink->CodePageToCodePages(m_codePage, &m_codePages);
61 if (IMLangFontLink* langFontLink = fontCache()->getFontLinkInterface())
62 langFontLink->CodePageToCodePages(m_codePage, &m_codePages);
272 if (IMLangFontLink2* langFontLink = fontCache()->getFontLinkInterface()) {
274 if (IMLangFontLink* langFontLink = fontCache()->getFontLinkInterface()) {
276 langFontLink->GetFontCodePages(g_screenDC, fontData->m_hfont.get(), &fontData->m_codePages);
  /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/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...]
SimpleFontDataWin.cpp 156 IMLangFontLink2* langFontLink = fontCache()->getFontLinkInterface();
157 if (!langFontLink)
163 langFontLink->CodePageToCodePages(CP_ACP, &acpCodePages);
166 langFontLink->GetFontCodePages(dc, m_platformData.hfont(), &fontCodePages);
172 langFontLink->GetStrCodePages(characters, length, acpCodePages, &actualCodePages, &numCharactersProcessed);

Completed in 70 milliseconds