HomeSort by relevance Sort by last modified time
    Searched refs:m_pDocument (Results 1 - 25 of 58) sorted by null

1 2 3

  /external/pdfium/fpdfsdk/src/formfiller/
FFL_CBA_Fontmap.cpp 12 m_pDocument(NULL),
21 m_pDocument = pPage->m_pDocument;
28 m_pDocument(pDocument),
118 return m_pDocument;
171 ASSERT(m_pDocument != NULL);
190 FX_INT32 objnum = m_pDocument->AddIndirectObject(pStream);
191 pAPDict->SetAtReference(m_sAPType, m_pDocument, objnum);
217 FX_INT32 objnum = m_pDocument->AddIndirectObject(pStreamResFontList);
218 pStreamResList->SetAtReference("Font", m_pDocument, objnum)
    [all...]
  /external/pdfium/core/src/fpdfapi/fpdf_edit/
fpdf_edit_content.cpp 19 m_pDocument = NULL;
21 m_pDocument = m_pPage->m_pDocument;
55 m_pDocument->AddIndirectObject(pStream);
56 pPageDict->SetAtReference("Contents", m_pDocument, pStream->GetObjNum());
62 int objnum = m_pDocument->AddIndirectObject(m_pPage->m_pResources);
63 m_pPage->m_pFormDict->SetAtReference("Resources", m_pDocument, objnum);
70 m_pDocument->AddIndirectObject(pResourceObj);
80 pResList->AddReference(name, m_pDocument, pResourceObj->GetObjNum());
97 pImageObj->m_pImage = m_pDocument->GetPageData()->GetImage(pStream)
    [all...]
