Home | History | Annotate | Download | only in common

Lines Matching refs:UTrie

13 *   created on: 2008aug16 (starting from a copy of utrie.h)
26 struct UTrie; /* forward declaration */
28 typedef struct UTrie UTrie;
39 * Compared with UTrie version 1:
44 * - The "folding" mechanism is removed. In UTrie version 1, this somewhat
329 * Get the UTrie version from 32-bit-aligned memory containing the serialized form
330 * of either a UTrie (version 1) or a UTrie2 (version 2).
333 * of a UTrie, version 1 or 2
338 * @return the UTrie version of the serialized form, or 0 if it is not
339 * recognized as a serialized UTrie
354 * Swap a serialized UTrie or UTrie2.
363 * Build a UTrie2 (version 2) from a UTrie (version 1).
364 * Enumerates all values in the UTrie and builds a UTrie2 with the same values.
367 * @param trie1 the runtime UTrie structure to be enumerated
370 * @return The frozen UTrie2 with the same values as the UTrie.
373 utrie2_fromUTrie(const UTrie *trie1, uint32_t errorValue, UErrorCode *pErrorCode);