Searched defs:pObjs (Results 1 - 4 of 4) sorted by relevance

/external/pdfium/core/src/fpdfapi/fpdf_parser/
H A Dfpdf_parser_objects.cpp528 void CPDF_Array::SetAt(FX_DWORD i, CPDF_Object* pObj, CPDF_IndirectObjects* pObjs) argument
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) argument
547 ASSERT(pObjs != NULL);
548 pObj = CPDF_Reference::Create(pObjs, pObj->GetObjNum());
552 void CPDF_Array::Add(CPDF_Object* pObj, CPDF_IndirectObjects* pObjs) argument
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) argument
[all...]
/external/pdfium/core/src/fpdfapi/fpdf_render/
H A Dfpdf_render.cpp274 void CPDF_RenderStatus::RenderObjectList(const CPDF_PageObjects* pObjs, const CFX_AffineMatrix* pObj2Device) argument
284 FX_POSITION pos = pObjs->GetFirstObjectPosition();
287 CPDF_PageObject* pCurObj = pObjs->GetNextObject(pos);
1012 void CPDF_RenderContext::AppendObjectList(CPDF_PageObjects* pObjs, const CFX_AffineMatrix* pObject2Device) argument
1015 pItem->m_pObjectList = pObjs;
1068 void CPDF_RenderContext::DrawObjectList(CFX_RenderDevice* pDevice, CPDF_PageObjects* pObjs, argument
1071 AppendObjectList(pObjs, pObject2Device);
/external/pdfium/core/src/reflow/
H A Dlayoutprocessor_reflow.cpp774 CPDF_PageObjects* pObjs = FX_NEW CPDF_PageObjects(FALSE); local
775 if (NULL == pObjs) {
778 FX_POSITION pos = pObjs->GetLastObjectPosition();
779 pos = pObjs->InsertObject(pos, pObj);
783 ProcessUnitaryObjs(pObjs, reflowWidth, objMatrix);
784 delete pObjs;
1519 void CPDF_LayoutProcessor_Reflow::ProcessUnitaryObjs(CPDF_PageObjects *pObjs, FX_FLOAT reflowWidth, CFX_AffineMatrix objMatrix) argument
1521 if(!pObjs) {
1524 CFX_FloatRect ObjBBox = pObjs->CalcBoundingBox();
1541 FX_POSITION pos = pObjs
[all...]
/external/pdfium/core/src/fpdftext/
H A Dfpdf_text_int.cpp46 IPDF_TextPage* IPDF_TextPage::CreateTextPage(const CPDF_PageObjects* pObjs, int flags) argument
48 CPDF_TextPage* pTextPage = FX_NEW CPDF_TextPage(pObjs, flags);

Completed in 828 milliseconds