• Home
  • Raw
  • Download

Lines Matching refs:expected_string

1653     UChar* expected_string = NULL;  in testTag()  local
1770 expected_string=(UChar*)malloc(sizeof(UChar)*(u_strlen(base) + 4)); in testTag()
1771 u_strcpy(expected_string,base); in testTag()
1772 CONFIRM_INT_EQ(len, u_strlen(expected_string)); in testTag()
1774 expected_string = (UChar*)malloc(sizeof(UChar)*(u_strlen(kERROR) + 1)); in testTag()
1775 u_strcpy(expected_string,kERROR); in testTag()
1781 CONFIRM_EQ(string, expected_string); in testTag()
1809 u_strcpy(expected_string, base); in testTag()
1811 u_strcat(expected_string, element); in testTag()
1814 CONFIRM_EQ(tres_getString(arrayItem1, -1, NULL, &len, &status),expected_string); in testTag()
1848 u_strcpy(expected_string, base); in testTag()
1850 u_strcat(expected_string, element); in testTag()
1852 u_strcpy(expected_string, kERROR); in testTag()
1858 CONFIRM_EQ(string,expected_string); in testTag()
1899 u_strcpy(expected_string, base); in testTag()
1901 u_strcat(expected_string, element); in testTag()
1903 u_strcat(expected_string, element); in testTag()
1907 CONFIRM_EQ(stringValue, expected_string); in testTag()
1948 u_strcpy(expected_string, base); in testTag()
1950 u_strcat(expected_string, element); in testTag()
1952 u_strcat(expected_string, element); in testTag()
1954 u_strcpy(expected_string,kERROR); in testTag()
1956 CONFIRM_EQ(string,expected_string); in testTag()
2034 u_strcpy(expected_string, base); in testTag()
2036 u_strcat(expected_string, element); in testTag()
2037 CONFIRM_EQ(string,expected_string); in testTag()
2046 free(expected_string); in testTag()