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

1234

/external/pdfium/core/src/fpdfdoc/
H A Ddoc_metadata.cpp10 CPDF_Metadata::CPDF_Metadata(CPDF_Document* pDoc) { argument
11 CPDF_Dictionary* pRoot = pDoc->GetRoot();
H A Ddoc_viewerPreferences.cpp9 CPDF_ViewerPreferences::CPDF_ViewerPreferences(CPDF_Document* pDoc) argument
10 : m_pDoc(pDoc) {}
H A Ddoc_link.cpp74 CPDF_Dest CPDF_Link::GetDest(CPDF_Document* pDoc) { argument
80 CPDF_NameTree name_tree(pDoc, "Dests");
82 return CPDF_Dest(name_tree.LookupNamedDest(pDoc, name));
H A Ddoc_ap.cpp13 FX_BOOL FPDF_GenerateAP(CPDF_Document* pDoc, CPDF_Dictionary* pAnnotDict) { argument
22 return CPVT_GenerateAP::GenerateTextFieldAP(pDoc, pAnnotDict);
26 ? CPVT_GenerateAP::GenerateComboBoxAP(pDoc, pAnnotDict)
27 : CPVT_GenerateAP::GenerateListBoxAP(pDoc, pAnnotDict);
45 CPVT_FontMap(CPDF_Document* pDoc,
55 static void GetAnnotSysPDFFont(CPDF_Document* pDoc,
69 CPVT_FontMap::CPVT_FontMap(CPDF_Document* pDoc, argument
73 : m_pDocument(pDoc),
80 void CPVT_FontMap::GetAnnotSysPDFFont(CPDF_Document* pDoc, argument
84 if (pDoc
263 GenerateWidgetAP(CPDF_Document* pDoc, CPDF_Dictionary* pAnnotDict, const int32_t& nWidgetType) argument
695 GenerateTextFieldAP(CPDF_Document* pDoc, CPDF_Dictionary* pAnnotDict) argument
699 GenerateComboBoxAP(CPDF_Document* pDoc, CPDF_Dictionary* pAnnotDict) argument
703 GenerateListBoxAP(CPDF_Document* pDoc, CPDF_Dictionary* pAnnotDict) argument
[all...]
H A Ddoc_action.cpp9 CPDF_Dest CPDF_Action::GetDest(CPDF_Document* pDoc) const {
22 CPDF_NameTree name_tree(pDoc, "Dests");
24 return CPDF_Dest(name_tree.LookupNamedDest(pDoc, name));
72 CFX_ByteString CPDF_Action::GetURI(CPDF_Document* pDoc) const {
81 CPDF_Dictionary* pRoot = pDoc->GetRoot();
261 CPDF_DocJSActions::CPDF_DocJSActions(CPDF_Document* pDoc) : m_pDocument(pDoc) {} argument
/external/pdfium/fpdfsdk/src/
H A Dfpdfdoc.cpp43 CPDF_Document* pDoc = page->m_pDocument;
44 CPDF_LinkList* pLinkList = (CPDF_LinkList*)pDoc->GetPrivateData(&THISMODULE);
47 pDoc->SetPrivateData(&THISMODULE, pLinkList, ReleaseLinkList);
56 CPDF_Document* pDoc = CPDFDocumentFromFPDFDocument(document); local
57 if (!pDoc)
59 CPDF_BookmarkTree tree(pDoc);
69 CPDF_Document* pDoc = CPDFDocumentFromFPDFDocument(document);
70 if (!pDoc)
72 CPDF_BookmarkTree tree(pDoc);
97 CPDF_Document* pDoc
[all...]
H A Dfpdf_transformpage.cpp123 CPDF_Document* pDoc = pPage->m_pDocument; local
124 if (!pDoc)
126 pDoc->AddIndirectObject(pStream);
131 pDoc->AddIndirectObject(pEndStream);
136 CPDF_Reference* pRef = new CPDF_Reference(pDoc, pStream->GetObjNum());
138 pContentArray->AddReference(pDoc, pEndStream);
144 CPDF_Reference* pRef = new CPDF_Reference(pDoc, pStream->GetObjNum());
146 pContentArray->AddReference(pDoc, pEndStream);
149 pContentArray->AddReference(pDoc, pStream->GetObjNum());
150 pContentArray->AddReference(pDoc, pDirectOb
297 CPDF_Document* pDoc = pPage->m_pDocument; local
[all...]
H A Dfpdfview.cpp408 CPDF_Document* pDoc = NULL; local
409 pDoc = pParser ? pParser->GetDocument() : NULL;
410 CheckUnSupportError(pDoc, err_code);
426 CPDF_Document* pDoc = NULL; local
427 pDoc = pParser ? pParser->GetDocument() : NULL;
428 CheckUnSupportError(pDoc, err_code);
438 CPDF_Document* pDoc = CPDFDocumentFromFPDFDocument(doc); local
439 if (!pDoc)
442 CPDF_Parser* pParser = pDoc->GetParser();
453 CPDF_Document* pDoc local
466 CPDF_Document* pDoc = CPDFDocumentFromFPDFDocument(document); local
475 UnderlyingDocumentType* pDoc = UnderlyingFromFPDFDocument(document); local
481 UnderlyingDocumentType* pDoc = UnderlyingFromFPDFDocument(document); local
974 UnderlyingDocumentType* pDoc = UnderlyingFromFPDFDocument(document); local
1002 CPDF_Document* pDoc = CPDFDocumentFromFPDFDocument(document); local
1010 CPDF_Document* pDoc = CPDFDocumentFromFPDFDocument(document); local
1019 CPDF_Document* pDoc = CPDFDocumentFromFPDFDocument(document); local
1028 CPDF_Document* pDoc = CPDFDocumentFromFPDFDocument(document); local
1043 CPDF_Document* pDoc = CPDFDocumentFromFPDFDocument(document); local
[all...]
H A Dfpdfeditpage.cpp25 CPDF_Document* pDoc = new CPDF_Document; local
26 pDoc->CreateNewDoc();
43 pInfoDict = pDoc->GetInfo();
50 return FPDFDocumentFromCPDFDocument(pDoc);
54 CPDF_Document* pDoc = CPDFDocumentFromFPDFDocument(document); local
55 if (!pDoc || page_index < 0 || page_index >= pDoc->GetPageCount())
58 pDoc->DeletePage(page_index);
65 CPDF_Document* pDoc = CPDFDocumentFromFPDFDocument(document); local
66 if (!pDoc)
[all...]
H A Dfpdf_ext.cpp64 void CheckUnSupportAnnot(CPDF_Document* pDoc, const CPDF_Annot* pPDFAnnot) { argument
135 void CheckUnSupportError(CPDF_Document* pDoc, FX_DWORD err_code) { argument
141 if (!pDoc)
145 CPDF_Dictionary* pRootDict = pDoc->GetRoot();
176 CPDF_Metadata metaData(pDoc);
183 CPDF_InterForm* pInterForm = new CPDF_InterForm(pDoc, FALSE);
192 CPDF_Document* pDoc = CPDFDocumentFromFPDFDocument(document); local
193 if (!pDoc)
196 CPDF_Dictionary* pRoot = pDoc->GetRoot();
H A Dfpdfeditimg.cpp13 CPDF_Document* pDoc = CPDFDocumentFromFPDFDocument(document); local
14 if (!pDoc)
17 CPDF_Image* pImg = new CPDF_Image(pDoc);
H A Dfpdfppo.cpp27 CPDF_Document* pDoc,
29 FX_DWORD GetNewObjId(CPDF_Document* pDoc,
203 CPDF_Document* pDoc,
208 FX_DWORD newobjnum = GetNewObjId(pDoc, pObjNumberMap, pReference);
211 pReference->SetRef(pDoc, newobjnum);
226 if (!UpdateReference(pNextObj, pDoc, pObjNumberMap))
241 if (!UpdateReference(pNextObj, pDoc, pObjNumberMap))
250 if (!UpdateReference(pDict, pDoc, pObjNumberMap))
264 FX_DWORD CPDF_PageOrganizer::GetNewObjId(CPDF_Document* pDoc, argument
299 dwNewObjNum = pDoc
202 UpdateReference(CPDF_Object* pObj, CPDF_Document* pDoc, ObjectNumberMap* pObjNumberMap) argument
[all...]
/external/pdfium/core/src/fpdfapi/fpdf_parser/
H A Dfpdf_parser_fdf.cpp22 CFDF_Document* pDoc = new CFDF_Document; local
23 pDoc->m_pRootDict = new CPDF_Dictionary;
24 pDoc->AddIndirectObject(pDoc->m_pRootDict);
26 pDoc->m_pRootDict->SetAt("FDF", pFDFDict);
27 return pDoc;
33 CFDF_Document* pDoc = new CFDF_Document; local
34 pDoc->ParseStream(pFile, bOwnFile);
35 if (!pDoc->m_pRootDict) {
36 delete pDoc;
[all...]
/external/pdfium/xfa/src/fxfa/src/app/
H A Dxfa_ffapp.cpp140 CXFA_FFDoc* pDoc = new CXFA_FFDoc(this, pProvider); local
141 FX_BOOL bSuccess = pDoc->OpenDoc(pStream, bTakeOverFile);
143 delete pDoc;
144 pDoc = NULL;
146 return pDoc;
153 CXFA_FFDoc* pDoc = new CXFA_FFDoc(this, pProvider); local
154 FX_BOOL bSuccess = pDoc->OpenDoc(pPDFDoc);
156 delete pDoc;
157 pDoc = NULL;
159 return pDoc;
[all...]
/external/pdfium/fpdfsdk/src/javascript/
H A DJS_Context.h26 void OnDoc_Open(CPDFSDK_Document* pDoc,
28 void OnDoc_WillPrint(CPDFSDK_Document* pDoc) override;
29 void OnDoc_DidPrint(CPDFSDK_Document* pDoc) override;
30 void OnDoc_WillSave(CPDFSDK_Document* pDoc) override;
31 void OnDoc_DidSave(CPDFSDK_Document* pDoc) override;
32 void OnDoc_WillClose(CPDFSDK_Document* pDoc) override;
H A DJS_Context.cpp80 void CJS_Context::OnDoc_Open(CPDFSDK_Document* pDoc, argument
82 m_pEventHandler->OnDoc_Open(pDoc, strTargetName);
85 void CJS_Context::OnDoc_WillPrint(CPDFSDK_Document* pDoc) { argument
86 m_pEventHandler->OnDoc_WillPrint(pDoc);
89 void CJS_Context::OnDoc_DidPrint(CPDFSDK_Document* pDoc) { argument
90 m_pEventHandler->OnDoc_DidPrint(pDoc);
93 void CJS_Context::OnDoc_WillSave(CPDFSDK_Document* pDoc) { argument
94 m_pEventHandler->OnDoc_WillSave(pDoc);
97 void CJS_Context::OnDoc_DidSave(CPDFSDK_Document* pDoc) { argument
98 m_pEventHandler->OnDoc_DidSave(pDoc);
101 OnDoc_WillClose(CPDFSDK_Document* pDoc) argument
[all...]
H A DJS_EventHandler.h68 void OnDoc_Open(CPDFSDK_Document* pDoc, const CFX_WideString& strTargetName);
69 void OnDoc_WillPrint(CPDFSDK_Document* pDoc);
70 void OnDoc_DidPrint(CPDFSDK_Document* pDoc);
71 void OnDoc_WillSave(CPDFSDK_Document* pDoc);
72 void OnDoc_DidSave(CPDFSDK_Document* pDoc);
73 void OnDoc_WillClose(CPDFSDK_Document* pDoc);
75 void OnPage_Open(CPDFSDK_Document* pDoc);
76 void OnPage_Close(CPDFSDK_Document* pDoc);
H A DJS_EventHandler.cpp49 void CJS_EventHandler::OnDoc_Open(CPDFSDK_Document* pDoc, argument
53 m_pTargetDoc = pDoc;
57 void CJS_EventHandler::OnDoc_WillPrint(CPDFSDK_Document* pDoc) { argument
60 m_pTargetDoc = pDoc;
63 void CJS_EventHandler::OnDoc_DidPrint(CPDFSDK_Document* pDoc) { argument
66 m_pTargetDoc = pDoc;
69 void CJS_EventHandler::OnDoc_WillSave(CPDFSDK_Document* pDoc) { argument
71 m_pTargetDoc = pDoc;
74 void CJS_EventHandler::OnDoc_DidSave(CPDFSDK_Document* pDoc) { argument
77 m_pTargetDoc = pDoc;
80 OnDoc_WillClose(CPDFSDK_Document* pDoc) argument
86 OnPage_Open(CPDFSDK_Document* pDoc) argument
92 OnPage_Close(CPDFSDK_Document* pDoc) argument
98 OnPage_InView(CPDFSDK_Document* pDoc) argument
104 OnPage_OutView(CPDFSDK_Document* pDoc) argument
[all...]
/external/parameter-framework/upstream/xmlserializer/
H A DXmlDocSource.h56 * @param[out] pDoc a pointer to the xml document that will be filled by the class
60 CXmlDocSource(_xmlDoc *pDoc, bool bValidateWithSchema = false, _xmlNode *pRootNode = NULL);
65 * @param[out] pDoc a pointer to the xml document that will be filled by the class
71 CXmlDocSource(_xmlDoc *pDoc, bool bValidateWithSchema,
H A DXmlDocSource.cpp44 CXmlDocSource::CXmlDocSource(_xmlDoc *pDoc, bool bValidateWithSchema, _xmlNode *pRootNode) argument
45 : _pDoc(pDoc), _pRootNode(pRootNode), _strRootElementType(""), _strRootElementName(""),
50 CXmlDocSource::CXmlDocSource(_xmlDoc *pDoc, bool bValidateWithSchema, argument
53 : _pDoc(pDoc), _pRootNode(xmlDocGetRootElement(pDoc)), _strRootElementType(strRootElementType),
/external/pdfium/core/include/fpdfapi/
H A Dfpdf_module.h92 virtual CPDF_DocPageData* CreateDocData(CPDF_Document* pDoc) = 0;
96 virtual void ClearStockFont(CPDF_Document* pDoc) = 0;
105 virtual CPDF_DocRenderData* CreateDocData(CPDF_Document* pDoc) = 0;
/external/pdfium/core/include/fpdfdoc/
H A Dfpdf_ap.h78 static FX_BOOL GenerateTextFieldAP(CPDF_Document* pDoc,
81 static FX_BOOL GenerateComboBoxAP(CPDF_Document* pDoc,
84 static FX_BOOL GenerateListBoxAP(CPDF_Document* pDoc,
/external/pdfium/core/src/fpdfapi/fpdf_page/
H A Dfpdf_page_colors.cpp66 CPDF_DeviceCS::CPDF_DeviceCS(CPDF_Document* pDoc, int family) argument
67 : CPDF_ColorSpace(pDoc, family, ComponentsForFamily(family)) {}
311 explicit CPDF_CalGray(CPDF_Document* pDoc) argument
312 : CPDF_ColorSpace(pDoc, PDFCS_CALGRAY, 1) {}
313 FX_BOOL v_Load(CPDF_Document* pDoc, CPDF_Array* pArray) override;
335 FX_BOOL CPDF_CalGray::v_Load(CPDF_Document* pDoc, CPDF_Array* pArray) { argument
386 explicit CPDF_CalRGB(CPDF_Document* pDoc) argument
387 : CPDF_ColorSpace(pDoc, PDFCS_CALRGB, 3) {}
388 FX_BOOL v_Load(CPDF_Document* pDoc, CPDF_Array* pArray) override;
411 FX_BOOL CPDF_CalRGB::v_Load(CPDF_Document* pDoc, CPDF_Arra argument
505 CPDF_LabCS(CPDF_Document* pDoc) argument
531 v_Load(CPDF_Document* pDoc, CPDF_Array* pArray) argument
[all...]
/external/pdfium/core/include/fpdftext/
H A Dfpdf_text.h26 CPDF_Document* pDoc,
31 CPDF_Document* pDoc,
36 CPDF_Document* pDoc,
39 CFX_WideString PDF_GetFirstTextLine_Unicode(CPDF_Document* pDoc,
/external/pdfium/fpdfsdk/include/fpdfxfa/
H A Dfpdfxfa_page.h12 CPDFXFA_Page(CPDFXFA_Document* pDoc, int page_index);

Completed in 376 milliseconds

1234