OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:newValuePtr
(Results
1 - 2
of
2
) sorted by null
/external/icu4c/test/iotest/
strtst.c
25
int32_t
newValuePtr
[1];
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
= 1
[
all
...]
filetst.c
30
int32_t
newValuePtr
[1];
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
= 1
[
all
...]
Completed in 46 milliseconds