Searched refs:strABAccentA (Results 1 – 1 of 1) sorted by relevance
/external/icu4c/test/iotest/ |
D | filetst.c | 830 static const UChar strABAccentA[] = { 0x0041, 0x0042, 0x00C1, 0x0043, 0}; in TestCodepage() local 832 UChar testBuf[sizeof(strABAccentA)/sizeof(strABAccentA[0])*2]; /* *2 to see if too much was */ in TestCodepage() 852 u_file_write(strABAccentA, u_strlen(strABAccentA), myFile); in TestCodepage() 860 retVal = u_file_read(testBuf, u_strlen(strABAccentA), myFile); in TestCodepage() 861 if (u_strncmp(strABAccentA, testBuf, u_strlen(strABAccentA)) != 0) { in TestCodepage() 864 if (retVal != u_strlen(strABAccentA)) { in TestCodepage() 865 …The test data returned different lengths. Got: %d, Expected %d\n", retVal, u_strlen(strABAccentA)); in TestCodepage() 893 retVal = u_file_read(testBuf + 1, u_strlen(strABAccentA) - 1, myFile); in TestCodepage() 894 if (u_strncmp(strABAccentA, testBuf, u_strlen(strABAccentA)) != 0) { in TestCodepage() 897 if ((retVal + 1) != u_strlen(strABAccentA)) { in TestCodepage() [all …]
|