HomeSort by relevance Sort by last modified time
    Searched defs:pDoc (Results 1 - 17 of 17) sorted by null

  /external/pdfium/fpdfsdk/src/
fpdfsave.cpp 59 CPDF_Document* pDoc = (CPDF_Document*)document;
60 if (!pDoc)
68 CPDF_Creator FileMaker(pDoc);
fpdfdoc.cpp 36 CPDF_Document* pDoc = (CPDF_Document*)document;
37 CPDF_BookmarkTree tree(pDoc);
49 CPDF_Document* pDoc = (CPDF_Document*)document;
50 CPDF_Dest dest = Bookmark.GetDest(pDoc);
56 return Action.GetDest(pDoc);
92 CPDF_Document* pDoc = (CPDF_Document*)document;
95 return Action.GetDest(pDoc);
103 CPDF_Document* pDoc = (CPDF_Document*)document;
106 CFX_ByteString path = Action.GetURI(pDoc);
117 CPDF_Document* pDoc = (CPDF_Document*)document;
    [all...]
fpdfeditpage.cpp 20 CPDF_Document* pDoc = FX_NEW CPDF_Document;
21 if (!pDoc)
23 pDoc->CreateNewDoc();
42 pInfoDict = pDoc->GetInfo();
54 return pDoc;
59 CPDF_Document* pDoc = (CPDF_Document*)document;
60 if (pDoc == NULL)
62 if (page_index < 0 || page_index >= pDoc->GetPageCount())
65 pDoc->DeletePage(page_index);
74 CPDF_Document* pDoc = (CPDF_Document*)document;
    [all...]
fpdf_transformpage.cpp 108 CPDF_Document* pDoc = pPage->m_pDocument;
109 if(!pDoc)
111 pDoc->AddIndirectObject(pStream);
116 pDoc->AddIndirectObject(pEndStream);
122 CPDF_Reference* pRef = FX_NEW CPDF_Reference(pDoc, pStream->GetObjNum());
124 pContentArray->AddReference(pDoc,pEndStream);
136 CPDF_Reference* pRef = FX_NEW CPDF_Reference(pDoc, pStream->GetObjNum());
138 pContentArray->AddReference(pDoc,pEndStream);
144 pContentArray->AddReference(pDoc,pStream->GetObjNum());
145 pContentArray->AddReference(pDoc,pDirectObj->GetObjNum());
    [all...]
fpdfformfill.cpp 83 // CPDF_Document * pDoc = pPage->m_pDocument;
249 // CPDF_Document* pDoc = pPage->m_pDocument;
383 CPDF_Document* pDoc = pSDKDoc->GetDocument();
384 CPDF_Dictionary* pDic = pDoc->GetRoot();
fpdfview.cpp 114 CPDF_Document* pDoc, // [IN] The PDF document
290 extern void CheckUnSupportError(CPDF_Document * pDoc, FX_DWORD err_code);
321 CPDF_Document * pDoc = NULL;
322 pDoc = pParser?pParser->GetDocument():NULL;
323 CheckUnSupportError(pDoc, err_code);
345 CPDF_Document * pDoc = NULL;
346 pDoc = pParser?pParser->GetDocument():NULL;
347 CheckUnSupportError(pDoc, err_code);
361 CPDF_Document* pDoc = (CPDF_Document*)doc;
362 CPDF_Parser* pParser = (CPDF_Parser*)pDoc->GetParser();
    [all...]
