Lines Matching refs:full
167 addCaseMapping(UnicodeSet &set, int32_t result, const UChar *full, UnicodeString &str) { in addCaseMapping() argument
174 str.setTo((UBool)FALSE, full, result); in addCaseMapping()
209 const UChar *full; in closeOver() local
225 result = ucase_toFullLower(csp, cp, NULL, NULL, &full, "", &locCache); in closeOver()
226 addCaseMapping(foldSet, result, full, str); in closeOver()
228 result = ucase_toFullTitle(csp, cp, NULL, NULL, &full, "", &locCache); in closeOver()
229 addCaseMapping(foldSet, result, full, str); in closeOver()
231 result = ucase_toFullUpper(csp, cp, NULL, NULL, &full, "", &locCache); in closeOver()
232 addCaseMapping(foldSet, result, full, str); in closeOver()
234 result = ucase_toFullFolding(csp, cp, &full, 0); in closeOver()
235 addCaseMapping(foldSet, result, full, str); in closeOver()