#include <utext.h>
Data Fields | |
int32_t | tableSize |
(public) Function table size, sizeof(UTextFuncs) Intended for use should the table grow to accomodate added functions in the future, to allow tests for older format function tables that do not contain the extensions. | |
int32_t | reserved1 |
(private) Alignment padding. | |
int32_t | reserved2 |
int32_t | reserved3 |
UTextClone * | clone |
(public) Function pointer for UTextClone | |
UTextNativeLength * | nativeLength |
(public) function pointer for UTextLength May be expensive to compute! | |
UTextAccess * | access |
(public) Function pointer for UTextAccess. | |
UTextExtract * | extract |
(public) Function pointer for UTextExtract. | |
UTextReplace * | replace |
(public) Function pointer for UTextReplace. | |
UTextCopy * | copy |
(public) Function pointer for UTextCopy. | |
UTextMapOffsetToNative * | mapOffsetToNative |
(public) Function pointer for UTextMapOffsetToNative. | |
UTextMapNativeIndexToUTF16 * | mapNativeIndexToUTF16 |
(public) Function pointer for UTextMapNativeIndexToUTF16. | |
UTextClose * | close |
(public) Function pointer for UTextClose. | |
UTextClose * | spare1 |
(private) Spare function pointer | |
UTextClose * | spare2 |
(private) Spare function pointer | |
UTextClose * | spare3 |
(private) Spare function pointer |
Conceptually very much like a C++ Virtual Function Table. This struct defines the organization of the table. Each text provider implementation must provide an actual table that is initialized with the appropriate functions for the type of text being handled.
Definition at line 1173 of file utext.h.
(public) Function pointer for UTextMapNativeIndexToUTF16.
(public) Function pointer for UTextMapOffsetToNative.
int32_t UTextFuncs::reserved1 |
int32_t UTextFuncs::reserved2 |
int32_t UTextFuncs::reserved3 |
int32_t UTextFuncs::tableSize |
(public) Function table size, sizeof(UTextFuncs) Intended for use should the table grow to accomodate added functions in the future, to allow tests for older format function tables that do not contain the extensions.
Fields are placed for optimal alignment on 32/64/128-bit-pointer machines, by normally grouping together 4 32-bit fields, 4 pointers, 2 64-bit fields in sequence.