• Home
  • Raw
  • Download

Lines Matching refs:expected_string

1599     UChar* expected_string = NULL;  in testTag()  local
1716 expected_string=(UChar*)malloc(sizeof(UChar)*(u_strlen(base) + 4)); in testTag()
1717 u_strcpy(expected_string,base); in testTag()
1718 CONFIRM_INT_EQ(len, u_strlen(expected_string)); in testTag()
1720 expected_string = (UChar*)malloc(sizeof(UChar)*(u_strlen(kERROR) + 1)); in testTag()
1721 u_strcpy(expected_string,kERROR); in testTag()
1727 CONFIRM_EQ(string, expected_string); in testTag()
1755 u_strcpy(expected_string, base); in testTag()
1757 u_strcat(expected_string, element); in testTag()
1760 CONFIRM_EQ(tres_getString(arrayItem1, -1, NULL, &len, &status),expected_string); in testTag()
1794 u_strcpy(expected_string, base); in testTag()
1796 u_strcat(expected_string, element); in testTag()
1798 u_strcpy(expected_string, kERROR); in testTag()
1804 CONFIRM_EQ(string,expected_string); in testTag()
1845 u_strcpy(expected_string, base); in testTag()
1847 u_strcat(expected_string, element); in testTag()
1849 u_strcat(expected_string, element); in testTag()
1853 CONFIRM_EQ(stringValue, expected_string); in testTag()
1894 u_strcpy(expected_string, base); in testTag()
1896 u_strcat(expected_string, element); in testTag()
1898 u_strcat(expected_string, element); in testTag()
1900 u_strcpy(expected_string,kERROR); in testTag()
1902 CONFIRM_EQ(string,expected_string); in testTag()
1980 u_strcpy(expected_string, base); in testTag()
1982 u_strcat(expected_string, element); in testTag()
1983 CONFIRM_EQ(string,expected_string); in testTag()
1992 free(expected_string); in testTag()