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

1 2 3 4 5

  /external/pdfium/core/fpdfdoc/
cpvt_generateap.h 24 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...]
cpdf_bookmarktree.h 16 explicit CPDF_BookmarkTree(CPDF_Document* pDoc) : m_pDocument(pDoc) {}
cpvt_fontmap.cpp 15 CPVT_FontMap::CPVT_FontMap(CPDF_Document* pDoc,
19 : m_pDocument(pDoc),
28 void CPVT_FontMap::GetAnnotSysPDFFont(CPDF_Document* pDoc,
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,
cpdf_link.cpp 16 CPDF_Dest CPDF_Link::GetDest(CPDF_Document* pDoc) {
22 CPDF_NameTree name_tree(pDoc, "Dests");
23 return CPDF_Dest(name_tree.LookupNamedDest(pDoc, pDest->GetString()));
cpdf_metadata.h 17 explicit CPDF_Metadata(CPDF_Document* pDoc);
cpdf_metadata.cpp 14 CPDF_Metadata::CPDF_Metadata(CPDF_Document* pDoc) {
15 CPDF_Dictionary* pRoot = pDoc->GetRoot();
cpdf_nametree.h 20 CPDF_NameTree(CPDF_Document* pDoc, const CFX_ByteString& category);
24 CPDF_Array* LookupNamedDest(CPDF_Document* pDoc, const CFX_ByteString& sName);
cpdf_docjsactions.h 17 explicit CPDF_DocJSActions(CPDF_Document* pDoc);
cpdf_link.h 24 CPDF_Dest GetDest(CPDF_Document* pDoc);
cpdf_viewerpreferences.h 19 explicit CPDF_ViewerPreferences(CPDF_Document* pDoc);
cpdf_action.h 45 CPDF_Dest GetDest(CPDF_Document* pDoc) const;
47 CFX_ByteString GetURI(CPDF_Document* pDoc) const;
cpdf_docjsactions.cpp 11 CPDF_DocJSActions::CPDF_DocJSActions(CPDF_Document* pDoc) : m_pDocument(pDoc) {}
  /external/pdfium/core/fpdfapi/page/
cpdf_pattern.cpp 10 CPDF_Document* pDoc,
14 m_pDocument(pDoc),
cpdf_pagemodule.cpp 33 void CPDF_PageModule::ClearStockFont(CPDF_Document* pDoc) {
34 m_FontGlobals.Clear(pDoc);
cpdf_pagemodule.h 23 void ClearStockFont(CPDF_Document* pDoc);
cpdf_form.cpp 17 CPDF_Form::CPDF_Form(CPDF_Document* pDoc,
21 m_pDocument = pDoc;
cpdf_tilingpattern.cpp 15 CPDF_TilingPattern::CPDF_TilingPattern(CPDF_Document* pDoc,
18 : CPDF_Pattern(TILING, pDoc, pPatternObj, parentMatrix) {
  /external/pdfium/core/fpdfapi/parser/
cfdf_document.cpp 23 auto pDoc = pdfium::MakeUnique<CFDF_Document>();
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;
cpdf_reference.cpp 13 CPDF_Reference::CPDF_Reference(CPDF_IndirectObjectHolder* pDoc, uint32_t objnum)
14 : m_pObjList(pDoc), m_RefObjNum(objnum) {}
76 void CPDF_Reference::SetRef(CPDF_IndirectObjectHolder* pDoc, uint32_t objnum) {
77 m_pObjList = pDoc;
  /external/pdfium/core/fpdfapi/render/
cpdf_transferfunc.cpp 12 CPDF_TransferFunc::CPDF_TransferFunc(CPDF_Document* pDoc) : m_pPDFDoc(pDoc) {}
cpdf_transferfunc.h 16 explicit CPDF_TransferFunc(CPDF_Document* pDoc);
  /external/pdfium/fpdfsdk/
fpdfedittext.cpp 26 CPDF_Document* pDoc = CPDFDocumentFromFPDFDocument(document);
27 if (!pDoc)
30 CPDF_Font* pFont = CPDF_Font::GetStockFont(pDoc, CFX_ByteStringC(font));
54 CPDF_Document* pDoc = CPDFDocumentFromFPDFDocument(document);
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->NewIndirect<CPDF_Stream>()
    [all...]
fpdfdoc.cpp 56 CPDF_Document* pDoc = page->m_pDocument;
57 std::unique_ptr<CPDF_LinkList>* pHolder = pDoc->LinksContext();
77 CPDF_Document* pDoc = CPDFDocumentFromFPDFDocument(document);
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...]
fpdf_ext.cpp 49 void CheckUnSupportAnnot(CPDF_Document* pDoc, const CPDF_Annot* pPDFAnnot) {
119 void CheckUnSupportError(CPDF_Document* pDoc, uint32_t err_code) {
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);
174 if (!pDoc)
177 CPDF_Dictionary* pRoot = pDoc->GetRoot();
fpdf_transformpage.cpp 129 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, pEndStream->GetObjNum())
    [all...]

Completed in 134 milliseconds

1 2 3 4 5