|
| static void | decodeUTF8 (const std::string &src, LogString &dst) |
| | Append the UTF-8 characters in src onto dst.
|
| static void | encodeUTF8 (const LogString &src, std::string &dst) |
| | Append \src onto dst as a UTF-8 string.
|
| static char * | encodeUTF8 (const LogString &src, log4cxx::helpers::Pool &p) |
| | Converts the LogString to a UTF-8 string.
|
| static void | encodeUTF8 (unsigned int sv, ByteBuffer &dst) |
| | Append the code point sv to dst as UTF-8.
|
| static void | encodeUTF16LE (unsigned int sv, ByteBuffer &dst) |
| | Append the code point sv to dst as UTF-16LE.
|
| static void | encodeUTF16BE (unsigned int sv, ByteBuffer &dst) |
| | Append the code point sv to dst as UTF-16BE.
|
| static unsigned int | decode (const std::string &str, std::string::const_iterator &iter) |
| | Increment iter past the next code point in str.
|
| static void | encode (unsigned int ch, std::string &dst) |
| | Append the UTF8 equivalent to ch onto dst.
|
| static void | decode (const std::string &src, LogString &dst) |
| | Append the LogString equivalent of src onto dst.
|
| static void | encode (const LogString &src, std::string &dst) |
| | Append the UTF8 equivalent of src onto dst.
|
| static char * | encode (const LogString &src, log4cxx::helpers::Pool &p) |
| static void | decode (const std::wstring &src, LogString &dst) |
| | Append the LogString equivalent of src onto dst.
|
| static void | encode (const LogString &src, std::wstring &dst) |
| | Append the equivalent of src onto dst.
|
| static wchar_t * | wencode (const LogString &src, log4cxx::helpers::Pool &p) |
| | A null-terminated equivalent of src.
|
| static unsigned int | decode (const std::wstring &str, std::wstring::const_iterator &iter) |
| | Increment iter past the next code point in str.
|
| static void | encode (unsigned int ch, std::wstring &dst) |
| | Append the wchar_t equivalent to ch onto dst.
|
| static void | decode (const std::basic_string< UniChar > &src, LogString &dst) |
| | Append the LogString equivalent of src onto dst.
|
| static void | encode (const LogString &src, std::basic_string< UniChar > &dst) |
| | Append the equivalent of src onto dst.
|
| static unsigned int | decode (const std::basic_string< UniChar > &str, std::basic_string< UniChar >::const_iterator &iter) |
| | Increment iter past the next code point in str.
|
| static void | encode (unsigned int ch, std::basic_string< UniChar > &dst) |
| | Append the UniChar equivalent to ch onto dst.
|
| static void | decode (const CFStringRef &src, LogString &dst) |
| | Append the LogString equivalent of src onto dst.
|
| static CFStringRef | encode (const LogString &src) |
| | A CFStringRef equivalent of src.
|
| static logchar | decode (char ch) |
| | The logchar equivalent to ch.
|
| static LogString | decode (const char *str) |
| | The LogString equivalent to the characters in the null terminated bytes at str.
|
| static std::string | encodeCharsetName (const LogString &charsetName) |
| | Encodes a charset name in the default encoding without using a CharsetEncoder (which could trigger recursion).
|
Methods for converting between external and internal strings.