Home
last modified time | relevance | path

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

/external/pdfium/core/fxcrt/
Dfx_extension.cpp154 CFX_ArrayTemplate<uint8_t*> m_Blocks; member in __anon11accc5e0111::CFX_MemoryStream
178 m_Blocks.Add(pBuffer); in CFX_MemoryStream()
185 for (int32_t i = 0; i < m_Blocks.GetSize(); i++) { in ~CFX_MemoryStream()
186 FX_Free(m_Blocks[i]); in ~CFX_MemoryStream()
189 m_Blocks.RemoveAll(); in ~CFX_MemoryStream()
219 FXSYS_memcpy(buffer, m_Blocks[0] + (size_t)offset, size); in ReadBlock()
229 FXSYS_memcpy(buffer, m_Blocks[(int)nStartBlock] + (size_t)offset, nRead); in ReadBlock()
264 if (m_Blocks.GetSize() < 1) { in WriteBlock()
266 m_Blocks.Add(block); in WriteBlock()
268 m_Blocks[0] = FX_Realloc(uint8_t, m_Blocks[0], m_nTotalSize); in WriteBlock()
[all …]
/external/pdfium/xfa/fxfa/app/
Dcxfa_textlayout.cpp282 m_Blocks.RemoveAll(); in StartLayout()
307 int32_t iBlockCount = m_Blocks.GetSize(); in DoLayout()
333 iLineIndex = m_Blocks.ElementAt(iBlockIndex * 2); in DoLayout()
335 iLineIndex = m_Blocks.ElementAt(iBlockCount - 1) + in DoLayout()
336 m_Blocks.ElementAt(iBlockCount - 2); in DoLayout()
354 m_Blocks.SetAt(iBlockIndex * 2, iLineIndex); in DoLayout()
355 m_Blocks.SetAt(iBlockIndex * 2 + 1, i - iLineIndex); in DoLayout()
357 m_Blocks.Add(iLineIndex); in DoLayout()
358 m_Blocks.Add(i - iLineIndex); in DoLayout()
383 int32_t iCount = m_Blocks.GetSize() / 2; in CountBlocks()
[all …]
Dcxfa_textlayout.h63 CFX_ArrayTemplate<int32_t> m_Blocks; variable
Dxfa_fftext.cpp84 pTextLayout->m_Blocks.RemoveAll(); in PerformLayout()