Home
last modified time | relevance | path

Searched refs:m_ObjectList (Results 1 – 4 of 4) sorted by relevance

/external/pdfium/core/include/fpdfapi/
Dfpdf_page.h38 return m_ObjectList.GetHeadPosition(); in GetFirstObjectPosition()
42 return m_ObjectList.GetTailPosition(); in GetLastObjectPosition()
46 return (CPDF_PageObject*)m_ObjectList.GetNext(pos); in GetNextObject()
50 return (CPDF_PageObject*)m_ObjectList.GetPrev(pos); in GetPrevObject()
54 return (CPDF_PageObject*)m_ObjectList.GetAt(pos); in GetObjectAt()
57 FX_DWORD CountObjects() const { return m_ObjectList.GetCount(); } in CountObjects()
92 CFX_PtrList m_ObjectList; variable
/external/pdfium/core/src/fpdfapi/fpdf_page/
Dfpdf_page.cpp676 m_ObjectList(128), in CPDF_PageObjects()
687 FX_POSITION pos = m_ObjectList.GetHeadPosition(); in ~CPDF_PageObjects()
689 delete (CPDF_PageObject*)m_ObjectList.GetNext(pos); in ~CPDF_PageObjects()
706 return m_ObjectList.AddHead(pNewObject); in InsertObject()
708 return m_ObjectList.InsertAfter(posInsertAfter, pNewObject); in InsertObject()
712 FX_POSITION pos = m_ObjectList.GetHeadPosition(); in GetObjectIndex()
714 CPDF_PageObject* pThisObj = (CPDF_PageObject*)m_ObjectList.GetNext(pos); in GetObjectIndex()
723 FX_POSITION pos = m_ObjectList.FindIndex(index); in GetObjectByIndex()
724 return pos ? static_cast<CPDF_PageObject*>(m_ObjectList.GetAt(pos)) : nullptr; in GetObjectByIndex()
727 FX_POSITION pos = m_ObjectList.GetHeadPosition(); in Transform()
[all …]
Dfpdf_page_parser.cpp721 m_pObjectList->m_ObjectList.AddTail(pFormObj); in AddForm()
745 m_pObjectList->m_ObjectList.AddTail(pImageObj); in AddImage()
1097 m_pObjectList->m_ObjectList.AddTail(pObj); in Handle_ShadeFill()
1264 m_pObjectList->m_ObjectList.AddTail(pText); in AddTextObject()
1479 m_pObjectList->m_ObjectList.AddTail(pPathObj); in AddPathObject()
Dfpdf_page_parser_old.cpp1067 FX_POSITION pos = m_pObjects->m_ObjectList.GetHeadPosition(); in Continue()
1070 (CPDF_PageObject*)m_pObjects->m_ObjectList.GetNext(pos); in Continue()