HomeSort by relevance Sort by last modified time
    Searched full:pdoc (Results 26 - 50 of 81) sorted by null

12 3 4

  /external/pdfium/fpdfsdk/src/javascript/
JS_Object.cpp 21 CPDFSDK_Document* pDoc = pApp->GetCurrentDoc();
22 if(pDoc)
23 pDoc->KillFocusAnnot();
  /external/pdfium/core/src/fpdfdoc/
doc_ocg.cpp 49 static CPDF_Dictionary* FPDFDOC_OCG_GetConfig(CPDF_Document *pDoc, const CPDF_Dictionary *pOCGDict, FX_BSTR bsState)
51 FXSYS_assert(pDoc && pOCGDict);
52 CPDF_Dictionary *pOCProperties = pDoc->GetRoot()->GetDict(FX_BSTRC("OCProperties"));
94 CPDF_OCContext::CPDF_OCContext(CPDF_Document *pDoc, UsageType eUsageType)
96 FXSYS_assert(pDoc != NULL);
97 m_pDocument = pDoc;
doc_tagged.cpp 12 static FX_BOOL IsTagged(const CPDF_Document* pDoc)
14 CPDF_Dictionary* pCatalog = pDoc->GetRoot();
18 CPDF_StructTree* CPDF_StructTree::LoadPage(const CPDF_Document* pDoc, const CPDF_Dictionary* pPageDict)
20 if (!IsTagged(pDoc)) {
23 CPDF_StructTreeImpl* pTree = FX_NEW CPDF_StructTreeImpl(pDoc);
30 CPDF_StructTree* CPDF_StructTree::LoadDoc(const CPDF_Document* pDoc)
32 if (!IsTagged(pDoc)) {
35 CPDF_StructTreeImpl* pTree = FX_NEW CPDF_StructTreeImpl(pDoc);
42 CPDF_StructTreeImpl::CPDF_StructTreeImpl(const CPDF_Document* pDoc)
44 CPDF_Dictionary* pCatalog = pDoc->GetRoot();
    [all...]
tagged_int.h 14 CPDF_StructTreeImpl(const CPDF_Document* pDoc);
doc_basic.cpp 9 int CPDF_Dest::GetPageIndex(CPDF_Document* pDoc)
24 return pDoc->GetPageIndex(pPage->GetObjNum());
73 CPDF_NameTree::CPDF_NameTree(CPDF_Document* pDoc, FX_BSTR category)
75 m_pRoot = pDoc->GetRoot()->GetDict(FX_BSTRC("Names"))->GetDict(category);
227 CPDF_Array* CPDF_NameTree::LookupNamedDest(CPDF_Document* pDoc, FX_BSTR sName)
231 CPDF_Dictionary* pDests = pDoc->GetRoot()->GetDict(FX_BSTRC("Dests"));
  /external/pdfium/core/src/fpdfapi/fpdf_page/
fpdf_page_image.cpp 65 CPDF_Image::CPDF_Image(CPDF_Document* pDoc)
67 m_pDocument = pDoc;
fpdf_page_doc.cpp 22 virtual CPDF_DocPageData* CreateDocData(CPDF_Document* pDoc)
24 return FX_NEW CPDF_DocPageData(pDoc);
26 virtual void ReleaseDoc(CPDF_Document* pDoc);
27 virtual void ClearDoc(CPDF_Document* pDoc);
32 virtual void ClearStockFont(CPDF_Document* pDoc)
34 m_FontGlobals.Clear(pDoc);
68 void CPDF_PageModule::ReleaseDoc(CPDF_Document* pDoc)
70 delete pDoc->GetPageData();
72 void CPDF_PageModule::ClearDoc(CPDF_Document* pDoc)
74 pDoc->GetPageData()->Clear(FALSE);
    [all...]
fpdf_page_colors.cpp 265 virtual FX_BOOL v_Load(CPDF_Document* pDoc, CPDF_Array* pArray);
278 FX_BOOL CPDF_CalGray::v_Load(CPDF_Document* pDoc, CPDF_Array* pArray)
322 virtual FX_BOOL v_Load(CPDF_Document* pDoc, CPDF_Array* pArray);
337 FX_BOOL CPDF_CalRGB::v_Load(CPDF_Document* pDoc, CPDF_Array* pArray)
426 virtual FX_BOOL v_Load(CPDF_Document* pDoc, CPDF_Array* pArray);
435 FX_BOOL CPDF_LabCS::v_Load(CPDF_Document* pDoc, CPDF_Array* pArray)
536 virtual FX_BOOL v_Load(CPDF_Document* pDoc, CPDF_Array* pArray);
577 FX_BOOL CPDF_ICCBasedCS::v_Load(CPDF_Document* pDoc, CPDF_Array* pArray)
598 m_pProfile = pDoc->LoadIccProfile(pStream, m_nComponents);
605 CPDF_ColorSpace* alter_cs = CPDF_ColorSpace::Load(pDoc, pAlterCSObj);
    [all...]
fpdf_page_pattern.cpp 9 CPDF_TilingPattern::CPDF_TilingPattern(CPDF_Document* pDoc, CPDF_Object* pPatternObj, const CFX_AffineMatrix* parentMatrix) :
14 m_pDocument = pDoc;
51 CPDF_ShadingPattern::CPDF_ShadingPattern(CPDF_Document* pDoc, CPDF_Object* pPatternObj, FX_BOOL bShading, const CFX_AffineMatrix* parentMatrix) : CPDF_Pattern(parentMatrix)
55 m_pDocument = pDoc;
pageint.h 19 CPDF_Stream* ReadInlineStream(CPDF_Document* pDoc, CPDF_Dictionary* pDict, CPDF_Object* pCSObj, FX_BOOL bDecode);
130 void PrepareParse(CPDF_Document* pDoc, CPDF_Dictionary* pPageResources, CPDF_Dictionary* pParentResources,
485 virtual FX_BOOL v_Load(CPDF_Document* pDoc, CPDF_Array* pArray);
  /external/pdfium/fpdfsdk/src/pdfwindow/
PWL_FontMap.cpp 379 CPDF_Font* CPWL_FontMap::AddFontToDocument(CPDF_Document* pDoc, CFX_ByteString& sFontName, FX_BYTE nCharset)
382 return AddStandardFont(pDoc, sFontName);
384 return AddSystemFont(pDoc, sFontName, nCharset);
387 CPDF_Font* CPWL_FontMap::AddStandardFont(CPDF_Document* pDoc, CFX_ByteString& sFontName)
389 if (!pDoc) return NULL;
394 pFont = pDoc->AddStandardFont(sFontName, NULL);
398 pFont = pDoc->AddStandardFont(sFontName, &fe);
404 CPDF_Font* CPWL_FontMap::AddSystemFont(CPDF_Document* pDoc, CFX_ByteString& sFontName, FX_BYTE nCharset)
406 if (!pDoc) return NULL;
412 return m_pSystemHandler->AddNativeTrueTypeFontToPDF(pDoc, sFontName, nCharset);
    [all...]
  /external/pdfium/core/include/fpdfdoc/
fpdf_doc.h 54 CPDF_NameTree(CPDF_Document* pDoc, FX_BSTR category);
60 CPDF_Array* LookupNamedDest(CPDF_Document* pDoc, FX_BSTR sName);
80 CPDF_BookmarkTree(CPDF_Document* pDoc)
82 m_pDocument = pDoc;
160 int GetPageIndex(CPDF_Document* pDoc);
182 CPDF_OCContext(CPDF_Document *pDoc, UsageType eUsageType = View);
329 CPDF_Dest GetDest(CPDF_Document* pDoc) const;
353 CFX_ByteString GetURI(CPDF_Document* pDoc) const;
499 CPDF_DocJSActions(CPDF_Document* pDoc);
551 CPDF_LinkList(CPDF_Document* pDoc)
    [all...]
  /external/pdfium/fpdfsdk/src/
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...]
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();
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());
  /external/pdfium/fpdfsdk/include/
fx_systemhandler.h 67 virtual CPDF_Font* AddNativeTrueTypeFontToPDF(CPDF_Document* pDoc, CFX_ByteString sFontFaceName, FX_BYTE nCharset) = 0;
  /external/pdfium/fpdfsdk/include/javascript/
Document.h 163 void AttachDoc(CPDFSDK_Document* pDoc);
166 static FX_BOOL ExtractFileName(CPDFSDK_Document* pDoc, CFX_ByteString& strFileName);
167 static FX_BOOL ExtractFolderName(CPDFSDK_Document* pDoc, CFX_ByteString& strFolderName);
  /external/pdfium/core/include/fpdfapi/
fpdf_resource.h 61 static CPDF_Font* CreateFontF(CPDF_Document* pDoc, CPDF_Dictionary* pFontDict);
63 static CPDF_Font* GetStockFont(CPDF_Document* pDoc, FX_BSTR fontname);
590 static CPDF_ColorSpace* Load(CPDF_Document* pDoc, CPDF_Object* pCSObj);
658 virtual FX_BOOL v_Load(CPDF_Document* pDoc, CPDF_Array* pArray)
758 CPDF_TilingPattern(CPDF_Document* pDoc, CPDF_Object* pPatternObj, const CFX_AffineMatrix* parentMatrix);
782 CPDF_ShadingPattern(CPDF_Document* pDoc, CPDF_Object* pPatternObj, FX_BOOL bShading, const CFX_AffineMatrix* parentMatrix);
853 CPDF_Image(CPDF_Document* pDoc);
fpdf_serial.h 120 CPDF_Creator(CPDF_Document* pDoc);
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/plat-mac/lib-scriptpackages/Explorer/
Required_Suite.py 42 _subcode = 'pdoc'
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
mshtmhst.h 203 virtual HRESULT WINAPI ShowUI(DWORD dwID,IOleInPlaceActiveObject *pActiveObject,IOleCommandTarget *pCommandTarget,IOleInPlaceFrame *pFrame,IOleInPlaceUIWindow *pDoc) = 0;
225 HRESULT (WINAPI *ShowUI)(IDocHostUIHandler *This,DWORD dwID,IOleInPlaceActiveObject *pActiveObject,IOleCommandTarget *pCommandTarget,IOleInPlaceFrame *pFrame,IOleInPlaceUIWindow *pDoc);
249 #define IDocHostUIHandler_ShowUI(This,dwID,pActiveObject,pCommandTarget,pFrame,pDoc) (This)->lpVtbl->ShowUI(This,dwID,pActiveObject,pCommandTarget,pFrame,pDoc)
268 HRESULT WINAPI IDocHostUIHandler_ShowUI_Proxy(IDocHostUIHandler *This,DWORD dwID,IOleInPlaceActiveObject *pActiveObject,IOleCommandTarget *pCommandTarget,IOleInPlaceFrame *pFrame,IOleInPlaceUIWindow *pDoc);
312 HRESULT (WINAPI *ShowUI)(IDocHostUIHandler2 *This,DWORD dwID,IOleInPlaceActiveObject *pActiveObject,IOleCommandTarget *pCommandTarget,IOleInPlaceFrame *pFrame,IOleInPlaceUIWindow *pDoc);
337 #define IDocHostUIHandler2_ShowUI(This,dwID,pActiveObject,pCommandTarget,pFrame,pDoc) (This)->lpVtbl->ShowUI(This,dwID,pActiveObject,pCommandTarget,pFrame,pDoc)
  /external/pdfium/core/src/fpdfapi/fpdf_parser/
fpdf_parser_objects.cpp 323 CPDF_Object* CPDF_Object::CloneRef(CPDF_IndirectObjects* pDoc) const
329 return FX_NEW CPDF_Reference(pDoc, m_ObjNum);
583 void CPDF_Array::AddReference(CPDF_IndirectObjects* pDoc, FX_DWORD objnum)
586 Add(FX_NEW CPDF_Reference(pDoc, objnum));
881 void CPDF_Dictionary::SetAtReference(FX_BSTR key, CPDF_IndirectObjects* pDoc, FX_DWORD objnum)
883 SetAt(key, FX_NEW CPDF_Reference(pDoc, objnum));
885 void CPDF_Dictionary::AddReference(FX_BSTR key, CPDF_IndirectObjects* pDoc, FX_DWORD objnum)
887 AddValue(key, FX_NEW CPDF_Reference(pDoc, objnum));
    [all...]
  /external/pdfium/core/src/fpdfapi/fpdf_edit/
fpdf_edit_doc.cpp     [all...]
  /external/pdfium/core/src/fpdfapi/fpdf_render/
render_int.h 327 CPDF_ImageCache(CPDF_Document* pDoc, CPDF_Stream* pStream);
382 FX_BOOL Load(CPDF_Document* pDoc, const CPDF_Stream* pStream,
396 int StartLoadDIBSource(CPDF_Document* pDoc, const CPDF_Stream* pStream, FX_BOOL bHasMask,
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/plat-mac/lib-scriptpackages/Netscape/
Required_suite.py 42 _subcode = 'pdoc'

Completed in 1563 milliseconds

12 3 4