Home | History | Annotate | Download | only in text

Lines Matching refs:destination

59     void writeTo(LChar* destination)
61 *destination = m_buffer;
64 void writeTo(UChar* destination) { *destination = m_buffer; }
82 void writeTo(LChar* destination)
84 *destination = m_buffer;
87 void writeTo(UChar* destination) { *destination = m_buffer; }
105 void writeTo(LChar* destination)
108 *destination = static_cast<LChar>(m_buffer);
111 void writeTo(UChar* destination) { *destination = m_buffer; }
130 void writeTo(LChar* destination)
133 destination[i] = static_cast<LChar>(m_buffer[i]);
136 void writeTo(UChar* destination)
140 destination[i] = c;
162 void writeTo(LChar* destination)
164 memcpy(destination, m_buffer, m_length * sizeof(LChar));
167 void writeTo(UChar* destination)
169 StringImpl::copyChars(destination, m_buffer, m_length);
201 void writeTo(UChar* destination)
203 memcpy(destination, m_buffer, m_length * sizeof(UChar));
224 void writeTo(LChar* destination)
226 memcpy(destination, m_buffer, static_cast<size_t>(m_length) * sizeof(LChar));
229 void writeTo(UChar* destination)
233 destination[i] = c;
255 void writeTo(LChar* destination)
257 memcpy(destination, m_buffer, static_cast<size_t>(m_length) * sizeof(LChar));
260 void writeTo(UChar* destination)
262 StringImpl::copyChars(destination, m_buffer, m_length);
282 void writeTo(LChar* destination)
285 destination[i] = static_cast<unsigned char>(m_buffer[i]);
288 void writeTo(UChar* destination)
291 destination[i] = static_cast<unsigned char>(m_buffer[i]);
310 void writeTo(LChar* destination)
313 destination[i] = m_buffer[i];
316 void writeTo(UChar* destination)
319 destination[i] = m_buffer[i];
338 void writeTo(LChar* destination)
345 destination[i] = data[i];
350 void writeTo(UChar* destination)
357 destination[i] = data[i];
361 destination[i] = data[i];
383 void writeTo(LChar* destination) { m_adapter.writeTo(destination); }
384 void writeTo(UChar* destination) { m_adapter.writeTo(destination); }