Lines Matching defs:intValue

37     int32_t intValue=0;
82 intValue=T_CString_stringToInteger("34556", 10);
83 if(intValue != 34556){
84 log_err("FAIL: ****T_CString_stringToInteger(\"34556\", 10) failed. Expected: 34556, Got: %d\n", intValue);
86 intValue=T_CString_stringToInteger("100", 16);
87 if(intValue != 256){
88 log_err("FAIL: ****T_CString_stringToInteger(\"100\", 16) failed. Expected: 256, Got: %d\n", intValue);
111 if((intValue=uprv_stricmp(NULL, "first string is null") )!= -1){
112 log_err("FAIL: uprv_stricmp() where the first string is null failed. Expected: -1, returned %d\n", intValue);
114 if((intValue=uprv_stricmp("second string is null", NULL)) != 1){
115 log_err("FAIL: uprv_stricmp() where the second string is null failed. Expected: 1, returned %d\n", intValue);
117 if((intValue=uprv_stricmp(NULL, NULL)) != 0){
118 log_err("FAIL: uprv_stricmp(NULL, NULL) failed. Expected: 0, returned %d\n", intValue);;
120 if((intValue=uprv_stricmp("", "")) != 0){
121 log_err("FAIL: uprv_stricmp(\"\", \"\") failed. Expected: 0, returned %d\n", intValue);;
123 if((intValue=uprv_stricmp("", "abc")) != -1){
124 log_err("FAIL: uprv_stricmp(\"\", \"abc\") failed. Expected: -1, returned %d\n", intValue);
126 if((intValue=uprv_stricmp("abc", "")) != 1){
127 log_err("FAIL: uprv_stricmp(\"abc\", \"\") failed. Expected: 1, returned %d\n", intValue);
140 if((intValue=uprv_strnicmp(NULL, "first string is null", 10) )!= -1){
141 log_err("FAIL: uprv_strnicmp() where the first string is null failed. Expected: -1, returned %d\n", intValue);
143 if((intValue=uprv_strnicmp("second string is null", NULL, 10)) != 1){
144 log_err("FAIL: uprv_strnicmp() where the second string is null failed. Expected: 1, returned %d\n", intValue);
146 if((intValue=uprv_strnicmp(NULL, NULL, 10)) != 0){
147 log_err("FAIL: uprv_strnicmp(NULL, NULL, 10) failed. Expected: 0, returned %d\n", intValue);;
149 if((intValue=uprv_strnicmp("", "", 10)) != 0){
150 log_err("FAIL: uprv_strnicmp(\"\", \"\") failed. Expected: 0, returned %d\n", intValue);;
152 if((intValue=uprv_strnicmp("", "abc", 10)) != -1){
153 log_err("FAIL: uprv_stricmp(\"\", \"abc\", 10) failed. Expected: -1, returned %d\n", intValue);
155 if((intValue=uprv_strnicmp("abc", "", 10)) != 1){
156 log_err("FAIL: uprv_strnicmp(\"abc\", \"\", 10) failed. Expected: 1, returned %d\n", intValue);