Searched refs:newValuePtr (Results 1 - 4 of 4) sorted by relevance

/external/chromium_org/third_party/icu/source/test/iotest/
H A Dstrtst.c25 int32_t newValuePtr[1]; local
56 *newValuePtr = 1;
57 u_sscanf(uStringBuf, "Signed decimal integer d: %d", newValuePtr);
58 if (*n != *newValuePtr) {
59 log_err("%%d Got: %d, Expected: %d\n", *newValuePtr, *n);
63 *newValuePtr = 1;
64 u_sscanf(uStringBuf, "Signed decimal integer i: %i", newValuePtr);
65 if (*n != *newValuePtr) {
66 log_err("%%i Got: %i, Expected: %i\n", *newValuePtr, *n);
70 *newValuePtr
[all...]
H A Dfiletst.c30 int32_t newValuePtr[1]; local
139 *newValuePtr = 1;
140 u_fscanf(myFile, "Signed decimal integer %%d: %d\n", newValuePtr);
141 if (*n != *newValuePtr) {
142 log_err("%%d Got: %d, Expected: %d\n", *newValuePtr, *n);
144 *newValuePtr = 1;
145 u_fscanf(myFile, "Signed decimal integer %%i: %i\n", newValuePtr);
146 if (*n != *newValuePtr) {
147 log_err("%%i Got: %i, Expected: %i\n", *newValuePtr, *n);
149 *newValuePtr
[all...]
/external/icu/icu4c/source/test/iotest/
H A Dstrtst.c25 int32_t newValuePtr[1]; local
56 *newValuePtr = 1;
57 u_sscanf(uStringBuf, "Signed decimal integer d: %d", newValuePtr);
58 if (*n != *newValuePtr) {
59 log_err("%%d Got: %d, Expected: %d\n", *newValuePtr, *n);
63 *newValuePtr = 1;
64 u_sscanf(uStringBuf, "Signed decimal integer i: %i", newValuePtr);
65 if (*n != *newValuePtr) {
66 log_err("%%i Got: %i, Expected: %i\n", *newValuePtr, *n);
70 *newValuePtr
[all...]
H A Dfiletst.c32 int32_t newValuePtr[1]; local
141 *newValuePtr = 1;
142 u_fscanf(myFile, "Signed decimal integer %%d: %d\n", newValuePtr);
143 if (*n != *newValuePtr) {
144 log_err("%%d Got: %d, Expected: %d\n", *newValuePtr, *n);
146 *newValuePtr = 1;
147 u_fscanf(myFile, "Signed decimal integer %%i: %i\n", newValuePtr);
148 if (*n != *newValuePtr) {
149 log_err("%%i Got: %i, Expected: %i\n", *newValuePtr, *n);
151 *newValuePtr
[all...]

Completed in 53 milliseconds