Home | History | Annotate | Download | only in common

Lines Matching refs:csm

128 _caseMap(const UCaseMap *csm, UCaseMapFull *map,
138 locCache=csm->locCache;
147 c=map(csm->csp, c, utf16_caseContextIterator, csc, &s, csm->locale, &locCache);
165 ustrcase_internalToTitle(const UCaseMap *csm,
180 BreakIterator *bi=reinterpret_cast<BreakIterator *>(csm->iter);
183 int32_t locCache=csm->locCache;
221 if((csm->options&U_TITLECASE_NO_BREAK_ADJUSTMENT)==0 && UCASE_NONE==ucase_getType(csm->csp, c)) {
233 if(UCASE_NONE!=ucase_getType(csm->csp, c)) {
250 c=ucase_toFullTitle(csm->csp, c, utf16_caseContextIterator, &csc, &s, csm->locale, &locCache);
255 ucase_getCaseLocale(csm->locale,&locCache) == UCASE_LOC_DUTCH &&
265 if((csm->options&U_TITLECASE_NO_LOWERCASE)==0) {
269 csm, ucase_toFullLower,
300 ustrcase_internalToLower(const UCaseMap *csm,
308 csm, ucase_toFullLower,
315 ustrcase_internalToUpper(const UCaseMap *csm,
323 csm, ucase_toFullUpper,
360 ustrcase_internalFold(const UCaseMap *csm,
364 return ustr_foldCase(csm->csp, dest, destCapacity, src, srcLength, csm->options, pErrorCode);
368 ustrcase_map(const UCaseMap *csm,
417 destLength=stringCaseMapper(csm, temp, destCapacity, src, srcLength, pErrorCode);
441 UCaseMap csm=UCASEMAP_INITIALIZER;
442 csm.csp=ucase_getSingleton();
443 csm.options=options;
445 &csm,