Lines Matching refs:u_fscanf

145     u_fscanf(myFile, "Signed decimal integer %%d: %d\n", newValuePtr);  in TestFileFromICU()
150 u_fscanf(myFile, "Signed decimal integer %%i: %i\n", newValuePtr); in TestFileFromICU()
155 u_fscanf(myFile, "Unsigned octal integer %%o: %o\n", newValuePtr); in TestFileFromICU()
160 u_fscanf(myFile, "Unsigned decimal integer %%u: %u\n", newValuePtr); in TestFileFromICU()
165 u_fscanf(myFile, "Lowercase unsigned hexadecimal integer %%x: %x\n", newValuePtr); in TestFileFromICU()
170 u_fscanf(myFile, "Uppercase unsigned hexadecimal integer %%X: %X\n", newValuePtr); in TestFileFromICU()
175 u_fscanf(myFile, "Float %%f: %lf\n", newDoubleValuePtr); in TestFileFromICU()
180 u_fscanf(myFile, "Lowercase float %%e: %le\n", newDoubleValuePtr); in TestFileFromICU()
185 u_fscanf(myFile, "Uppercase float %%E: %lE\n", newDoubleValuePtr); in TestFileFromICU()
190 u_fscanf(myFile, "Lowercase float %%g: %lg\n", newDoubleValuePtr); in TestFileFromICU()
195 u_fscanf(myFile, "Uppercase float %%G: %lG\n", newDoubleValuePtr); in TestFileFromICU()
200 u_fscanf(myFile, "Pointer %%p: %p\n", &ptr); in TestFileFromICU()
204 u_fscanf(myFile, "Char %%c: %c\n", myString); in TestFileFromICU()
208 u_fscanf(myFile, "UChar %%C: %C\n", myUString); in TestFileFromICU()
212 u_fscanf(myFile, "String %%s: %s\n", myString); in TestFileFromICU()
216 u_fscanf(myFile, "NULL String %%s: %s\n", myString); in TestFileFromICU()
220 u_fscanf(myFile, "Unicode String %%S: %S\n", myUString); in TestFileFromICU()
225 u_fscanf(myFile, "NULL Unicode String %%S: %S\n", myUString); in TestFileFromICU()
231 u_fscanf(myFile, "Percent %%P (non-ANSI): %P\n", newDoubleValuePtr); in TestFileFromICU()
236 u_fscanf(myFile, "Spell Out %%V (non-ANSI): %V\n", newDoubleValuePtr); in TestFileFromICU()
310 if (u_fscanf(myFile, "%S\n", myUString) != 0) { in TestFileFromICU()
356 u_fscanf(uStdIn, "%d", &num); in StdinBuffering()
358 u_fscanf(uStdIn, "%d", &num); in StdinBuffering()
1315 uNumScanned = u_fscanf(myFile, format, uBuffer); in TestFScanSetFormat()
1400 uNumScanned = u_fscanf(myFile, format, uBuffer); in TestBadFScanfFormat()