Home
last modified time | relevance | path

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

/external/pdfium/core/fxcrt/
Dcfx_string_c_template.h24 CFX_StringCTemplate() : m_Ptr(nullptr), m_Length(0) {} in CFX_StringCTemplate()
30 m_Length(ptr ? FXSYS_len(ptr) : 0) {} in CFX_StringCTemplate()
34 m_Length(len == -1 ? FXSYS_len(ptr) : len) {} in CFX_StringCTemplate()
41 : m_Ptr(ptr), m_Length(size) {} in m_Ptr()
48 m_Length = 1; in CFX_StringCTemplate()
53 m_Length = src.m_Length; in CFX_StringCTemplate()
58 m_Length = src ? FXSYS_len(src) : 0;
64 m_Length = src.m_Length;
69 return FXSYS_len(ptr) == m_Length &&
70 FXSYS_cmp(ptr, reinterpret_cast<const CharType*>(m_Ptr), m_Length) ==
[all …]
Dfx_basic_buffer.cpp226 : m_Length(0), m_pFile(nullptr) {} in CFX_FileBufferArchive()
231 m_Length = 0; in Clear()
237 size_t nRemaining = m_Length; in Flush()
238 m_Length = 0; in Flush()
256 size_t buf_size = std::min(kBufSize - m_Length, temp_size); in AppendBlock()
257 FXSYS_memcpy(m_pBuffer.get() + m_Length, buffer, buf_size); in AppendBlock()
258 m_Length += buf_size; in AppendBlock()
259 if (m_Length == kBufSize) { in AppendBlock()
Dfx_basic.h129 size_t m_Length; variable