Searched refs:pDoc (Results 1 - 25 of 110) sorted by relevance

12345

/external/pdfium/core/fpdfapi/page/
H A Dcpdf_pattern.cpp10 CPDF_Document* pDoc,
14 m_pDocument(pDoc),
9 CPDF_Pattern(PatternType type, CPDF_Document* pDoc, CPDF_Object* pObj, const CFX_Matrix& parentMatrix) argument
H A Dcpdf_pagemodule.cpp33 void CPDF_PageModule::ClearStockFont(CPDF_Document* pDoc) { argument
34 m_FontGlobals.Clear(pDoc);
H A Dcpdf_pagemodule.h23 void ClearStockFont(CPDF_Document* pDoc);
H A Dcpdf_form.cpp17 CPDF_Form::CPDF_Form(CPDF_Document* pDoc, argument
21 m_pDocument = pDoc;
H A Dcpdf_tilingpattern.cpp15 CPDF_TilingPattern::CPDF_TilingPattern(CPDF_Document* pDoc, argument
18 : CPDF_Pattern(TILING, pDoc, pPatternObj, parentMatrix) {
/external/pdfium/core/fpdfdoc/
H A Dcpvt_generateap.h24 bool FPDF_GenerateAP(CPDF_Document* pDoc, CPDF_Dictionary* pAnnotDict);
28 static bool GenerateCircleAP(CPDF_Document* pDoc,
30 static bool GenerateComboBoxAP(CPDF_Document* pDoc,
32 static bool GenerateHighlightAP(CPDF_Document* pDoc,
34 static bool GenerateInkAP(CPDF_Document* pDoc, CPDF_Dictionary* pAnnotDict);
35 static bool GenerateListBoxAP(CPDF_Document* pDoc,
37 static bool GeneratePopupAP(CPDF_Document* pDoc, CPDF_Dictionary* pAnnotDict);
38 static bool GenerateSquareAP(CPDF_Document* pDoc,
40 static bool GenerateSquigglyAP(CPDF_Document* pDoc,
42 static bool GenerateStrikeOutAP(CPDF_Document* pDoc,
[all...]
H A Dcpdf_bookmarktree.h16 explicit CPDF_BookmarkTree(CPDF_Document* pDoc) : m_pDocument(pDoc) {} argument
H A Dcpvt_fontmap.cpp15 CPVT_FontMap::CPVT_FontMap(CPDF_Document* pDoc, argument
19 : m_pDocument(pDoc),
28 void CPVT_FontMap::GetAnnotSysPDFFont(CPDF_Document* pDoc, argument
32 if (!pDoc || !pResDict)
36 CPDF_Dictionary* pFormDict = pDoc->GetRoot()->GetDictFor("AcroForm");
37 CPDF_Font* pPDFFont = AddNativeInterFormFont(pFormDict, pDoc, sSysFontAlias);
43 pFontList->SetNewFor<CPDF_Reference>(sSysFontAlias, pDoc,
H A Dcpdf_link.cpp16 CPDF_Dest CPDF_Link::GetDest(CPDF_Document* pDoc) { argument
22 CPDF_NameTree name_tree(pDoc, "Dests");
23 return CPDF_Dest(name_tree.LookupNamedDest(pDoc, pDest->GetString()));
H A Dcpdf_metadata.cpp14 CPDF_Metadata::CPDF_Metadata(CPDF_Document* pDoc) { argument
15 CPDF_Dictionary* pRoot = pDoc->GetRoot();
H A Dcpdf_nametree.h20 CPDF_NameTree(CPDF_Document* pDoc, const CFX_ByteString& category);
24 CPDF_Array* LookupNamedDest(CPDF_Document* pDoc, const CFX_ByteString& sName);
H A Dcpdf_docjsactions.h17 explicit CPDF_DocJSActions(CPDF_Document* pDoc);
H A Dcpdf_link.h24 CPDF_Dest GetDest(CPDF_Document* pDoc);
H A Dcpdf_metadata.h17 explicit CPDF_Metadata(CPDF_Document* pDoc);
H A Dcpdf_action.h45 CPDF_Dest GetDest(CPDF_Document* pDoc) const;
47 CFX_ByteString GetURI(CPDF_Document* pDoc) const;
H A Dcpdf_docjsactions.cpp11 CPDF_DocJSActions::CPDF_DocJSActions(CPDF_Document* pDoc) : m_pDocument(pDoc) {} argument
H A Dcpvt_fontmap.h21 CPVT_FontMap(CPDF_Document* pDoc,
36 static void GetAnnotSysPDFFont(CPDF_Document* pDoc,
/external/pdfium/core/fpdfapi/parser/
H A Dcfdf_document.cpp23 auto pDoc = pdfium::MakeUnique<CFDF_Document>(); local
24 pDoc->m_pRootDict = pDoc->NewIndirect<CPDF_Dictionary>();
25 pDoc->m_pRootDict->SetNewFor<CPDF_Dictionary>("FDF");
26 return pDoc;
34 auto pDoc = pdfium::MakeUnique<CFDF_Document>();
35 pDoc->ParseStream(pFile);
36 return pDoc->m_pRootDict ? std::move(pDoc) : nullptr;
H A Dcpdf_reference.cpp13 CPDF_Reference::CPDF_Reference(CPDF_IndirectObjectHolder* pDoc, uint32_t objnum) argument
14 : m_pObjList(pDoc), m_RefObjNum(objnum) {}
76 void CPDF_Reference::SetRef(CPDF_IndirectObjectHolder* pDoc, uint32_t objnum) { argument
77 m_pObjList = pDoc;
/external/pdfium/core/fpdfapi/render/
H A Dcpdf_transferfunc.cpp12 CPDF_TransferFunc::CPDF_TransferFunc(CPDF_Document* pDoc) : m_pPDFDoc(pDoc) {} argument
H A Dcpdf_transferfunc.h16 explicit CPDF_TransferFunc(CPDF_Document* pDoc);
/external/pdfium/fpdfsdk/
H A Dfpdfedittext.cpp26 CPDF_Document* pDoc = CPDFDocumentFromFPDFDocument(document); local
27 if (!pDoc)
30 CPDF_Font* pFont = CPDF_Font::GetStockFont(pDoc, CFX_ByteStringC(font));
54 CPDF_Document* pDoc = CPDFDocumentFromFPDFDocument(document); local
55 if (!pDoc || !data || size == 0)
64 CPDF_Dictionary* fontDict = pDoc->NewIndirect<CPDF_Dictionary>();
76 CPDF_Array* widthsArray = pDoc->NewIndirect<CPDF_Array>();
88 fontDict->SetNewFor<CPDF_Reference>("Widths", pDoc, widthsArray->GetObjNum());
89 CPDF_Dictionary* fontDesc = pDoc->NewIndirect<CPDF_Dictionary>();
126 CPDF_Stream* pStream = pDoc
[all...]
H A Dfpdfdoc.cpp56 CPDF_Document* pDoc = page->m_pDocument;
57 std::unique_ptr<CPDF_LinkList>* pHolder = pDoc->LinksContext();
77 CPDF_Document* pDoc = CPDFDocumentFromFPDFDocument(document); local
78 if (!pDoc)
80 CPDF_BookmarkTree tree(pDoc);
90 CPDF_Document* pDoc = CPDFDocumentFromFPDFDocument(document);
91 if (!pDoc)
93 CPDF_BookmarkTree tree(pDoc);
113 CPDF_Document* pDoc = CPDFDocumentFromFPDFDocument(document);
114 if (!pDoc)
[all...]
H A Dfpdf_ext.cpp49 void CheckUnSupportAnnot(CPDF_Document* pDoc, const CPDF_Annot* pPDFAnnot) { argument
119 void CheckUnSupportError(CPDF_Document* pDoc, uint32_t err_code) { argument
125 if (!pDoc)
129 CPDF_Dictionary* pRootDict = pDoc->GetRoot();
159 CPDF_Metadata metaData(pDoc);
166 CPDF_InterForm interform(pDoc);
173 CPDF_Document* pDoc = CPDFDocumentFromFPDFDocument(document); local
174 if (!pDoc)
177 CPDF_Dictionary* pRoot = pDoc->GetRoot();
H A Dfpdf_transformpage.cpp129 CPDF_Document* pDoc = pPage->m_pDocument;
130 if (!pDoc)
133 CPDF_Stream* pStream = pDoc->NewIndirect<CPDF_Stream>(
135 pdfium::MakeUnique<CPDF_Dictionary>(pDoc->GetByteStringPool()));
138 CPDF_Stream* pEndStream = pDoc->NewIndirect<CPDF_Stream>(
140 pdfium::MakeUnique<CPDF_Dictionary>(pDoc->GetByteStringPool()));
147 pContentArray->InsertNewAt<CPDF_Reference>(0, pDoc, pStream->GetObjNum());
148 pContentArray->AddNew<CPDF_Reference>(pDoc, pEndStream->GetObjNum());
155 pContentArray->InsertNewAt<CPDF_Reference>(0, pDoc,
157 pContentArray->AddNew<CPDF_Reference>(pDoc, pEndStrea
303 CPDF_Document* pDoc = pPage->m_pDocument; local
[all...]

Completed in 189 milliseconds

12345