Lines Matching refs:full
165 addCaseMapping(UnicodeSet &set, int32_t result, const UChar *full, UnicodeString &str) { in addCaseMapping() argument
172 str.setTo((UBool)FALSE, full, result); in addCaseMapping()
207 const UChar *full; in closeOver() local
223 result = ucase_toFullLower(csp, cp, NULL, NULL, &full, "", &locCache); in closeOver()
224 addCaseMapping(foldSet, result, full, str); in closeOver()
226 result = ucase_toFullTitle(csp, cp, NULL, NULL, &full, "", &locCache); in closeOver()
227 addCaseMapping(foldSet, result, full, str); in closeOver()
229 result = ucase_toFullUpper(csp, cp, NULL, NULL, &full, "", &locCache); in closeOver()
230 addCaseMapping(foldSet, result, full, str); in closeOver()
232 result = ucase_toFullFolding(csp, cp, &full, 0); in closeOver()
233 addCaseMapping(foldSet, result, full, str); in closeOver()