OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:T_CString_stricmp
(Results
1 - 6
of
6
) sorted by null
/external/chromium_org/third_party/icu/source/test/cintltst/
cstrtest.c
110
if(
T_CString_stricmp
(src, "THIS is lower CASE") != 0){
111
log_err("FAIL: *****
T_CString_stricmp
() failed.");
113
if((intValue=
T_CString_stricmp
(NULL, "first string is null") )!= -1){
114
log_err("FAIL:
T_CString_stricmp
() where the first string is null failed. Expected: -1, returned %d\n", intValue);
116
if((intValue=
T_CString_stricmp
("second string is null", NULL)) != 1){
117
log_err("FAIL:
T_CString_stricmp
() where the second string is null failed. Expected: 1, returned %d\n", intValue);
119
if((intValue=
T_CString_stricmp
(NULL, NULL)) != 0){
120
log_err("FAIL:
T_CString_stricmp
(NULL, NULL) failed. Expected: 0, returned %d\n", intValue);;
122
if((intValue=
T_CString_stricmp
("", "")) != 0){
123
log_err("FAIL:
T_CString_stricmp
(\"\", \"\") failed. Expected: 0, returned %d\n", intValue);
[
all
...]
ccapitst.c
36
# define ctest_stricmp(str1, str2)
T_CString_stricmp
(str1, str2)
40
T_CString_stricmp
(const char *str1, const char *str2) {
[
all
...]
/external/chromium_org/third_party/icu/source/common/
cstring.h
77
# define uprv_stricmp(str1, str2)
T_CString_stricmp
(str1, str2)
115
T_CString_stricmp
(const char *str1, const char *str2);
cstring.c
222
T_CString_stricmp
(const char *str1, const char *str2) {
uloc_tag.c
[
all
...]
/external/chromium_org/third_party/icu/source/common/unicode/
urename.h
56
#define
T_CString_stricmp
U_ICU_ENTRY_POINT_RENAME(
T_CString_stricmp
)
[
all
...]
Completed in 82 milliseconds