• Home
  • Raw
  • Download

Lines Matching refs:expected_string

1598     UChar* expected_string = NULL;  in testTag()  local
1715 expected_string=(UChar*)malloc(sizeof(UChar)*(u_strlen(base) + 4)); in testTag()
1716 u_strcpy(expected_string,base); in testTag()
1717 CONFIRM_INT_EQ(len, u_strlen(expected_string)); in testTag()
1719 expected_string = (UChar*)malloc(sizeof(UChar)*(u_strlen(kERROR) + 1)); in testTag()
1720 u_strcpy(expected_string,kERROR); in testTag()
1726 CONFIRM_EQ(string, expected_string); in testTag()
1754 u_strcpy(expected_string, base); in testTag()
1756 u_strcat(expected_string, element); in testTag()
1759 CONFIRM_EQ(tres_getString(arrayItem1, -1, NULL, &len, &status),expected_string); in testTag()
1793 u_strcpy(expected_string, base); in testTag()
1795 u_strcat(expected_string, element); in testTag()
1797 u_strcpy(expected_string, kERROR); in testTag()
1803 CONFIRM_EQ(string,expected_string); in testTag()
1844 u_strcpy(expected_string, base); in testTag()
1846 u_strcat(expected_string, element); in testTag()
1848 u_strcat(expected_string, element); in testTag()
1852 CONFIRM_EQ(stringValue, expected_string); in testTag()
1893 u_strcpy(expected_string, base); in testTag()
1895 u_strcat(expected_string, element); in testTag()
1897 u_strcat(expected_string, element); in testTag()
1899 u_strcpy(expected_string,kERROR); in testTag()
1901 CONFIRM_EQ(string,expected_string); in testTag()
1979 u_strcpy(expected_string, base); in testTag()
1981 u_strcat(expected_string, element); in testTag()
1982 CONFIRM_EQ(string,expected_string); in testTag()
1991 free(expected_string); in testTag()