HomeSort by relevance Sort by last modified time
    Searched refs:newValuePtr (Results 1 - 2 of 2) sorted by null

  /external/icu/icu4c/source/test/iotest/
strtst.c 28 int32_t newValuePtr[1];
59 *newValuePtr = 1;
60 u_sscanf(uStringBuf, "Signed decimal integer d: %d", newValuePtr);
61 if (*n != *newValuePtr) {
62 log_err("%%d Got: %d, Expected: %d\n", *newValuePtr, *n);
66 *newValuePtr = 1;
67 u_sscanf(uStringBuf, "Signed decimal integer i: %i", newValuePtr);
68 if (*n != *newValuePtr) {
69 log_err("%%i Got: %i, Expected: %i\n", *newValuePtr, *n);
73 *newValuePtr = 1
    [all...]
filetst.c 35 int32_t newValuePtr[1];
144 *newValuePtr = 1;
145 u_fscanf(myFile, "Signed decimal integer %%d: %d\n", newValuePtr);
146 if (*n != *newValuePtr) {
147 log_err("%%d Got: %d, Expected: %d\n", *newValuePtr, *n);
149 *newValuePtr = 1;
150 u_fscanf(myFile, "Signed decimal integer %%i: %i\n", newValuePtr);
151 if (*n != *newValuePtr) {
152 log_err("%%i Got: %i, Expected: %i\n", *newValuePtr, *n);
154 *newValuePtr = 1
    [all...]

Completed in 5554 milliseconds