fsdk_baseannot.cpp 1043 CPDF_Document* pDoc = m_pPageView->GetPDFDocument();
1044 ASSERT(pDoc != NULL);
1047 FX_INT32 objnum = pDoc->AddIndirectObject(pStream);
1048 //pAPDict->SetAtReference(sAPType, pDoc, objnum);
1050 pParentDict->SetAtReference(sAPType, pDoc, objnum);
1113 CPDF_Document* pDoc = m_pPageView->GetPDFDocument();
1114 ASSERT(pDoc != NULL);
1117 pDoc->AddIndirectObject(action.m_pDict);
1118 m_pAnnot->m_pAnnotDict->SetAtReference("A", pDoc, action.m_pDict->GetObjNum());
fsdk_mgr.cpp 54 virtual CPDF_Font* AddNativeTrueTypeFontToPDF(CPDF_Document* pDoc, CFX_ByteString sFontFaceName, FX_BYTE nCharset);
184 CPDF_Font* CFX_SystemHandler::AddNativeTrueTypeFontToPDF(CPDF_Document* pDoc, CFX_ByteString sFontFaceName,
187 if(pDoc)
191 CPDF_Font* pFont = pDoc->AddFont(pFXFont,nCharset,FALSE);
221 CPDFDoc_Environment::CPDFDoc_Environment(CPDF_Document * pDoc):m_pInfo(NULL),m_pIFormFiller(NULL),
223 m_pSDKDoc(NULL), m_pPDFDoc(pDoc)
322 CPDFSDK_Document::CPDFSDK_Document(CPDF_Document* pDoc,CPDFDoc_Environment* pEnv):m_pDoc(pDoc),
958 extern void CheckUnSupportAnnot(CPDF_Document * pDoc, CPDF_Annot* pPDFAnnot);
973 CPDF_Document * pDoc = this->GetPDFDocument();
    [all...]
fsdk_baseform.cpp 645 CPDFSDK_Document* pDoc = m_pInterForm->GetDocument();
646 ASSERT(pDoc != NULL);
647 CPDFDoc_Environment* pEnv = pDoc->GetEnv();
1048 CPDFSDK_Document* pDoc = m_pInterForm->GetDocument();
1049 ASSERT(pDoc != NULL);
1050 CPDFDoc_Environment* pEnv = pDoc->GetEnv();
1126 CPDFSDK_Document* pDoc = m_pInterForm->GetDocument();
1127 ASSERT(pDoc != NULL);
1128 CPDFDoc_Environment* pEnv = pDoc->GetEnv();
1218 CPDFSDK_Document* pDoc = m_pInterForm->GetDocument();
    [all...]
  /external/pdfium/fpdfsdk/src/javascript/
JS_Object.cpp 21 CPDFSDK_Document* pDoc = pApp->GetCurrentDoc();
22 if(pDoc)
23 pDoc->KillFocusAnnot();
app.cpp 158 CPDFSDK_Document* pDoc = pApp->GetCurrentDoc();
159 if (pDoc)
163 if (pDoc == pCurDoc)
179 // pDocument->AttachDoc(pDoc);
217 if (CPDFSDK_Document* pDoc = pApp->GetCurrentDoc())
219 CPDFSDK_InterForm* pInterForm = (CPDFSDK_InterForm*)pDoc->GetInterForm();
Document.cpp 148 Document* pDoc = (Document*)GetEmbedObject();
149 ASSERT(pDoc != NULL);
151 pDoc->AttachDoc(pContext->GetReaderDocument());
152 pDoc->SetIsolate(pContext->GetJSRuntime()->GetIsolate());
923 void Document::AttachDoc(CPDFSDK_Document *pDoc)
925 m_pDocument = pDoc;
933 FX_BOOL Document::ExtractFileName(CPDFSDK_Document *pDoc,CFX_ByteString &strFileName)
938 FX_BOOL Document::ExtractFolderName(CPDFSDK_Document *pDoc,CFX_ByteString &strFolderName)
    [all...]
Field.cpp 287 CPDFSDK_Document* pDoc = pInterForm->GetDocument();
289 ASSERT(pDoc != NULL);
290 pDoc->UpdateAllViews(NULL, pWidget);
332 CPDFSDK_Document* pDoc = pInterForm->GetDocument();
333 ASSERT(pDoc != NULL);
334 pDoc->UpdateAllViews(NULL, pWidget);
    [all...]
  /external/pdfium/core/src/fpdfapi/fpdf_parser/
fpdf_parser_fdf.cpp 22 CFDF_Document* pDoc = FX_NEW CFDF_Document;
23 pDoc->m_pRootDict = FX_NEW CPDF_Dictionary;
24 pDoc->AddIndirectObject(pDoc->m_pRootDict);
26 pDoc->m_pRootDict->SetAt(FX_BSTRC("FDF"), pFDFDict);
27 return pDoc;
42 CFDF_Document* pDoc = FX_NEW CFDF_Document;
43 pDoc->ParseStream(pFile, bOwnFile);
44 if (pDoc->m_pRootDict == NULL) {
45 delete pDoc;
    [all...]
  /external/pdfium/fpdfsdk/src/formfiller/
FFL_FormFiller.cpp 296 CPDFSDK_Document * pDoc = m_pApp->GetCurrentDoc();
297 CPDFSDK_PageView* pPageView = pDoc->GetPageView(pPage);
  /external/pdfium/core/src/fpdfdoc/
doc_form.cpp     [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.swt.win32.win32.x86_3.6.1.v3657a.jar 

Completed in 760 milliseconds