Searched refs:GetFontData (Results 1 - 19 of 19) sorted by relevance

/external/pdfium/core/src/fxge/android/
H A Dfx_android_font.cpp53 FX_DWORD CFX_AndroidFontInfo::GetFontData(void* hFont, FX_DWORD table, FX_LPBYTE buffer, FX_DWORD size) function in class:CFX_AndroidFontInfo
58 return ((IFPF_Font*)hFont)->GetFontData(table, buffer, size);
H A Dfx_android_font.h25 virtual FX_DWORD GetFontData(void* hFont, FX_DWORD table, FX_LPBYTE buffer, FX_DWORD size);
H A Dfpf_skiafont.h46 virtual FX_DWORD GetFontData(FX_DWORD dwTable, FX_LPBYTE pBuffer, FX_DWORD dwSize);
H A Dfpf_skiafont.cpp159 FX_DWORD CFPF_SkiaFont::GetFontData(FX_DWORD dwTable, FX_LPBYTE pBuffer, FX_DWORD dwSize) function in class:CFPF_SkiaFont
/external/pdfium/fpdfsdk/src/
H A Dfpdf_sysfontinfo.cpp45 virtual FX_DWORD GetFontData(void* hFont, FX_DWORD table, FX_LPBYTE buffer, FX_DWORD size) function in class:CSysFontInfo_Ext
47 if (m_pInfo->GetFontData)
48 return m_pInfo->GetFontData(m_pInfo, hFont, table, buffer, size);
122 return ((FPDF_SYSFONTINFO_DEFAULT*)pThis)->m_pFontInfo->GetFontData(hFont, table, buffer, buf_size);
157 pFontInfoExt->GetFontData = DefaultGetFontData;
/external/chromium_org/content/browser/renderer_host/pepper/
H A Dpepper_truetype_font_win.cc40 DWORD GetFontData(HDC hdc,
150 if (GetFontData(hdc.Get(), 0, 0, header_buf, kFontHeaderSize) == GDI_ERROR)
162 if (GetFontData(hdc.Get(), 0 /* tag */, kFontHeaderSize, directory.get(),
196 DWORD table_size = GetFontData(hdc.Get(), table_tag, 0, NULL, 0);
207 table_size = GetFontData(hdc.Get(),
218 DWORD PepperTrueTypeFontWin::GetFontData(HDC hdc, function in class:content::__anon7360::PepperTrueTypeFontWin
227 return ::GetFontData(hdc, table, offset, buffer, length);
/external/pdfium/fpdfsdk/include/
H A Dfpdf_sysfontinfo.h124 * Method: GetFontData
143 unsigned long (*GetFontData)(struct _FPDF_SYSFONTINFO* pThis, void* hFont, member in struct:_FPDF_SYSFONTINFO
/external/pdfium/core/include/fxge/
H A Dfpf.h43 virtual FX_DWORD GetFontData(FX_DWORD dwTable, FX_LPBYTE pBuffer, FX_DWORD dwSize) = 0;
H A Dfx_font.h302 virtual FX_DWORD GetFontData(void* hFont, FX_DWORD table, FX_LPBYTE buffer, FX_DWORD size) = 0;
325 virtual FX_DWORD GetFontData(void* hFont, FX_DWORD table, FX_LPBYTE buffer, FX_DWORD size);
/external/chromium_org/chrome/renderer/
H A Dchrome_render_process_observer.cc138 int rv = GetFontData(hdc, table, offset, buffer, length);
146 rv = GetFontData(hdc, table, offset, buffer, length);
287 pdf.value().c_str(), "gdi32.dll", "GetFontData", GetFontDataPatch);
/external/pdfium/core/src/fxge/ge/
H A Dfx_ge_fontmap.cpp582 FX_DWORD size = m_pFontInfo->GetFontData(hFont, 0x6e616d65, NULL, 0);
588 m_pFontInfo->GetFontData(hFont, 0x6e616d65, buffer, size);
1227 FX_DWORD ttc_size = m_pFontInfo->GetFontData(hFont, 0x74746366, NULL, 0);
1228 FX_DWORD font_size = m_pFontInfo->GetFontData(hFont, 0, NULL, 0);
1236 m_pFontInfo->GetFontData(hFont, 0x74746366, temp, 1024);
1246 m_pFontInfo->GetFontData(hFont, 0x74746366, pFontData, ttc_size);
1260 m_pFontInfo->GetFontData(hFont, 0, pFontData, font_size);
1502 FX_DWORD CFX_FolderFontInfo::GetFontData(void* hFont, FX_DWORD table, FX_LPBYTE buffer, FX_DWORD size) function in class:CFX_FolderFontInfo
/external/chromium_org/chrome/utility/
H A Dprinting_handler.cc161 int rv = GetFontData(hdc, table, offset, buffer, length);
168 rv = GetFontData(hdc, table, offset, buffer, length);
192 "gdi32.dll", "GetFontData",
/external/chromium_org/third_party/icu/source/samples/layout/
H A DGDIFontInstance.cpp346 DWORD len = GetFontData(hdc, stag, 0, NULL, 0);
351 GetFontData(hdc, stag, 0, result, len);
/external/icu/icu4c/source/samples/layout/
H A DGDIFontInstance.cpp346 DWORD len = GetFontData(hdc, stag, 0, NULL, 0);
351 GetFontData(hdc, stag, 0, result, len);
/external/pdfium/core/src/fxge/win32/
H A Dfx_win32_device.cpp31 virtual FX_DWORD GetFontData(void* hFont, FX_DWORD table, FX_LPBYTE buffer, FX_DWORD size);
64 FX_DWORD font_size = GetFontData(hFont, 0, NULL, 0);
67 GetFontData(hFont, 0, (FX_BYTE*)(&lVersion), sizeof(FX_DWORD));
85 FX_DWORD font_size = GetFontData(hFont, 0, NULL, 0);
88 GetFontData(hFont, 0, (FX_BYTE*)(&lVersion), sizeof(FX_DWORD));
367 FX_DWORD CWin32FontInfo::GetFontData(void* hFont, FX_DWORD table, FX_LPBYTE buffer, FX_DWORD size) function in class:CWin32FontInfo
371 size = ::GetFontData(m_hDC, table, 0, buffer, size);
/external/chromium_org/third_party/skia/src/ports/
H A DSkFontHost_win.cpp174 if (GDI_ERROR != GetFontData(hdc, SkOTTableMaximumProfile::TAG, 4, &glyphs, sizeof(glyphs))) {
2050 DWORD bufferSize = GetFontData(hdc, tables[i], 0, NULL, 0);
2053 bufferSize = GetFontData(hdc, tables[i], 0, NULL, 0);
2057 if (GetFontData(hdc, tables[i], 0, (void*)stream->getMemoryBase(), bufferSize)) {
2352 DWORD bufferSize = GetFontData(hdc, tag, (DWORD) offset, data, (DWORD) length);
2355 bufferSize = GetFontData(hdc, tag, (DWORD) offset, data, (DWORD) length);
/external/skia/src/ports/
H A DSkFontHost_win.cpp174 if (GDI_ERROR != GetFontData(hdc, SkOTTableMaximumProfile::TAG, 4, &glyphs, sizeof(glyphs))) {
2078 DWORD bufferSize = GetFontData(hdc, tables[i], 0, NULL, 0);
2081 bufferSize = GetFontData(hdc, tables[i], 0, NULL, 0);
2085 if (GetFontData(hdc, tables[i], 0, (void*)stream->getMemoryBase(), bufferSize)) {
2380 DWORD bufferSize = GetFontData(hdc, tag, (DWORD) offset, data, (DWORD) length);
2383 bufferSize = GetFontData(hdc, tag, (DWORD) offset, data, (DWORD) length);
/external/pdfium/core/src/fpdfapi/fpdf_edit/
H A Dfpdf_edit_doc.cpp233 DWORD size = ::GetFontData(hDC, 'eman', 0, NULL, 0);
236 ::GetFontData(hDC, 'eman', 0, buffer, size);
/external/chromium_org/pdf/pdfium/
H A Dpdfium_engine.cc260 unsigned long GetFontData(struct _FPDF_SYSFONTINFO*, void* font_id, function in namespace:chrome_pdf::__anon9855
286 GetFontData,

Completed in 1718 milliseconds