• Home
  • Raw
  • Download

Lines Matching refs:intValue

39     int32_t intValue=0;  in TestAPI()  local
84 intValue=T_CString_stringToInteger("34556", 10); in TestAPI()
85 if(intValue != 34556){ in TestAPI()
86 …"FAIL: ****T_CString_stringToInteger(\"34556\", 10) failed. Expected: 34556, Got: %d\n", intValue); in TestAPI()
88 intValue=T_CString_stringToInteger("100", 16); in TestAPI()
89 if(intValue != 256){ in TestAPI()
90 …err("FAIL: ****T_CString_stringToInteger(\"100\", 16) failed. Expected: 256, Got: %d\n", intValue); in TestAPI()
113 if((intValue=uprv_stricmp(NULL, "first string is null") )!= -1){ in TestAPI()
114 …AIL: uprv_stricmp() where the first string is null failed. Expected: -1, returned %d\n", intValue); in TestAPI()
116 if((intValue=uprv_stricmp("second string is null", NULL)) != 1){ in TestAPI()
117 …AIL: uprv_stricmp() where the second string is null failed. Expected: 1, returned %d\n", intValue); in TestAPI()
119 if((intValue=uprv_stricmp(NULL, NULL)) != 0){ in TestAPI()
120 log_err("FAIL: uprv_stricmp(NULL, NULL) failed. Expected: 0, returned %d\n", intValue);; in TestAPI()
122 if((intValue=uprv_stricmp("", "")) != 0){ in TestAPI()
123 log_err("FAIL: uprv_stricmp(\"\", \"\") failed. Expected: 0, returned %d\n", intValue);; in TestAPI()
125 if((intValue=uprv_stricmp("", "abc")) != -1){ in TestAPI()
126 log_err("FAIL: uprv_stricmp(\"\", \"abc\") failed. Expected: -1, returned %d\n", intValue); in TestAPI()
128 if((intValue=uprv_stricmp("abc", "")) != 1){ in TestAPI()
129 log_err("FAIL: uprv_stricmp(\"abc\", \"\") failed. Expected: 1, returned %d\n", intValue); in TestAPI()
142 if((intValue=uprv_strnicmp(NULL, "first string is null", 10) )!= -1){ in TestAPI()
143 …IL: uprv_strnicmp() where the first string is null failed. Expected: -1, returned %d\n", intValue); in TestAPI()
145 if((intValue=uprv_strnicmp("second string is null", NULL, 10)) != 1){ in TestAPI()
146 …IL: uprv_strnicmp() where the second string is null failed. Expected: 1, returned %d\n", intValue); in TestAPI()
148 if((intValue=uprv_strnicmp(NULL, NULL, 10)) != 0){ in TestAPI()
149 … log_err("FAIL: uprv_strnicmp(NULL, NULL, 10) failed. Expected: 0, returned %d\n", intValue);; in TestAPI()
151 if((intValue=uprv_strnicmp("", "", 10)) != 0){ in TestAPI()
152 log_err("FAIL: uprv_strnicmp(\"\", \"\") failed. Expected: 0, returned %d\n", intValue);; in TestAPI()
154 if((intValue=uprv_strnicmp("", "abc", 10)) != -1){ in TestAPI()
155 … log_err("FAIL: uprv_stricmp(\"\", \"abc\", 10) failed. Expected: -1, returned %d\n", intValue); in TestAPI()
157 if((intValue=uprv_strnicmp("abc", "", 10)) != 1){ in TestAPI()
158 … log_err("FAIL: uprv_strnicmp(\"abc\", \"\", 10) failed. Expected: 1, returned %d\n", intValue); in TestAPI()