Lines Matching refs:testStr
249 UChar testStr[256]; in TestLocalizedString() local
254 UFILE *strFile = u_fstropen(testStr, sizeof(testStr)/sizeof(testStr[0]), "en_US"); in TestLocalizedString()
264 u_austrcpy(cBuffer,testStr); in TestLocalizedString()
265 if (u_strcmp(testStr, uBuffer) != 0) { in TestLocalizedString()
289 u_austrcpy(cBuffer,testStr); in TestLocalizedString()
290 if (u_strcmp(testStr, uBuffer) != 0) { in TestLocalizedString()
297 strFile = u_fstropen(testStr, sizeof(testStr)/sizeof(testStr[0]), NULL); in TestLocalizedString()
306 if (u_fstropen(testStr, -1, NULL) != NULL) { in TestLocalizedString()
314 u_uastrncpy(testStr, "xxxxxxxxxxxxxx", sizeof(testStr)/sizeof(testStr[0]));\
315 size = u_snprintf(testStr, limit, format, value);\
316 u_austrncpy(cTestResult, testStr, sizeof(cTestResult)/sizeof(cTestResult[0]));\
329 UChar testStr[256]; in TestSnprintf() local
745 UChar testStr[16]; in TestCount() local
750 u_uastrcpy(testStr, "1233456789"); in TestCount()
751 if (u_sscanf(testStr, "%*3[123]%n%*[1-9]", &i32) != 0) { in TestCount()
757 if (u_sscanf(testStr, "%*4[123]%hn%*[1-9]", &i16) != 0) { in TestCount()
763 if (u_sscanf(testStr, "%*[123]%*[1-9]%lln", &i64) != 0) { in TestCount()