Home | History | Annotate | Download | only in cintltst

Lines Matching defs:abc

722         aBc[] ={ 0x61, 0x42, 0x63, 0 },
723 abc[] ={ 0x61, 0x62, 0x63, 0 },
766 length=ucasemap_utf8ToLower(csm, utf8Out, (int32_t)sizeof(utf8Out), aBc, -1, &errorCode);
767 if(U_FAILURE(errorCode) || length!=3 || 0!=strcmp(abc, utf8Out)) {
768 log_err("ucasemap_utf8ToLower(aBc\\0) failed\n");
774 length=ucasemap_utf8ToLower(csm, utf8Out, (int32_t)sizeof(utf8Out), aBc, -1, &errorCode);
781 strcpy(utf8Out, aBc);
783 if(errorCode!=U_ILLEGAL_ARGUMENT_ERROR || 0!=strcmp(aBc, utf8Out)) {
789 strcpy(utf8Out, aBc);
791 if(errorCode!=U_ILLEGAL_ARGUMENT_ERROR || 0!=strcmp(aBc, utf8Out)) {
798 length=ucasemap_utf8ToLower(csm, NULL, (int32_t)sizeof(utf8Out), aBc, -1, &errorCode);
806 length=ucasemap_utf8ToLower(csm, utf8Out, -2, aBc, -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 aBc, 3, &errorCode);
846 length=ucasemap_utf8FoldCase(csm, utf8Out, (int32_t)sizeof(utf8Out), aBc, 3, &errorCode);
847 if(U_FAILURE(errorCode) || length!=3 || 0!=strcmp(abc, utf8Out)) {
848 log_err("ucasemap_utf8FoldCase(aBc) failed\n");