Home
last modified time | relevance | path

Searched refs:FileInput (Results 1 - 5 of 5) sorted by relevance

/third_party/python/Lib/test/
H A Dtest_fileinput.py25 from fileinput import FileInput, hook_encoded namespace
36 # The fileinput module has 2 interfaces: the FileInput class which does
99 fi = FileInput(files=(t1, t2, t3, t4), encoding="utf-8")
110 fi = FileInput(files=(t1, t2, t3, t4), encoding="utf-8")
129 fi = FileInput(files=(t1, t2, t3, t4, '-'), encoding="utf-8")
143 fi = FileInput(files=(t1, t2, t3, t4), encoding="utf-8")
154 fi = FileInput(files=(t1, t2, t3, t4), inplace=1, encoding="utf-8")
162 fi = FileInput(files=(t1, t2, t3, t4), encoding="utf-8")
185 fi = FileInput(files=(t1, t2, t3, t4), encoding="utf-8")
203 fi = FileInput(file
[all...]
H A Dtest_genericalias.py25 from fileinput import FileInput namespace
95 FileInput,
/third_party/python/Lib/
H A Dfileinput.py32 setting the mode parameter to input() or FileInput.__init__().
48 Class FileInput is the implementation; its methods filename(),
57 passed to input() or to the FileInput constructor, the file is moved
73 "fileno", "isfirstline", "isstdin", "FileInput", "hook_compressed",
80 """Return an instance of the FileInput class, which can be iterated.
82 The parameters are passed to the constructor of the FileInput class.
89 _state = FileInput(files, inplace, backup, mode=mode, openhook=openhook,
171 class FileInput: class
172 """FileInput([files[, inplace[, backup]]], *, mode=None, openhook=None)
174 Class FileInput i
[all...]
/third_party/astc-encoder/Source/
H A Dwuffs-v0.3.c10403 // FileInput is an Input that reads from a file source.
10406 class FileInput : public Input {
10408 FileInput(FILE* f);
10416 FileInput(const FileInput&) = delete;
10417 FileInput& operator=(const FileInput&) = delete;
44040 FileInput::FileInput(FILE* f) : m_f(f) {} FileInput() function in FileInput
[all...]
/third_party/skia/third_party/externals/wuffs/release/c/
H A Dwuffs-v0.3.c9696 // FileInput is an Input that reads from a file source.
9699 class FileInput : public Input {
9701 FileInput(FILE* f);
9709 FileInput(const FileInput&) = delete;
9710 FileInput& operator=(const FileInput&) = delete;
39206 FileInput::FileInput(FILE* f) : m_f(f) {} FileInput() function in FileInput
[all...]

Completed in 87 milliseconds