Lines Matching defs:csm

729     UCaseMap *csm;
736 csm=ucasemap_open("tur", 0xa5, &errorCode);
741 locale=ucasemap_getLocale(csm);
746 ucasemap_setLocale(csm, "I-kLInGOn-the-quick-brown-fox-jumps-over-the-lazy-dog", &errorCode);
747 locale=ucasemap_getLocale(csm);
753 options=ucasemap_getOptions(csm);
757 ucasemap_setOptions(csm, 0x333333, &errorCode);
758 options=ucasemap_getOptions(csm);
767 length=ucasemap_utf8ToLower(csm, utf8Out, (int32_t)sizeof(utf8Out), aBc, -1, &errorCode);
775 length=ucasemap_utf8ToLower(csm, utf8Out, (int32_t)sizeof(utf8Out), aBc, -1, &errorCode);
783 length=ucasemap_utf8ToUpper(csm, utf8Out, 2, utf8Out+1, 2, &errorCode);
791 length=ucasemap_utf8ToUpper(csm, utf8Out+1, 2, utf8Out, 2, &errorCode);
799 length=ucasemap_utf8ToLower(csm, NULL, (int32_t)sizeof(utf8Out), aBc, -1, &errorCode);
807 length=ucasemap_utf8ToLower(csm, utf8Out, -2, aBc, -1, &errorCode);
815 length=ucasemap_utf8ToLower(csm, utf8Out, (int32_t)sizeof(utf8Out), NULL, -1, &errorCode);
823 length=ucasemap_utf8ToLower(csm, utf8Out, (int32_t)sizeof(utf8Out), aBc, -2, &errorCode);
831 length=ucasemap_utf8ToUpper(csm, utf8Out, 2, aBc, 3, &errorCode);
839 length=ucasemap_utf8ToUpper(csm, utf8Out, 3, aBc, 3, &errorCode);
847 length=ucasemap_utf8FoldCase(csm, utf8Out, (int32_t)sizeof(utf8Out), aBc, 3, &errorCode);
852 ucasemap_close(csm);
874 UCaseMap *csm;
881 csm=ucasemap_open("", 0, &errorCode);
887 iter=ucasemap_getBreakIterator(csm);
893 length=ucasemap_toTitle(csm, buffer, UPRV_LENGTHOF(buffer), beforeTitle, UPRV_LENGTHOF(beforeTitle), &errorCode);
902 iter=ucasemap_getBreakIterator(csm);
909 ucasemap_setOptions(csm, U_TITLECASE_NO_BREAK_ADJUSTMENT, &errorCode);
915 length=ucasemap_toTitle(csm, buffer, UPRV_LENGTHOF(buffer), beforeTitle, UPRV_LENGTHOF(beforeTitle), &errorCode);
929 ucasemap_close(csm);
932 ucasemap_setBreakIterator(csm, sentenceIter, &errorCode);
936 ucasemap_close(csm);
939 iter=ucasemap_getBreakIterator(csm);
944 ucasemap_setOptions(csm, U_TITLECASE_NO_LOWERCASE, &errorCode);
951 length=ucasemap_toTitle(csm, NULL, 0, beforeTitle, UPRV_LENGTHOF(beforeTitle), &errorCode);
960 length=ucasemap_toTitle(csm, buffer, UPRV_LENGTHOF(buffer), beforeTitle, UPRV_LENGTHOF(beforeTitle), &errorCode);
978 length=ucasemap_utf8ToTitle(csm, utf8, (int32_t)sizeof(utf8), utf8BeforeTitle, utf8BeforeTitleLength, &errorCode);
988 ucasemap_close(csm);