#include "convert_utf.h"Include dependency graph for convert_utf.cpp:

Go to the source code of this file.
Defines | |
| #define | UNI_SUR_HIGH_START (UTF32)0xD800 |
| #define | UNI_SUR_HIGH_END (UTF32)0xDBFF |
| #define | UNI_SUR_LOW_START (UTF32)0xDC00 |
| #define | UNI_SUR_LOW_END (UTF32)0xDFFF |
Functions | |
| ConversionResult | ConvertUTF32toUTF16 (const UTF32 **sourceStart, const UTF32 *sourceEnd, UTF16 **targetStart, UTF16 *targetEnd, ConversionFlags flags) |
| ConversionResult | ConvertUTF16toUTF32 (const UTF16 **sourceStart, const UTF16 *sourceEnd, UTF32 **targetStart, UTF32 *targetEnd, ConversionFlags flags) |
| ConversionResult | ConvertUTF16toUTF8 (const UTF16 **sourceStart, const UTF16 *sourceEnd, UTF8 **targetStart, UTF8 *targetEnd, ConversionFlags flags) |
| Booleano | isLegalUTF8Sequence (const UTF8 *source, const UTF8 *sourceEnd) |
| ConversionResult | ConvertUTF8toUTF16 (const UTF8 **sourceStart, const UTF8 *sourceEnd, UTF16 **targetStart, UTF16 *targetEnd, ConversionFlags flags) |
| ConversionResult | ConvertUTF32toUTF8 (const UTF32 **sourceStart, const UTF32 *sourceEnd, UTF8 **targetStart, UTF8 *targetEnd, ConversionFlags flags) |
| ConversionResult | ConvertUTF8toUTF32 (const UTF8 **sourceStart, const UTF8 *sourceEnd, UTF32 **targetStart, UTF32 *targetEnd, ConversionFlags flags) |
| #define UNI_SUR_HIGH_END (UTF32)0xDBFF |
Definition at line 76 of file convert_utf.cpp.
Referenced by ConvertUTF16toUTF32(), and ConvertUTF16toUTF8().
| #define UNI_SUR_HIGH_START (UTF32)0xD800 |
Definition at line 75 of file convert_utf.cpp.
Referenced by ConvertUTF16toUTF32(), ConvertUTF16toUTF8(), ConvertUTF32toUTF16(), ConvertUTF32toUTF8(), ConvertUTF8toUTF16(), and ConvertUTF8toUTF32().
| #define UNI_SUR_LOW_END (UTF32)0xDFFF |
Definition at line 78 of file convert_utf.cpp.
Referenced by ConvertUTF16toUTF32(), ConvertUTF16toUTF8(), ConvertUTF32toUTF16(), ConvertUTF32toUTF8(), ConvertUTF8toUTF16(), and ConvertUTF8toUTF32().
| #define UNI_SUR_LOW_START (UTF32)0xDC00 |
Definition at line 77 of file convert_utf.cpp.
Referenced by ConvertUTF16toUTF32(), ConvertUTF16toUTF8(), ConvertUTF32toUTF16(), and ConvertUTF8toUTF16().
| ConversionResult ConvertUTF16toUTF32 | ( | const UTF16 ** | sourceStart, | |
| const UTF16 * | sourceEnd, | |||
| UTF32 ** | targetStart, | |||
| UTF32 * | targetEnd, | |||
| ConversionFlags | flags | |||
| ) |
Definition at line 131 of file convert_utf.cpp.
References conversionOK, sourceExhausted, sourceIllegal, strictConversion, targetExhausted, UNI_SUR_HIGH_END, UNI_SUR_HIGH_START, UNI_SUR_LOW_END, and UNI_SUR_LOW_START.
| ConversionResult ConvertUTF16toUTF8 | ( | const UTF16 ** | sourceStart, | |
| const UTF16 * | sourceEnd, | |||
| UTF8 ** | targetStart, | |||
| UTF8 * | targetEnd, | |||
| ConversionFlags | flags | |||
| ) |
Definition at line 235 of file convert_utf.cpp.
References conversionOK, sourceExhausted, sourceIllegal, strictConversion, targetExhausted, UNI_REPLACEMENT_CHAR, UNI_SUR_HIGH_END, UNI_SUR_HIGH_START, UNI_SUR_LOW_END, and UNI_SUR_LOW_START.
| ConversionResult ConvertUTF32toUTF16 | ( | const UTF32 ** | sourceStart, | |
| const UTF32 * | sourceEnd, | |||
| UTF16 ** | targetStart, | |||
| UTF16 * | targetEnd, | |||
| ConversionFlags | flags | |||
| ) |
Definition at line 82 of file convert_utf.cpp.
References conversionOK, sourceIllegal, strictConversion, targetExhausted, UNI_MAX_BMP, UNI_MAX_LEGAL_UTF32, UNI_REPLACEMENT_CHAR, UNI_SUR_HIGH_START, UNI_SUR_LOW_END, and UNI_SUR_LOW_START.
| ConversionResult ConvertUTF32toUTF8 | ( | const UTF32 ** | sourceStart, | |
| const UTF32 * | sourceEnd, | |||
| UTF8 ** | targetStart, | |||
| UTF8 * | targetEnd, | |||
| ConversionFlags | flags | |||
| ) |
Definition at line 430 of file convert_utf.cpp.
References conversionOK, sourceIllegal, strictConversion, targetExhausted, UNI_MAX_LEGAL_UTF32, UNI_REPLACEMENT_CHAR, UNI_SUR_HIGH_START, and UNI_SUR_LOW_END.
| ConversionResult ConvertUTF8toUTF16 | ( | const UTF8 ** | sourceStart, | |
| const UTF8 * | sourceEnd, | |||
| UTF16 ** | targetStart, | |||
| UTF16 * | targetEnd, | |||
| ConversionFlags | flags | |||
| ) |
Definition at line 357 of file convert_utf.cpp.
References conversionOK, sourceExhausted, sourceIllegal, strictConversion, targetExhausted, UNI_MAX_BMP, UNI_MAX_UTF16, UNI_REPLACEMENT_CHAR, UNI_SUR_HIGH_START, UNI_SUR_LOW_END, and UNI_SUR_LOW_START.
| ConversionResult ConvertUTF8toUTF32 | ( | const UTF8 ** | sourceStart, | |
| const UTF8 * | sourceEnd, | |||
| UTF32 ** | targetStart, | |||
| UTF32 * | targetEnd, | |||
| ConversionFlags | flags | |||
| ) |
Definition at line 483 of file convert_utf.cpp.
References conversionOK, sourceExhausted, sourceIllegal, strictConversion, targetExhausted, UNI_MAX_LEGAL_UTF32, UNI_REPLACEMENT_CHAR, UNI_SUR_HIGH_START, and UNI_SUR_LOW_END.
Definition at line 347 of file convert_utf.cpp.
1.5.1