fpdf_edit_image.cpp 155 m_pDocument->AddIndirectObject(pCS);
169 m_pDocument->AddIndirectObject(pCTS);
170 pCS->AddReference(m_pDocument, pCTS);
171 pDict->SetAtReference(FX_BSTRC("ColorSpace"), m_pDocument, pCS);
219 _JBIG2EncodeBitmap(pMaskDict, pMaskBitmap, m_pDocument, mask_buf, mask_size, TRUE);
238 m_pDocument->AddIndirectObject(pMaskStream);
239 pDict->SetAtReference(FX_BSTRC("SMask"), m_pDocument, pMaskStream);
248 _JBIG2EncodeBitmap(pDict, pBitmap, m_pDocument, dest_buf, dest_size, TRUE);
252 _JBIG2EncodeBitmap(pDict, pBitmap, m_pDocument, dest_buf, dest_size, FALSE);
fpdf_edit_create.cpp 786 if ((len = PDF_CreatorWriteTrailer(pCreator->m_pDocument, pFile, pCreator->m_pIDArray, pCreator->m_bCompress)) < 0) {
867 m_pDocument = pDoc;
889 m_dwLastObjNum = m_pDocument->GetLastObjNum();
936 if (pDict == m_pDocument->m_pRootDict || pDict == m_pEncryptDict) {
    [all...]
  /external/pdfium/fpdfsdk/src/javascript/
Document.cpp 163 m_pDocument(NULL),
200 CPDFSDK_InterForm *pInterForm = m_pDocument->GetInterForm();
208 ASSERT(m_pDocument != NULL);
212 if (m_pDocument->GetChangeMark())
224 m_pDocument->SetChangeMark();
226 m_pDocument->ClearChangeMark();
234 ASSERT(m_pDocument != NULL);
249 ASSERT(m_pDocument != NULL);
253 if (CPDFSDK_PageView* pPageView = m_pDocument->GetCurrentView())
260 int iPageCount = m_pDocument->GetPageCount()
    [all...]
Field.cpp 128 m_pDocument(NULL),
176 m_pDocument = pDocument->GetReaderDoc();
177 ASSERT(m_pDocument != NULL);
179 m_bCanSet = m_pDocument->GetPermissions(FPDFPERM_FILL_FORM) ||
180 m_pDocument->GetPermissions(FPDFPERM_ANNOT_FORM) ||
181 m_pDocument->GetPermissions(FPDFPERM_MODIFY);
183 CPDFSDK_InterForm* pRDInterForm = m_pDocument->GetInterForm();
231 ASSERT(m_pDocument != NULL);
233 Field::GetFormFields(m_pDocument, csFieldName, FieldArray);
381 ASSERT(m_pDocument != NULL)
    [all...]
JS_Runtime.cpp 110 m_pDocument(NULL),
140 m_pDocument = NULL;
221 if (m_pDocument != pReaderDoc)
228 m_pDocument = pReaderDoc;
  /external/pdfium/fpdfsdk/include/javascript/
JS_Runtime.h 43 virtual CPDFSDK_Document * GetReaderDocument(){return m_pDocument;}
65 CPDFSDK_Document* m_pDocument;
  /external/pdfium/core/src/fpdfdoc/
doc_action.cpp 332 m_pDocument = pDoc;
336 ASSERT(m_pDocument != NULL);
337 CPDF_NameTree name_tree(m_pDocument, FX_BSTRC("JavaScript"));
342 ASSERT(m_pDocument != NULL);
343 CPDF_NameTree name_tree(m_pDocument, FX_BSTRC("JavaScript"));
352 ASSERT(m_pDocument != NULL);
353 CPDF_NameTree name_tree(m_pDocument, FX_BSTRC("JavaScript"));
362 ASSERT(m_pDocument != NULL);
363 CPDF_NameTree name_tree(m_pDocument, FX_BSTRC("JavaScript"));
doc_annot.cpp 18 m_pDocument = pPage->m_pDocument;
23 CPDF_Dictionary* pRoot = m_pDocument->GetRoot();
33 dwObjNum = m_pDocument->AddIndirectObject(pDict);
34 CPDF_Reference* pAction = CPDF_Reference::Create(m_pDocument, dwObjNum);
47 FPDF_GenerateAP(m_pDocument, pDict);
150 m_pList->m_pDocument->AddIndirectObject(m_pAnnotDict);
152 return CPDF_Reference::Create(m_pList->m_pDocument, m_pAnnotDict->GetObjNum());
227 pForm = new CPDF_Form(m_pList->m_pDocument, pPage->m_pResources, pStream);
doc_bookmark.cpp 15 CPDF_Dictionary* pRoot = m_pDocument->GetRoot()->GetDict("Outlines");
doc_form.cpp 247 m_pDocument = pDocument;
252 CPDF_Dictionary* pRoot = m_pDocument->GetRoot();
1022 InitInterFormDict(m_pFormDict, m_pDocument);
1076 return GetInterFormFont(m_pFormDict, m_pDocument, index, csNameTag);
1080 return GetInterFormFont(m_pFormDict, m_pDocument, csNameTag);
    [all...]
doc_basic.cpp 508 if (m_pDocument == NULL) {
511 CPDF_Dictionary* pPDFRoot = m_pDocument->GetRoot();
545 if (m_pDocument == NULL) {
548 CPDF_Dictionary* pPDFRoot = m_pDocument->GetRoot();
552 int nPages = m_pDocument->GetPageCount();
  /external/pdfium/core/src/fpdfapi/fpdf_page/
fpdf_page_image.cpp 55 return m_pDocument->GetPageData()->GetImage(m_pStream);
57 CPDF_Image* pImage = new CPDF_Image(m_pDocument);
67 m_pDocument = pDoc;
fpdf_page_pattern.cpp 11 m_pPatternObj(NULL), m_PatternType(PATTERN_TILING), m_pDocument(NULL), m_bForceClear(FALSE)
25 m_pDocument = pDoc;
58 m_pForm = new CPDF_Form(m_pDocument, NULL, pStream);
67 m_pDocument = pDoc;
101 if (pCS && m_pDocument) {
102 m_pDocument->GetPageData()->ReleaseColorSpace(pCS->GetArray());
144 CPDF_DocPageData* pDocPageData = m_pDocument->GetPageData();
fpdf_page_colors.cpp 585 if (m_pProfile && m_pDocument) {
586 m_pDocument->GetPageData()->ReleaseIccProfile(NULL, m_pProfile);
787 if (pCS && m_pDocument) {
788 m_pDocument->GetPageData()->ReleaseColorSpace(pCS->GetArray());
873 if (pCS && m_pDocument) {
874 m_pDocument->GetPageData()->ReleaseColorSpace(pCS->GetArray());
    [all...]
fpdf_page_graph_state.cpp 282 m_pDocument = NULL;
298 if (m_pDocument && m_pFont) {
299 m_pFont = m_pDocument->GetPageData()->GetFont(m_pFont->GetFontDict(), FALSE);
304 if (m_pDocument && m_pFont) {
305 CPDF_DocPageData *pPageData = m_pDocument->GetPageData();
315 CPDF_Document* pDoc = pStateData->m_pDocument;
320 pStateData->m_pDocument = pFont ? pFont->m_pDocument : NULL;
  /external/pdfium/fpdfsdk/include/formfiller/
FFL_CBA_Fontmap.h 42 CPDF_Document* m_pDocument;
  /external/pdfium/core/include/fpdfdoc/
fpdf_doc.h 77 CPDF_BookmarkTree(CPDF_Document* pDoc) : m_pDocument(pDoc) {}
83 CPDF_Document* GetDocument() const { return m_pDocument; }
86 CPDF_Document* m_pDocument;
157 return m_pDocument;
180 CPDF_Document *m_pDocument;
478 return m_pDocument;
483 CPDF_Document* m_pDocument;
518 m_pDocument = pDoc;
531 return m_pDocument;
535 CPDF_Document* m_pDocument;
    [all...]
  /external/pdfium/fpdfsdk/src/
fsdk_baseform.cpp     [all...]
  /external/pdfium/core/src/fpdfapi/fpdf_render/
fpdf_render_cache.cpp 114 pImageCache = new CPDF_ImageCache(m_pPage->m_pDocument, pStream);
129 m_pCurImageCache = new CPDF_ImageCache(m_pPage->m_pDocument, pStream);
166 pImageCache = new CPDF_ImageCache(m_pPage->m_pDocument, pStream);
179 , m_pDocument(pDoc)
245 if (!pSrc->Load(m_pDocument, m_pStream, &pMaskSrc, &MatteColor, pRenderStatus->m_pFormResource, pPageResources, bStdCS, GroupFamily, bLoadMask)) {
293 int ret = ((CPDF_DIBSource*)m_pCurBitmap)->StartLoadDIBSource(m_pDocument, m_pStream, TRUE, pFormResources, pPageResources, bStdCS, GroupFamily, bLoadMask);
fpdf_render_text.cpp 293 if (pFont->m_pDocument == NULL) {
296 pFont->m_pDocument->GetPageData()->GetFont(pFont->GetFontDict(), FALSE);
297 return pFont->m_pDocument->GetRenderData()->GetCachedType3(pFont);
301 if (pFont->m_pDocument == NULL) {
304 pFont->m_pDocument->GetRenderData()->ReleaseCachedType3(pFont);
305 pFont->m_pDocument->GetPageData()->ReleaseFont(pFont->GetFontDict());
331 if (!dibsrc.Load(pContext->m_pDocument, pInlines->m_pStream, NULL, NULL, NULL, NULL)) {
585 CFX_FontCache* pCache = pFont->m_pDocument ? pFont->m_pDocument->GetRenderData()->GetFontCache() : NULL;
654 CFX_FontCache* pCache = pFont->m_pDocument ? pFont->m_pDocument->GetRenderData()->GetFontCache() : NULL
    [all...]
  /external/pdfium/core/include/fpdfapi/
fpdf_page.h 112 CPDF_Document* m_pDocument;
242 CPDF_Document* m_pDocument;
fpdf_resource.h 245 CPDF_Document* m_pDocument;
643 CPDF_Document* m_pDocument;
733 CPDF_Document* m_pDocument;
882 return m_pDocument;
942 CPDF_Document* m_pDocument;
  /external/pdfium/core/src/fpdfapi/fpdf_parser/
fpdf_parser_parser.cpp 43 m_pDocument = NULL;
70 if (m_pDocument && !bReParse) {
71 delete m_pDocument;
72 m_pDocument = NULL;
176 m_pDocument = new CPDF_Document(this);
209 m_pDocument->LoadDoc();
210 if (m_pDocument->GetRoot() == NULL || m_pDocument->GetPageCount() == 0) {
222 m_pDocument->LoadDoc();
223 if (m_pDocument->GetRoot() == NULL)
    [all...]

Completed in 823 milliseconds

1 2 3