Home | History | Annotate | Download | only in iotest

Lines Matching refs:u_fscanf

142     u_fscanf(myFile, "Signed decimal integer %%d: %d\n", newValuePtr);
147 u_fscanf(myFile, "Signed decimal integer %%i: %i\n", newValuePtr);
152 u_fscanf(myFile, "Unsigned octal integer %%o: %o\n", newValuePtr);
157 u_fscanf(myFile, "Unsigned decimal integer %%u: %u\n", newValuePtr);
162 u_fscanf(myFile, "Lowercase unsigned hexadecimal integer %%x: %x\n", newValuePtr);
167 u_fscanf(myFile, "Uppercase unsigned hexadecimal integer %%X: %X\n", newValuePtr);
172 u_fscanf(myFile, "Float %%f: %lf\n", newDoubleValuePtr);
177 u_fscanf(myFile, "Lowercase float %%e: %le\n", newDoubleValuePtr);
182 u_fscanf(myFile, "Uppercase float %%E: %lE\n", newDoubleValuePtr);
187 u_fscanf(myFile, "Lowercase float %%g: %lg\n", newDoubleValuePtr);
192 u_fscanf(myFile, "Uppercase float %%G: %lG\n", newDoubleValuePtr);
197 u_fscanf(myFile, "Pointer %%p: %p\n", &ptr);
201 u_fscanf(myFile, "Char %%c: %c\n", myString);
205 u_fscanf(myFile, "UChar %%C: %C\n", myUString);
209 u_fscanf(myFile, "String %%s: %s\n", myString);
213 u_fscanf(myFile, "NULL String %%s: %s\n", myString);
217 u_fscanf(myFile, "Unicode String %%S: %S\n", myUString);
222 u_fscanf(myFile, "NULL Unicode String %%S: %S\n", myUString);
228 u_fscanf(myFile, "Percent %%P (non-ANSI): %P\n", newDoubleValuePtr);
233 u_fscanf(myFile, "Spell Out %%V (non-ANSI): %V\n", newDoubleValuePtr);
307 if (u_fscanf(myFile, "%S\n", myUString) != 0) {
308 log_err("u_fscanf read data while reading the end of the file.\n");
353 u_fscanf(uStdIn, "%d", &num);
355 u_fscanf(uStdIn, "%d", &num);
1312 uNumScanned = u_fscanf(myFile, format, uBuffer);
1397 uNumScanned = u_fscanf(myFile, format, uBuffer);