Lines Matching refs:intValue
47 int32_t intValue=0; in TestAPI() local
92 intValue=T_CString_stringToInteger("34556", 10); in TestAPI()
93 if(intValue != 34556){ in TestAPI()
94 …"FAIL: ****T_CString_stringToInteger(\"34556\", 10) failed. Expected: 34556, Got: %d\n", intValue); in TestAPI()
96 intValue=T_CString_stringToInteger("100", 16); in TestAPI()
97 if(intValue != 256){ in TestAPI()
98 …err("FAIL: ****T_CString_stringToInteger(\"100\", 16) failed. Expected: 256, Got: %d\n", intValue); in TestAPI()
121 if((intValue=uprv_stricmp(NULL, "first string is null") )!= -1){ in TestAPI()
122 …AIL: uprv_stricmp() where the first string is null failed. Expected: -1, returned %d\n", intValue); in TestAPI()
124 if((intValue=uprv_stricmp("second string is null", NULL)) != 1){ in TestAPI()
125 …AIL: uprv_stricmp() where the second string is null failed. Expected: 1, returned %d\n", intValue); in TestAPI()
127 if((intValue=uprv_stricmp(NULL, NULL)) != 0){ in TestAPI()
128 log_err("FAIL: uprv_stricmp(NULL, NULL) failed. Expected: 0, returned %d\n", intValue); in TestAPI()
130 if((intValue=uprv_stricmp("", "")) != 0){ in TestAPI()
131 log_err("FAIL: uprv_stricmp(\"\", \"\") failed. Expected: 0, returned %d\n", intValue); in TestAPI()
133 if((intValue=uprv_stricmp("", "abc")) != -1){ in TestAPI()
134 log_err("FAIL: uprv_stricmp(\"\", \"abc\") failed. Expected: -1, returned %d\n", intValue); in TestAPI()
136 if((intValue=uprv_stricmp("abc", "")) != 1){ in TestAPI()
137 log_err("FAIL: uprv_stricmp(\"abc\", \"\") failed. Expected: 1, returned %d\n", intValue); in TestAPI()
150 if((intValue=uprv_strnicmp(NULL, "first string is null", 10) )!= -1){ in TestAPI()
151 …IL: uprv_strnicmp() where the first string is null failed. Expected: -1, returned %d\n", intValue); in TestAPI()
153 if((intValue=uprv_strnicmp("second string is null", NULL, 10)) != 1){ in TestAPI()
154 …IL: uprv_strnicmp() where the second string is null failed. Expected: 1, returned %d\n", intValue); in TestAPI()
156 if((intValue=uprv_strnicmp(NULL, NULL, 10)) != 0){ in TestAPI()
157 … log_err("FAIL: uprv_strnicmp(NULL, NULL, 10) failed. Expected: 0, returned %d\n", intValue); in TestAPI()
159 if((intValue=uprv_strnicmp("", "", 10)) != 0){ in TestAPI()
160 log_err("FAIL: uprv_strnicmp(\"\", \"\") failed. Expected: 0, returned %d\n", intValue); in TestAPI()
162 if((intValue=uprv_strnicmp("", "abc", 10)) != -1){ in TestAPI()
163 … log_err("FAIL: uprv_stricmp(\"\", \"abc\", 10) failed. Expected: -1, returned %d\n", intValue); in TestAPI()
165 if((intValue=uprv_strnicmp("abc", "", 10)) != 1){ in TestAPI()
166 … log_err("FAIL: uprv_strnicmp(\"abc\", \"\", 10) failed. Expected: 1, returned %d\n", intValue); in TestAPI()