Home | History | Annotate | Download | only in fpdf_parser

Lines Matching refs:CFDF_Document

8 CFDF_Document::CFDF_Document() : CPDF_IndirectObjects(NULL)

14 CFDF_Document::~CFDF_Document()
20 CFDF_Document* CFDF_Document::CreateNewDoc()
22 CFDF_Document* pDoc = FX_NEW CFDF_Document;
29 CFDF_Document* CFDF_Document::ParseFile(FX_LPCSTR file_path)
31 return CFDF_Document::ParseFile(FX_CreateFileRead(file_path), TRUE);
33 CFDF_Document* CFDF_Document::ParseFile(FX_LPCWSTR file_path)
35 return CFDF_Document::ParseFile(FX_CreateFileRead(file_path), TRUE);
37 CFDF_Document* CFDF_Document::ParseFile(IFX_FileRead *pFile, FX_BOOL bOwnFile)
42 CFDF_Document* pDoc = FX_NEW CFDF_Document;
50 CFDF_Document* CFDF_Document::ParseMemory(FX_LPCBYTE pData, FX_DWORD size)
52 return CFDF_Document::ParseFile(FX_CreateMemoryStream((FX_LPBYTE)pData, size), TRUE);
54 void CFDF_Document::ParseStream(IFX_FileRead *pFile, FX_BOOL bOwnFile)
96 FX_BOOL CFDF_Document::WriteBuf(CFX_ByteTextBuf& buf) const
112 CFX_WideString CFDF_Document::GetWin32Path() const
123 FX_BOOL CFDF_Document::WriteFile(FX_LPCSTR file_path) const
133 FX_BOOL CFDF_Document::WriteFile(FX_LPCWSTR file_path) const
143 FX_BOOL CFDF_Document::WriteFile(IFX_FileWrite *pFile) const