Home
last modified time | relevance | path

Searched refs:CPDF_ModuleMgr (Results 1 – 25 of 26) sorted by relevance

12

/external/pdfium/core/fpdfapi/
Dcpdf_modulemgr.cpp15 CPDF_ModuleMgr* g_pDefaultMgr = nullptr;
20 CPDF_ModuleMgr* CPDF_ModuleMgr::Get() { in Get()
22 g_pDefaultMgr = new CPDF_ModuleMgr; in Get()
27 void CPDF_ModuleMgr::Destroy() { in Destroy()
32 CPDF_ModuleMgr::CPDF_ModuleMgr() : m_pCodecModule(nullptr) {} in CPDF_ModuleMgr() function in CPDF_ModuleMgr
34 CPDF_ModuleMgr::~CPDF_ModuleMgr() {} in ~CPDF_ModuleMgr()
36 void CPDF_ModuleMgr::InitPageModule() { in InitPageModule()
40 CCodec_FaxModule* CPDF_ModuleMgr::GetFaxModule() { in GetFaxModule()
44 CCodec_JpegModule* CPDF_ModuleMgr::GetJpegModule() { in GetJpegModule()
48 CCodec_JpxModule* CPDF_ModuleMgr::GetJpxModule() { in GetJpxModule()
[all …]
Dcpdf_modulemgr.h35 class CPDF_ModuleMgr {
37 static CPDF_ModuleMgr* Get();
68 CPDF_ModuleMgr();
69 ~CPDF_ModuleMgr();
/external/pdfium/fpdfsdk/
Dfpdfeditimg_unittest.cpp12 CPDF_ModuleMgr* module_mgr = CPDF_ModuleMgr::Get(); in SetUp()
16 void TearDown() override { CPDF_ModuleMgr::Destroy(); } in TearDown()
Dfpdfdoc_unittest.cpp63 CPDF_ModuleMgr* module_mgr = CPDF_ModuleMgr::Get(); in SetUp()
78 CPDF_ModuleMgr::Destroy(); in TearDown()
Dfpdf_ext.cpp29 CPDF_ModuleMgr::Get()->GetUnsupportInfoAdapter(); in FPDF_UnSupportError()
44 CPDF_ModuleMgr::Get()->SetUnsupportInfoAdapter( in FSDK_SetUnSpObjProcessHandler()
Dfpdfview.cpp375 CPDF_ModuleMgr* pModuleMgr = CPDF_ModuleMgr::Get(); in FPDF_InitLibraryWithConfig()
420 CPDF_ModuleMgr::Destroy(); in FPDF_DestroyLibrary()
/external/pdfium/core/fpdfapi/cmaps/Korea1/
Dcmaps_korea1.cpp40 void CPDF_ModuleMgr::LoadEmbeddedKorea1CMaps() { in LoadEmbeddedKorea1CMaps()
42 CPDF_ModuleMgr::Get()->GetPageModule()->GetFontGlobals(); in LoadEmbeddedKorea1CMaps()
/external/pdfium/core/fpdfapi/cmaps/GB1/
Dcmaps_gb1.cpp46 void CPDF_ModuleMgr::LoadEmbeddedGB1CMaps() { in LoadEmbeddedGB1CMaps()
48 CPDF_ModuleMgr::Get()->GetPageModule()->GetFontGlobals(); in LoadEmbeddedGB1CMaps()
/external/pdfium/core/fpdfapi/cmaps/CNS1/
Dcmaps_cns1.cpp46 void CPDF_ModuleMgr::LoadEmbeddedCNS1CMaps() { in LoadEmbeddedCNS1CMaps()
48 CPDF_ModuleMgr::Get()->GetPageModule()->GetFontGlobals(); in LoadEmbeddedCNS1CMaps()
/external/pdfium/core/fpdfapi/parser/
Dfpdf_parser_decode.cpp271 return CPDF_ModuleMgr::Get()->GetFaxModule()->CreateDecoder( in FPDFAPI_CreateFaxDecoder()
294 return CPDF_ModuleMgr::Get()->GetFlateModule()->CreateDecoder( in FPDFAPI_CreateFlateDecoder()
320 return CPDF_ModuleMgr::Get()->GetFlateModule()->FlateOrLZWDecode( in FPDFAPI_FlateOrLZWDecode()
549 CCodec_ModuleMgr* pEncoders = CPDF_ModuleMgr::Get()->GetCodecModule(); in FlateEncode()
559 CCodec_ModuleMgr* pEncoders = CPDF_ModuleMgr::Get()->GetCodecModule(); in PngEncode()
569 CCodec_ModuleMgr* pEncoders = CPDF_ModuleMgr::Get()->GetCodecModule(); in FlateDecode()
Dcpdf_document_unittest.cpp132 CPDF_ModuleMgr* module_mgr = CPDF_ModuleMgr::Get(); in SetUp()
135 void TearDown() override { CPDF_ModuleMgr::Destroy(); } in TearDown()
Dcpdf_syntax_parser.cpp47 m_BufSize(CPDF_ModuleMgr::kFileBufSize), in CPDF_SyntaxParser()
/external/pdfium/core/fpdfapi/cmaps/Japan1/
Dcmaps_japan1.cpp58 void CPDF_ModuleMgr::LoadEmbeddedJapan1CMaps() { in LoadEmbeddedJapan1CMaps()
60 CPDF_ModuleMgr::Get()->GetPageModule()->GetFontGlobals(); in LoadEmbeddedJapan1CMaps()
/external/pdfium/core/fpdfapi/page/
Dfpdf_page_colors.cpp231 } else if (CPDF_ModuleMgr::Get()->GetIccModule()) { in CPDF_IccProfile()
232 m_pTransform = CPDF_ModuleMgr::Get()->GetIccModule()->CreateTransform_sRGB( in CPDF_IccProfile()
238 CPDF_ModuleMgr::Get()->GetIccModule()->DestroyTransform(m_pTransform); in ~CPDF_IccProfile()
Dcpdf_colorspace.cpp331 return CPDF_ModuleMgr::Get()->GetPageModule()->GetStockCS(family); in GetStockCS()
900 CCodec_IccModule* pIccModule = CPDF_ModuleMgr::Get()->GetIccModule(); in GetRGB()
961 CPDF_ModuleMgr::Get()->GetIccModule()->TranslateScanline( in TranslateImageLine()
977 CPDF_ModuleMgr::Get()->GetIccModule()->TranslateScanline( in TranslateImageLine()
Dcpdf_image.cpp80 if (!CPDF_ModuleMgr::Get()->GetJpegModule()->LoadInfo( in InitJPEG()
Dcpdf_streamparser.cpp88 CPDF_ModuleMgr::Get()->GetJpegModule()->CreateDecoder( in PDF_DecodeInlineStream()
/external/pdfium/core/fpdfapi/edit/
Dcpdf_pagecontentgenerator_unittest.cpp19 void SetUp() override { CPDF_ModuleMgr::Get()->InitPageModule(); } in SetUp()
21 void TearDown() override { CPDF_ModuleMgr::Destroy(); } in TearDown()
/external/pdfium/core/fpdfapi/render/
Dcpdf_dibsource.cpp319 CCodec_Jbig2Module* pJbig2Module = CPDF_ModuleMgr::Get()->GetJbig2Module(); in ContinueLoadDIBSource()
533 m_pDecoder = CPDF_ModuleMgr::Get() in CreateDecoder()
539 m_pDecoder = CPDF_ModuleMgr::Get()->GetJpegModule()->CreateDecoder( in CreateDecoder()
546 CCodec_JpegModule* pJpegModule = CPDF_ModuleMgr::Get()->GetJpegModule(); in CreateDecoder()
593 m_pDecoder = CPDF_ModuleMgr::Get()->GetJpegModule()->CreateDecoder( in CreateDecoder()
615 CCodec_JpxModule* pJpxModule = CPDF_ModuleMgr::Get()->GetJpxModule(); in LoadJpxBitmap()
/external/pdfium/core/fpdfapi/cmaps/
Dfpdf_cmaps.cpp62 CPDF_ModuleMgr::Get()->GetPageModule()->GetFontGlobals(); in FPDFAPI_FindEmbeddedCMap()
/external/pdfium/core/fpdfapi/font/
Dfpdf_font.cpp308 m_pBaseMap = CPDF_ModuleMgr::Get() in Load()
Dcpdf_font.cpp302 CPDF_ModuleMgr::Get()->GetPageModule()->GetFontGlobals(); in GetStockFont()
Dfpdf_font_cid.cpp776 CPDF_ModuleMgr::Get()->GetPageModule()->GetFontGlobals(); in Load()
Dcpdf_cidfont.cpp117 return CPDF_ModuleMgr::Get()->GetPageModule()->GetFontGlobals(); in GetFontGlobals()
/external/pdfium/fpdfsdk/pdfwindow/
DPWL_FontMap.cpp53 if (CPDF_ModuleMgr::Get()) { in GetDocument()

12