Lines Matching refs:testStr
252 UChar testStr[256]; in TestLocalizedString() local
257 UFILE *strFile = u_fstropen(testStr, UPRV_LENGTHOF(testStr), "en_US"); in TestLocalizedString()
267 u_austrcpy(cBuffer,testStr); in TestLocalizedString()
268 if (u_strcmp(testStr, uBuffer) != 0) { in TestLocalizedString()
292 u_austrcpy(cBuffer,testStr); in TestLocalizedString()
293 if (u_strcmp(testStr, uBuffer) != 0) { in TestLocalizedString()
300 strFile = u_fstropen(testStr, UPRV_LENGTHOF(testStr), NULL); in TestLocalizedString()
309 if (u_fstropen(testStr, -1, NULL) != NULL) { in TestLocalizedString()
317 u_uastrncpy(testStr, "xxxxxxxxxxxxxx", UPRV_LENGTHOF(testStr));\
318 size = u_snprintf(testStr, limit, format, value);\
319 u_austrncpy(cTestResult, testStr, UPRV_LENGTHOF(cTestResult));\
332 UChar testStr[256]; in TestSnprintf() local
749 UChar testStr[16]; in TestCount() local
754 u_uastrcpy(testStr, "1233456789"); in TestCount()
755 if (u_sscanf(testStr, "%*3[123]%n%*[1-9]", &i32) != 0) { in TestCount()
761 if (u_sscanf(testStr, "%*4[123]%hn%*[1-9]", &i16) != 0) { in TestCount()
767 if (u_sscanf(testStr, "%*[123]%*[1-9]%lln", &i64) != 0) { in TestCount()