Lines Matching refs:ABC
39 static const char *const abc="abcdefghijklmnopqrstuvwxyz", *const ABC="ABCDEFGHIJKLMNOPQRSTUVWXYZ";
45 dest[i]=uprv_tolower(abc[i]);
47 if(0!=strcmp(abc, dest)) {
48 log_err("uprv_tolower(abc) failed\n");
52 dest[i]=uprv_tolower(ABC[i]);
54 if(0!=strcmp(abc, dest)) {
55 log_err("uprv_tolower(ABC) failed\n");
59 dest[i]=uprv_toupper(abc[i]);
61 if(0!=strcmp(ABC, dest)) {
62 log_err("uprv_toupper(abc) failed\n");
66 dest[i]=uprv_toupper(ABC[i]);
68 if(0!=strcmp(ABC, dest)) {
69 log_err("uprv_toupper(ABC) failed\n");
123 if((intValue=T_CString_stricmp("", "abc")) != -1){
124 log_err("FAIL: T_CString_stricmp(\"\", \"abc\") failed. Expected: -1, returned %d\n", intValue);
126 if((intValue=T_CString_stricmp("abc", "")) != 1){
127 log_err("FAIL: T_CString_stricmp(\"abc\", \"\") failed. Expected: 1, returned %d\n", intValue);
152 if((intValue=T_CString_strnicmp("", "abc", 10)) != -1){
153 log_err("FAIL: T_CString_stricmp(\"\", \"abc\", 10) failed. Expected: -1, returned %d\n", intValue);
155 if((intValue=T_CString_strnicmp("abc", "", 10)) != 1){
156 log_err("FAIL: T_CString_strnicmp(\"abc\", \"\", 10) failed. Expected: 1, returned %d\n", intValue);