Lines Matching refs:full
162 // add the result of a full case mapping to the set
165 addCaseMapping(UnicodeSet &set, int32_t result, const UChar *full, UnicodeString &str) {
171 // add a string case mapping from full with length result
172 str.setTo((UBool)FALSE, full, result);
207 const UChar *full;
215 // full case closure
223 result = ucase_toFullLower(csp, cp, NULL, NULL, &full, "", &locCache);
224 addCaseMapping(foldSet, result, full, str);
226 result = ucase_toFullTitle(csp, cp, NULL, NULL, &full, "", &locCache);
227 addCaseMapping(foldSet, result, full, str);
229 result = ucase_toFullUpper(csp, cp, NULL, NULL, &full, "", &locCache);
230 addCaseMapping(foldSet, result, full, str);
232 result = ucase_toFullFolding(csp, cp, &full, 0);
233 addCaseMapping(foldSet, result, full, str);