HomeSort by relevance Sort by last modified time
    Searched refs:T_CString_strnicmp (Results 1 - 4 of 4) sorted by null

  /external/chromium_org/third_party/icu/source/test/cintltst/
cstrtest.c 139 if(T_CString_strnicmp(src, "THIS", 4 ) != 0){
140 log_err("FAIL: *****T_CString_strnicmp() failed.");
142 if((intValue=T_CString_strnicmp(NULL, "first string is null", 10) )!= -1){
143 log_err("FAIL: T_CString_strnicmp() where the first string is null failed. Expected: -1, returned %d\n", intValue);
145 if((intValue=T_CString_strnicmp("second string is null", NULL, 10)) != 1){
146 log_err("FAIL: T_CString_strnicmp() where the second string is null failed. Expected: 1, returned %d\n", intValue);
148 if((intValue=T_CString_strnicmp(NULL, NULL, 10)) != 0){
149 log_err("FAIL: T_CString_strnicmp(NULL, NULL, 10) failed. Expected: 0, returned %d\n", intValue);;
151 if((intValue=T_CString_strnicmp("", "", 10)) != 0){
152 log_err("FAIL: T_CString_strnicmp(\"\", \"\") failed. Expected: 0, returned %d\n", intValue);
    [all...]
  /external/chromium_org/third_party/icu/source/common/
cstring.h 78 # define uprv_strnicmp(str1, str2, n) T_CString_strnicmp(str1, str2, n)
118 T_CString_strnicmp(const char *str1, const char *str2, uint32_t n);
cstring.c 261 T_CString_strnicmp(const char *str1, const char *str2, uint32_t n) {
  /external/chromium_org/third_party/icu/source/common/unicode/
urename.h 58 #define T_CString_strnicmp U_ICU_ENTRY_POINT_RENAME(T_CString_strnicmp)
    [all...]

Completed in 183 milliseconds