Home | History | Annotate | Download | only in iotest

Lines Matching refs:format

206     UChar format[512];
241 tempStr=testCase->getString("format", errorCode);
242 tempStr.extract(format, sizeof(format)/sizeof(format[0]), errorCode);
247 u_austrncpy(cBuffer, format, sizeof(cBuffer));
254 log_verbose("Test %d: format=\"%s\"\n", i, cBuffer);
258 uBufferLenReturned = u_sprintf_u(uBuffer, format, dbl);
259 uFileBufferLenReturned = u_fprintf_u(testFile.getAlias(), format, dbl);
263 uBufferLenReturned = u_sprintf_u(uBuffer, format, i8);
264 uFileBufferLenReturned = u_fprintf_u(testFile.getAlias(), format, i8);
268 uBufferLenReturned = u_sprintf_u(uBuffer, format, i16);
269 uFileBufferLenReturned = u_fprintf_u(testFile.getAlias(), format, i16);
273 uBufferLenReturned = u_sprintf_u(uBuffer, format, i32);
274 uFileBufferLenReturned = u_fprintf_u(testFile.getAlias(), format, i32);
278 uBufferLenReturned = u_sprintf_u(uBuffer, format, i64);
279 uFileBufferLenReturned = u_fprintf_u(testFile.getAlias(), format, i64);
283 uBufferLenReturned = u_sprintf_u(uBuffer, format, cBuffer);
284 uFileBufferLenReturned = u_fprintf_u(testFile.getAlias(), format, cBuffer);
287 uBufferLenReturned = u_sprintf_u(uBuffer, format, argument);
288 uFileBufferLenReturned = u_fprintf_u(testFile.getAlias(), format, argument);
297 u_austrncpy(cFormat, format, sizeof(cFormat));
326 u_austrncpy(cFormat, format, sizeof(cFormat));
371 UChar format[512];
406 tempStr=testCase->getString("format", errorCode);
407 tempStr.extract(format, sizeof(format)/sizeof(format[0]), errorCode);
412 u_austrncpy(cBuffer, format, sizeof(cBuffer));
419 log_verbose("Test %d: format=\"%s\"\n", i, cBuffer);
423 uBufferLenReturned = u_sscanf_u(argument, format, &dbl);
424 //uFileBufferLenReturned = u_fscanf_u(testFile, format, dbl);
432 uBufferLenReturned = u_sscanf_u(argument, format, &flt);
433 //uFileBufferLenReturned = u_fscanf_u(testFile, format, flt);
441 uBufferLenReturned = u_sscanf_u(argument, format, &i8);
442 //uFileBufferLenReturned = u_fscanf_u(testFile, format, i8);
450 uBufferLenReturned = u_sscanf_u(argument, format, &i16);
451 //uFileBufferLenReturned = u_fscanf_u(testFile, format, i16);
459 uBufferLenReturned = u_sscanf_u(argument, format, &i32);
460 //uFileBufferLenReturned = u_fscanf_u(testFile, format, i32);
468 uBufferLenReturned = u_sscanf_u(argument, format, &i64);
469 //uFileBufferLenReturned = u_fscanf_u(testFile, format, i64);
476 uBufferLenReturned = u_sscanf_u(argument, format, cBuffer);
477 //uFileBufferLenReturned = u_fscanf_u(testFile, format, cBuffer);
483 uBufferLenReturned = u_sscanf_u(argument, format, uBuffer);
484 //uFileBufferLenReturned = u_fscanf_u(testFile, format, argument);
486 u_austrcpy(cExpected, format);
501 u_austrncpy(cFormat, format, sizeof(cFormat));
527 u_austrncpy(cFormat, format, sizeof(cFormat));
574 UChar format[512];
600 tempStr=testCase->getString("format", errorCode);
601 tempStr.extract(format, sizeof(format)/sizeof(format[0]), errorCode);
607 u_austrncpy(cBuffer, format, sizeof(cBuffer));
614 log_verbose("Test %d: format=\"%s\"\n", i, cBuffer);
618 uBufferLenReturned = u_sprintf_u(uBuffer, format, precision, dbl);
622 uBufferLenReturned = u_sprintf_u(uBuffer, format, precision, i8);
626 uBufferLenReturned = u_sprintf_u(uBuffer, format, precision, i16);
630 uBufferLenReturned = u_sprintf_u(uBuffer, format, precision, i32);
634 uBufferLenReturned = u_sprintf_u(uBuffer, format, precision, i64);
638 uBufferLenReturned = u_sprintf_u(uBuffer, format, precision, cBuffer);
641 uBufferLenReturned = u_sprintf_u(uBuffer, format, precision, argument);
649 u_austrncpy(cFormat, format, sizeof(cFormat));