Lines Matching refs:str1
284 #define ICUNIT_ASSERT_SIZE_STRING_EQUAL(str1, str2, strsize, retcode) \ argument
286 if (strncmp((str1), (str2), (strsize)) != 0) { \
292 #define ICUNIT_ASSERT_STRING_EQUAL(str1, str2, retcode) \ argument
294 if (strcmp(str1, str2) != 0) { \
300 #define ICUNIT_ASSERT_STRING_EQUAL_VOID(str1, str2, retcode) \ argument
302 if (strcmp((const char *)str1, (const char *)str2) != 0) { \
308 #define ICUNIT_ASSERT_STRING_NOT_EQUAL(str1, str2, retcode) \ argument
310 if (strcmp(str1, str2) == 0) { \
332 #define ICUNIT_GOTO_STRING_EQUAL(str1, str2, retcode, label) \ argument
334 if (strcmp(str1, str2) != 0) { \
340 #define ICUNIT_GOTO_STRING_NOT_EQUAL(str1, str2, retcode, label) \ argument
342 if (strcmp(str1, str2) == 0) { \