Lines Matching refs:u_fscanf

159     u_fscanf(myFile, "Signed decimal integer %%d: %d\n", newValuePtr);  in TestFileFromICU()
164 u_fscanf(myFile, "Signed decimal integer %%i: %i\n", newValuePtr); in TestFileFromICU()
169 u_fscanf(myFile, "Unsigned octal integer %%o: %o\n", newValuePtr); in TestFileFromICU()
174 u_fscanf(myFile, "Unsigned decimal integer %%u: %u\n", newValuePtr); in TestFileFromICU()
179 u_fscanf(myFile, "Lowercase unsigned hexadecimal integer %%x: %x\n", newValuePtr); in TestFileFromICU()
184 u_fscanf(myFile, "Uppercase unsigned hexadecimal integer %%X: %X\n", newValuePtr); in TestFileFromICU()
189 u_fscanf(myFile, "Float %%f: %lf\n", newDoubleValuePtr); in TestFileFromICU()
194 u_fscanf(myFile, "Lowercase float %%e: %le\n", newDoubleValuePtr); in TestFileFromICU()
199 u_fscanf(myFile, "Uppercase float %%E: %lE\n", newDoubleValuePtr); in TestFileFromICU()
204 u_fscanf(myFile, "Lowercase float %%g: %lg\n", newDoubleValuePtr); in TestFileFromICU()
209 u_fscanf(myFile, "Uppercase float %%G: %lG\n", newDoubleValuePtr); in TestFileFromICU()
214 u_fscanf(myFile, "Pointer %%p: %p\n", &ptr); in TestFileFromICU()
218 u_fscanf(myFile, "Char %%c: %c\n", myString); in TestFileFromICU()
222 u_fscanf(myFile, "UChar %%C: %C\n", myUString); in TestFileFromICU()
226 u_fscanf(myFile, "String %%s: %s\n", myString); in TestFileFromICU()
230 u_fscanf(myFile, "NULL String %%s: %s\n", myString); in TestFileFromICU()
234 u_fscanf(myFile, "Unicode String %%S: %S\n", myUString); in TestFileFromICU()
239 u_fscanf(myFile, "NULL Unicode String %%S: %S\n", myUString); in TestFileFromICU()
245 u_fscanf(myFile, "Percent %%P (non-ANSI): %P\n", newDoubleValuePtr); in TestFileFromICU()
250 u_fscanf(myFile, "Spell Out %%V (non-ANSI): %V\n", newDoubleValuePtr); in TestFileFromICU()
324 if (u_fscanf(myFile, "%S\n", myUString) != 0) { in TestFileFromICU()
384 u_fscanf(uStdIn, "%d", &num); in StdinBuffering()
386 u_fscanf(uStdIn, "%d", &num); in StdinBuffering()
1344 uNumScanned = u_fscanf(myFile, format, uBuffer); in TestFScanSetFormat()
1430 uNumScanned = u_fscanf(myFile, format, uBuffer); in TestBadFScanfFormat()