Lines Matching refs:csm

730     UCaseMap *csm;
737 csm=ucasemap_open("tur", 0xa5, &errorCode);
742 locale=ucasemap_getLocale(csm);
747 ucasemap_setLocale(csm, "I-kLInGOn-the-quick-brown-fox-jumps-over-the-lazy-dog", &errorCode);
748 locale=ucasemap_getLocale(csm);
754 options=ucasemap_getOptions(csm);
758 ucasemap_setOptions(csm, 0x333333, &errorCode);
759 options=ucasemap_getOptions(csm);
768 length=ucasemap_utf8ToLower(csm, utf8Out, (int32_t)sizeof(utf8Out), aBc, -1, &errorCode);
776 length=ucasemap_utf8ToLower(csm, utf8Out, (int32_t)sizeof(utf8Out), aBc, -1, &errorCode);
784 length=ucasemap_utf8ToUpper(csm, utf8Out, 2, utf8Out+1, 2, &errorCode);
792 length=ucasemap_utf8ToUpper(csm, utf8Out+1, 2, utf8Out, 2, &errorCode);
800 length=ucasemap_utf8ToLower(csm, NULL, (int32_t)sizeof(utf8Out), aBc, -1, &errorCode);
808 length=ucasemap_utf8ToLower(csm, utf8Out, -2, aBc, -1, &errorCode);
816 length=ucasemap_utf8ToLower(csm, utf8Out, (int32_t)sizeof(utf8Out), NULL, -1, &errorCode);
824 length=ucasemap_utf8ToLower(csm, utf8Out, (int32_t)sizeof(utf8Out), aBc, -2, &errorCode);
832 length=ucasemap_utf8ToUpper(csm, utf8Out, 2, aBc, 3, &errorCode);
840 length=ucasemap_utf8ToUpper(csm, utf8Out, 3, aBc, 3, &errorCode);
848 length=ucasemap_utf8FoldCase(csm, utf8Out, (int32_t)sizeof(utf8Out), aBc, 3, &errorCode);
853 ucasemap_close(csm);
875 UCaseMap *csm;
882 csm=ucasemap_open("", 0, &errorCode);
888 iter=ucasemap_getBreakIterator(csm);
894 length=ucasemap_toTitle(csm, buffer, LENGTHOF(buffer), beforeTitle, LENGTHOF(beforeTitle), &errorCode);
903 iter=ucasemap_getBreakIterator(csm);
910 ucasemap_setOptions(csm, U_TITLECASE_NO_BREAK_ADJUSTMENT, &errorCode);
916 length=ucasemap_toTitle(csm, buffer, LENGTHOF(buffer), beforeTitle, LENGTHOF(beforeTitle), &errorCode);
930 ucasemap_close(csm);
933 ucasemap_setBreakIterator(csm, sentenceIter, &errorCode);
937 ucasemap_close(csm);
940 iter=ucasemap_getBreakIterator(csm);
945 ucasemap_setOptions(csm, U_TITLECASE_NO_LOWERCASE, &errorCode);
952 length=ucasemap_toTitle(csm, NULL, 0, beforeTitle, LENGTHOF(beforeTitle), &errorCode);
961 length=ucasemap_toTitle(csm, buffer, LENGTHOF(buffer), beforeTitle, LENGTHOF(beforeTitle), &errorCode);
979 length=ucasemap_utf8ToTitle(csm, utf8, (int32_t)sizeof(utf8), utf8BeforeTitle, utf8BeforeTitleLength, &errorCode);
989 ucasemap_close(csm);