Lines Matching full:mutable
24 * This file defines a mutable Unicode code point trie.
31 * Mutable Unicode code point trie.
36 * The mutable trie is only somewhat space-efficient.
41 * set of ranges (e.g., another mutable or immutable trie):
52 * Creates a mutable trie that initially maps each Unicode code point to the same value.
68 * Clones a mutable trie.
80 * Closes a mutable trie and releases associated memory.
108 * Creates a mutable trie with the same contents as the UCPMap.
109 * You must umutablecptrie_close() the mutable trie once you are done using it.
113 * @return the mutable trie
120 * Creates a mutable trie with the same contents as the immutable one.
121 * You must umutablecptrie_close() the mutable trie once you are done using it.
125 * @return the mutable trie
206 * After this, the mutable trie will be empty.
208 * The mutable trie stores 32-bit values until buildImmutable() is called.
211 * For example, when the mutable trie contains values 0x81, -0x7f, and 0xa581,