Home
last modified time | relevance | path

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

/external/pdfium/core/include/fxcrt/
Dfx_string.h29 m_Length = 0; in CFX_ByteStringC()
34 m_Length = size; in CFX_ByteStringC()
39 m_Length = ptr ? FXSYS_strlen(ptr) : 0; in CFX_ByteStringC()
51 m_Length = 1; in CFX_ByteStringC()
56 m_Length = (len == -1) ? FXSYS_strlen(ptr) : len; in CFX_ByteStringC()
61 m_Length = src.m_Length; in CFX_ByteStringC()
68 m_Length = m_Ptr ? FXSYS_strlen(src) : 0;
74 m_Length = src.m_Length;
81 return FXSYS_strlen(ptr) == m_Length &&
82 FXSYS_memcmp(ptr, m_Ptr, m_Length) == 0;
[all …]
Dfx_basic.h224 FX_STRSIZE m_Length; variable
/external/pdfium/core/src/fxcrt/
Dfx_basic_buffer.cpp385 : m_BufSize(size), m_pBuffer(NULL), m_Length(0) {} in IFX_BufferArchive()
387 m_Length = 0; in Clear()
392 FX_BOOL bRet = DoWork(m_pBuffer, m_Length); in Flush()
393 m_Length = 0; in Flush()
406 FX_STRSIZE buf_size = std::min(m_BufSize - m_Length, (FX_STRSIZE)temp_size); in AppendBlock()
407 FXSYS_memcpy(m_pBuffer + m_Length, buffer, buf_size); in AppendBlock()
408 m_Length += buf_size; in AppendBlock()
409 if (m_Length == m_BufSize) { in AppendBlock()
Dfx_basic_bstring.cpp1027 if (m_Length == 0) { in GetID()
1030 if (start_pos < 0 || start_pos >= m_Length) { in GetID()
1034 if (start_pos + 4 > m_Length) { in GetID()
1035 for (FX_STRSIZE i = 0; i < m_Length - start_pos; i++) { in GetID()
1038 strid = strid << ((4 - m_Length + start_pos) * 8); in GetID()