Lines Matching refs:u_fscanf

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