Lines Matching refs:errorValue
72 MutableCodePointTrie(uint32_t initialValue, uint32_t errorValue, UErrorCode &errorCode);
117 uint32_t errorValue; member in __anonad8ca0090111::MutableCodePointTrie
131 origInitialValue(iniValue), initialValue(iniValue), errorValue(errValue), in MutableCodePointTrie()
152 errorValue(other.errorValue), in MutableCodePointTrie()
185 uint32_t errorValue = ucpmap_get(map, -1); in fromUCPMap() local
188 new MutableCodePointTrie(initialValue, errorValue, errorCode), in fromUCPMap()
215 uint32_t errorValue; in fromUCPTrie() local
219 errorValue = trie->data.ptr16[trie->dataLength - UCPTRIE_ERROR_VALUE_NEG_DATA_OFFSET]; in fromUCPTrie()
223 errorValue = trie->data.ptr32[trie->dataLength - UCPTRIE_ERROR_VALUE_NEG_DATA_OFFSET]; in fromUCPTrie()
227 errorValue = trie->data.ptr8[trie->dataLength - UCPTRIE_ERROR_VALUE_NEG_DATA_OFFSET]; in fromUCPTrie()
236 new MutableCodePointTrie(initialValue, errorValue, errorCode), in fromUCPTrie()
272 return errorValue; in get()
561 errorValue &= mask; in maskValues()
1620 data[dataLength++] = errorValue; in build()
1622 if (data[dataLength - 1] != errorValue || data[dataLength - 2] != highValue) { in build()
1624 data[dataLength++] = errorValue; in build()
1629 if (data[dataLength - 1] != errorValue || data[dataLength - 2] != highValue) { in build()
1633 data[dataLength++] = errorValue; in build()
1638 if (and3 == 0 && data[dataLength - 1] == errorValue && data[dataLength - 2] == highValue) { in build()
1641 data[dataLength++] = errorValue; in build()
1648 data[dataLength++] = errorValue; in build()
1740 umutablecptrie_open(uint32_t initialValue, uint32_t errorValue, UErrorCode *pErrorCode) { in umutablecptrie_open() argument
1745 new MutableCodePointTrie(initialValue, errorValue, *pErrorCode), *pErrorCode); in umutablecptrie_open()