Lines Matching defs:full
134 // add the result of a full case mapping to the set
137 addCaseMapping(UnicodeSet &set, int32_t result, const UChar *full, UnicodeString &str) {
143 // add a string case mapping from full with length result
144 str.setTo((UBool)false, full, result);
178 const UChar *full;
185 // full case closure
193 result = ucase_toFullLower(cp, NULL, NULL, &full, UCASE_LOC_ROOT);
194 addCaseMapping(foldSet, result, full, str);
196 result = ucase_toFullTitle(cp, NULL, NULL, &full, UCASE_LOC_ROOT);
197 addCaseMapping(foldSet, result, full, str);
199 result = ucase_toFullUpper(cp, NULL, NULL, &full, UCASE_LOC_ROOT);
200 addCaseMapping(foldSet, result, full, str);
202 result = ucase_toFullFolding(cp, &full, 0);
203 addCaseMapping(foldSet, result, full, str);