Lines Matching defs:intValue

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