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

  /external/pdfium/core/fxcrt/
fx_basic_buffer.cpp 17 : m_AllocStep(0), m_AllocSize(0), m_DataSize(0) {}
20 : m_AllocStep(0), m_AllocSize(size), m_DataSize(size) {
27 if (!m_pBuffer || start_index < 0 || count < 0 || count > m_DataSize ||
28 start_index > m_DataSize - count) {
33 m_DataSize - start_index - count);
34 m_DataSize -= count;
38 m_DataSize = 0;
42 m_DataSize = 0;
50 ExpandBuf(size - m_DataSize);
54 FX_SAFE_STRSIZE new_size = m_DataSize;
    [all...]
fx_basic.h 30 FX_STRSIZE GetSize() const { return m_DataSize; }
41 m_pBuffer.get()[m_DataSize++] = byte;
55 FX_STRSIZE m_DataSize;
61 FX_STRSIZE GetLength() const { return m_DataSize; }
63 return CFX_ByteString(m_pBuffer.get(), m_DataSize);
66 return CFX_ByteStringC(m_pBuffer.get(), m_DataSize);
86 FX_STRSIZE GetLength() const { return m_DataSize / sizeof(FX_WCHAR); }
93 m_DataSize / sizeof(FX_WCHAR));
97 m_DataSize / sizeof(FX_WCHAR));

Completed in 195 milliseconds