HomeSort by relevance Sort by last modified time
    Searched refs:pObjs (Results 1 - 9 of 9) sorted by null

  /external/pdfium/core/src/fpdfapi/fpdf_parser/
fpdf_parser_objects.cpp 528 void CPDF_Array::SetAt(FX_DWORD i, CPDF_Object* pObj, CPDF_IndirectObjects* pObjs)
538 ASSERT(pObjs != NULL);
539 pObj = CPDF_Reference::Create(pObjs, pObj->GetObjNum());
543 void CPDF_Array::InsertAt(FX_DWORD index, CPDF_Object* pObj, CPDF_IndirectObjects* pObjs)
547 ASSERT(pObjs != NULL);
548 pObj = CPDF_Reference::Create(pObjs, pObj->GetObjNum());
552 void CPDF_Array::Add(CPDF_Object* pObj, CPDF_IndirectObjects* pObjs)
556 ASSERT(pObjs != NULL);
557 pObj = CPDF_Reference::Create(pObjs, pObj->GetObjNum());
796 void CPDF_Dictionary::SetAt(FX_BSTR key, CPDF_Object* pObj, CPDF_IndirectObjects* pObjs)
    [all...]
  /external/pdfium/core/include/fpdfapi/
fpdf_render.h 99 void AppendObjectList(CPDF_PageObjects* pObjs, const CFX_AffineMatrix* pObject2Device);
106 void DrawObjectList(CFX_RenderDevice* pDevice, CPDF_PageObjects* pObjs,
fpdf_objects.h 56 CPDF_Object* CloneRef(CPDF_IndirectObjects* pObjs) const;
369 void SetAt(FX_DWORD index, CPDF_Object* pObj, CPDF_IndirectObjects* pObjs = NULL);
372 void InsertAt(FX_DWORD index, CPDF_Object* pObj, CPDF_IndirectObjects* pObjs = NULL);
377 void Add(CPDF_Object* pObj, CPDF_IndirectObjects* pObjs = NULL);
479 void SetAt(FX_BSTR key, CPDF_Object* pObj, CPDF_IndirectObjects* pObjs = NULL);
  /external/pdfium/core/include/fpdftext/
fpdf_text.h 78 static IPDF_TextPage* CreateTextPage(const CPDF_PageObjects* pObjs, int flags = 0);
  /external/pdfium/core/src/reflow/
layoutprocessor_reflow.cpp 774 CPDF_PageObjects* pObjs = FX_NEW CPDF_PageObjects(FALSE);
775 if (NULL == pObjs) {
778 FX_POSITION pos = pObjs->GetLastObjectPosition();
779 pos = pObjs->InsertObject(pos, pObj);
783 ProcessUnitaryObjs(pObjs, reflowWidth, objMatrix);
784 delete pObjs;
    [all...]
reflowedpage.h 49 void ProcessUnitaryObjs(CPDF_PageObjects *pObjs, FX_FLOAT reflowWidth, CFX_AffineMatrix objMatrix);
  /external/pdfium/core/src/fpdfapi/fpdf_render/
fpdf_render.cpp 274 void CPDF_RenderStatus::RenderObjectList(const CPDF_PageObjects* pObjs, const CFX_AffineMatrix* pObj2Device)
284 FX_POSITION pos = pObjs->GetFirstObjectPosition();
287 CPDF_PageObject* pCurObj = pObjs->GetNextObject(pos);
    [all...]
render_int.h 101 void RenderObjectList(const CPDF_PageObjects* pObjs, const CFX_AffineMatrix* pObj2Device);
  /external/pdfium/core/src/fpdftext/
fpdf_text_int.cpp 46 IPDF_TextPage* IPDF_TextPage::CreateTextPage(const CPDF_PageObjects* pObjs, int flags)
48 CPDF_TextPage* pTextPage = FX_NEW CPDF_TextPage(pObjs, flags);
    [all...]

Completed in 277 milliseconds