| 388 | } |
| 389 | |
| 390 | UTF8* StringBuffer::createCopy8() const |
| 391 | { |
| 392 | incRequestCount8(); |
| 393 | // convert will create a buffer of the appropriate size for a null terminated |
| 394 | // input string. |
| 395 | UTF8* out = convertUTF16toUTF8(mBuffer.address()); |
| 396 | return out; |
| 397 | } |
| 398 | |
| 399 | const UTF16* StringBuffer::getPtr() const |
| 400 | { |
no test coverage detected