Home | History | Annotate | Download | only in text

Lines Matching refs:m_length

122         , m_length(strlen(buffer))
126 unsigned length() { return m_length; }
132 for (unsigned i = 0; i < m_length; ++i)
138 for (unsigned i = 0; i < m_length; ++i) {
146 unsigned m_length;
154 , m_length(strlen(reinterpret_cast<char*>(buffer)))
158 unsigned length() { return m_length; }
164 memcpy(destination, m_buffer, m_length * sizeof(LChar));
169 StringImpl::copyChars(destination, m_buffer, m_length);
174 unsigned m_length;
189 m_length = len;
192 unsigned length() { return m_length; }
203 memcpy(destination, m_buffer, m_length * sizeof(UChar));
208 unsigned m_length;
216 , m_length(strlen(buffer))
220 unsigned length() { return m_length; }
226 memcpy(destination, m_buffer, static_cast<size_t>(m_length) * sizeof(LChar));
231 for (unsigned i = 0; i < m_length; ++i) {
239 unsigned m_length;
247 , m_length(strlen(reinterpret_cast<const char*>(buffer)))
251 unsigned length() { return m_length; }
257 memcpy(destination, m_buffer, static_cast<size_t>(m_length) * sizeof(LChar));
262 StringImpl::copyChars(destination, m_buffer, m_length);
267 unsigned m_length;