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

1 2 3 4

  /external/pdfium/core/fpdfdoc/
cpdf_docjsactions.cpp 11 CPDF_DocJSActions::CPDF_DocJSActions(CPDF_Document* pDoc) : m_pDocument(pDoc) {}
14 ASSERT(m_pDocument);
15 CPDF_NameTree name_tree(m_pDocument, "JavaScript");
21 ASSERT(m_pDocument);
22 CPDF_NameTree name_tree(m_pDocument, "JavaScript");
29 ASSERT(m_pDocument);
30 CPDF_NameTree name_tree(m_pDocument, "JavaScript");
37 ASSERT(m_pDocument);
38 CPDF_NameTree name_tree(m_pDocument, "JavaScript");
cpdf_bookmarktree.h 16 explicit CPDF_BookmarkTree(CPDF_Document* pDoc) : m_pDocument(pDoc) {}
20 CPDF_Document* GetDocument() const { return m_pDocument; }
23 CPDF_Document* const m_pDocument;
cpdf_docjsactions.h 23 CPDF_Document* GetDocument() const { return m_pDocument; }
26 CPDF_Document* const m_pDocument;
cpdf_pagelabel.h 23 CPDF_Document* const m_pDocument;
cpdf_pagelabel.cpp 76 : m_pDocument(pDocument) {}
79 if (!m_pDocument)
82 if (nPage < 0 || nPage >= m_pDocument->GetPageCount())
85 CPDF_Dictionary* pPDFRoot = m_pDocument->GetRoot();
122 if (!m_pDocument)
125 CPDF_Dictionary* pPDFRoot = m_pDocument->GetRoot();
129 int nPages = m_pDocument->GetPageCount();
cpvt_fontmap.cpp 19 : m_pDocument(pDoc),
55 GetAnnotSysPDFFont(m_pDocument, m_pResDict, m_pSysFont,
70 GetAnnotSysPDFFont(m_pDocument, m_pResDict, m_pSysFont,
cpdf_bookmarktree.cpp 17 CPDF_Dictionary* pRoot = m_pDocument->GetRoot();
cpdf_annotlist.cpp 65 : m_pDocument(pPage->m_pDocument) {
73 CPDF_Dictionary* pRoot = m_pDocument->GetRoot();
86 pAnnots->ConvertToIndirectObjectAt(i, m_pDocument);
87 m_AnnotList.push_back(pdfium::MakeUnique<CPDF_Annot>(pDict, m_pDocument));
90 FPDF_GenerateAP(m_pDocument, pDict);
97 CreatePopupAnnot(m_AnnotList[i].get(), m_pDocument));
  /external/pdfium/xfa/fxfa/parser/
cxfa_document_parser.cpp 22 m_pDocument.reset();
27 m_pDocument = pdfium::MakeUnique<CXFA_Document>(this);
28 m_nodeParser.SetFactory(m_pDocument.get());
36 ASSERT(m_pDocument);
37 m_pDocument->SetRoot(m_nodeParser.GetRootNode());
51 return m_pDocument.get();
cxfa_dataimporter.h 23 CXFA_Document* const m_pDocument;
cxfa_dataimporter.cpp 21 : m_pDocument(pDocument) {
22 ASSERT(m_pDocument);
28 pdfium::MakeUnique<CXFA_SimpleParser>(m_pDocument, false);
41 ToNode(m_pDocument->GetXFAObject(XFA_HASHCODE_Datasets));
45 CXFA_Node* pDataNode = ToNode(m_pDocument->GetXFAObject(XFA_HASHCODE_Data));
62 m_pDocument->DoDataRemerge(false);
cscript_hostpseudomodel.cpp 40 CXFA_FFNotify* pNotify = m_pDocument->GetNotify();
53 CXFA_FFNotify* pNotify = m_pDocument->GetNotify();
69 CXFA_FFNotify* pNotify = m_pDocument->GetNotify();
84 CXFA_FFNotify* pNotify = m_pDocument->GetNotify();
98 CXFA_FFNotify* pNotify = m_pDocument->GetNotify();
113 CXFA_FFNotify* pNotify = m_pDocument->GetNotify();
127 if (!m_pDocument->GetScriptContext()->IsRunAtClient()) {
130 CXFA_FFNotify* pNotify = m_pDocument->GetNotify();
147 CXFA_FFNotify* pNotify = m_pDocument->GetNotify();
164 if (!m_pDocument->GetScriptContext()->IsRunAtClient()
    [all...]
cxfa_dataexporter.h 34 CXFA_Document* const m_pDocument;
cxfa_document_parser.h 37 std::unique_ptr<CXFA_Document> m_pDocument;
cxfa_layoutprocessor.cpp 21 : m_pDocument(pDocument),
28 return m_pDocument;
38 ToNode(m_pDocument->GetXFAObject(XFA_HASHCODE_Form));
  /external/pdfium/core/fpdfapi/page/
cpdf_pattern.cpp 14 m_pDocument(pDoc),
cpdf_pattern.h 27 CPDF_Document* document() { return m_pDocument; }
39 CPDF_Document* const m_pDocument;
cpdf_textstate.cpp 94 m_pDocument(nullptr),
107 m_pDocument(that.m_pDocument),
118 if (m_pDocument && m_pFont) {
119 m_pFont = m_pDocument->GetPageData()->GetFont(m_pFont->GetFontDict());
124 if (m_pDocument && m_pFont) {
125 CPDF_DocPageData* pPageData = m_pDocument->GetPageData();
132 CPDF_Document* pDoc = m_pDocument;
137 m_pDocument = pFont ? pFont->m_pDocument : nullptr
    [all...]
cpdf_shadingpattern.cpp 53 if (pCS && m_pDocument)
54 m_pDocument->GetPageData()->ReleaseColorSpace(pCS->GetArray());
89 CPDF_DocPageData* pDocPageData = m_pDocument->GetPageData();
cpdf_image.cpp 32 CPDF_Image::CPDF_Image(CPDF_Document* pDoc) : m_pDocument(pDoc) {}
37 m_pDocument(pDoc),
46 : m_pDocument(pDoc),
70 m_pDocument->AddIndirectObject(m_pStream.Release());
86 pdfium::MakeUnique<CPDF_Dictionary>(m_pDocument->GetByteStringPool());
167 pdfium::MakeUnique<CPDF_Dictionary>(m_pDocument->GetByteStringPool());
218 CPDF_Array* pCS = m_pDocument->NewIndirect<CPDF_Array>();
233 pdfium::MakeUnique<CPDF_Dictionary>(m_pDocument->GetByteStringPool());
234 CPDF_Stream* pCTS = m_pDocument->NewIndirect<CPDF_Stream>(
236 pCS->AddNew<CPDF_Reference>(m_pDocument, pCTS->GetObjNum())
    [all...]
  /external/pdfium/fpdfsdk/formfiller/
cba_fontmap.cpp 25 m_pDocument(nullptr),
31 m_pDocument = pPage->m_pDocument;
108 return m_pDocument;
169 pStream = m_pDocument->NewIndirect<CPDF_Stream>();
170 pAPDict->SetNewFor<CPDF_Reference>(m_sAPType, m_pDocument,
177 pdfium::MakeUnique<CPDF_Dictionary>(m_pDocument->GetByteStringPool());
187 pStreamResFontList = m_pDocument->NewIndirect<CPDF_Dictionary>();
188 pStreamResList->SetNewFor<CPDF_Reference>("Font", m_pDocument,
193 sAlias, m_pDocument, pFont->GetFontDict()->GetObjNum())
    [all...]
  /external/pdfium/core/fpdfapi/edit/
cpdf_pagecontentgenerator.h 40 CPDF_Document* const m_pDocument;
cpdf_pagecontentgenerator.cpp 52 : m_pPage(pPage), m_pDocument(m_pPage->m_pDocument) {
77 CPDF_Stream* pStream = m_pDocument->NewIndirect<CPDF_Stream>();
79 pPageDict->SetNewFor<CPDF_Reference>("Contents", m_pDocument,
88 m_pPage->m_pResources = m_pDocument->NewIndirect<CPDF_Dictionary>();
90 "Resources", m_pDocument, m_pPage->m_pResources->GetObjNum());
105 pResList->SetNewFor<CPDF_Reference>(name, m_pDocument, dwResourceObjNum);
132 pImageObj->SetUnownedImage(m_pDocument->GetPageData()->GetImage(dwObjNum));
232 CPDF_Object* pDict = m_pDocument->AddIndirectObject(std::move(gsDict));
250 pFont = CPDF_Font::GetStockFont(m_pDocument, "Helvetica")
    [all...]
  /external/pdfium/core/fpdfapi/render/
cpdf_rendercontext.h 58 CPDF_Document* GetDocument() const { return m_pDocument; }
63 CPDF_Document* const m_pDocument;
cpdf_rendercontext.cpp 23 : m_pDocument(pPage->m_pDocument),
29 : m_pDocument(pDoc), m_pPageResources(nullptr), m_pPageCache(pPageCache) {}

Completed in 106 milliseconds

1 2 3 4