Lines Matching refs:csm
728 UCaseMap *csm;
735 csm=ucasemap_open("tur", 0xa5, &errorCode);
740 locale=ucasemap_getLocale(csm);
745 ucasemap_setLocale(csm, "I-kLInGOn-the-quick-brown-fox-jumps-over-the-lazy-dog", &errorCode);
746 locale=ucasemap_getLocale(csm);
752 options=ucasemap_getOptions(csm);
756 ucasemap_setOptions(csm, 0x333333, &errorCode);
757 options=ucasemap_getOptions(csm);
766 length=ucasemap_utf8ToLower(csm, utf8Out, (int32_t)sizeof(utf8Out), aBc, -1, &errorCode);
774 length=ucasemap_utf8ToLower(csm, utf8Out, (int32_t)sizeof(utf8Out), aBc, -1, &errorCode);
782 length=ucasemap_utf8ToUpper(csm, utf8Out, 2, utf8Out+1, 2, &errorCode);
790 length=ucasemap_utf8ToUpper(csm, utf8Out+1, 2, utf8Out, 2, &errorCode);
798 length=ucasemap_utf8ToLower(csm, NULL, (int32_t)sizeof(utf8Out), aBc, -1, &errorCode);
806 length=ucasemap_utf8ToLower(csm, utf8Out, -2, aBc, -1, &errorCode);
814 length=ucasemap_utf8ToLower(csm, utf8Out, (int32_t)sizeof(utf8Out), NULL, -1, &errorCode);
822 length=ucasemap_utf8ToLower(csm, utf8Out, (int32_t)sizeof(utf8Out), aBc, -2, &errorCode);
830 length=ucasemap_utf8ToUpper(csm, utf8Out, 2, aBc, 3, &errorCode);
838 csm, utf8Out, 3, aBc, 3, &errorCode);
846 length=ucasemap_utf8FoldCase(csm, utf8Out, (int32_t)sizeof(utf8Out), aBc, 3, &errorCode);
851 ucasemap_close(csm);
873 UCaseMap *csm;
880 csm=ucasemap_open("", 0, &errorCode);
886 iter=ucasemap_getBreakIterator(csm);
892 length=ucasemap_toTitle(csm, buffer, LENGTHOF(buffer), beforeTitle, LENGTHOF(beforeTitle), &errorCode);
901 iter=ucasemap_getBreakIterator(csm);
908 ucasemap_setOptions(csm, U_TITLECASE_NO_BREAK_ADJUSTMENT, &errorCode);
914 length=ucasemap_toTitle(csm, buffer, LENGTHOF(buffer), beforeTitle, LENGTHOF(beforeTitle), &errorCode);
928 ucasemap_close(csm);
931 ucasemap_setBreakIterator(csm, sentenceIter, &errorCode);
935 ucasemap_close(csm);
938 iter=ucasemap_getBreakIterator(csm);
943 ucasemap_setOptions(csm, U_TITLECASE_NO_LOWERCASE, &errorCode);
950 length=ucasemap_toTitle(csm, NULL, 0, beforeTitle, LENGTHOF(beforeTitle), &errorCode);
959 length=ucasemap_toTitle(csm, buffer, LENGTHOF(buffer), beforeTitle, LENGTHOF(beforeTitle), &errorCode);
977 length=ucasemap_utf8ToTitle(csm, utf8, (int32_t)sizeof(utf8), utf8BeforeTitle, utf8BeforeTitleLength, &errorCode);
987 ucasemap_close(csm);