HomeSort by relevance Sort by last modified time
    Searched refs:line_buffering (Results 1 - 25 of 34) sorted by null

1 2

  /external/python/cpython3/Modules/_io/clinic/
textio.c.h 118 " line_buffering=False, write_through=False)\n"
147 "If line_buffering is True, a call to flush is implied when a call to\n"
153 const char *newline, int line_buffering,
160 static const char * const _keywords[] = {"buffer", "encoding", "errors", "newline", "line_buffering", "write_through", NULL};
166 int line_buffering = 0; local
170 &buffer, &encoding, &errors, &newline, &line_buffering, &write_through)) {
173 return_value = _io_TextIOWrapper___init___impl((textio *)self, buffer, encoding, errors, newline, line_buffering, write_through);
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/_io/
_iomodule.c 306 int line_buffering;
441 line_buffering = 1;
444 line_buffering = 0;
519 line_buffering);
303 int line_buffering; local
textio.c 651 "If line_buffering is True, a call to flush is implied when a call to\n"
671 char line_buffering; member in struct:__anon4386
827 "newline", "line_buffering",
833 int line_buffering = 0; local
842 &newline, &line_buffering))
920 self->line_buffering = line_buffering;
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/_io/
_iomodule.c 306 int line_buffering, isatty;
439 line_buffering = 1;
442 line_buffering = 0;
516 line_buffering);
303 int line_buffering, isatty; local
textio.c 635 "If line_buffering is True, a call to flush is implied when a call to\n"
655 char line_buffering; member in struct:__anon4699
811 "newline", "line_buffering",
817 int line_buffering = 0; local
826 &newline, &line_buffering))
904 self->line_buffering = line_buffering;
    [all...]
  /external/python/cpython2/Modules/_io/
_iomodule.c 306 int line_buffering;
441 line_buffering = 1;
444 line_buffering = 0;
519 line_buffering);
303 int line_buffering; local
textio.c 651 "If line_buffering is True, a call to flush is implied when a call to\n"
671 char line_buffering; member in struct:__anon32720
827 "newline", "line_buffering",
833 int line_buffering = 0; local
842 &newline, &line_buffering))
931 self->line_buffering = line_buffering;
    [all...]
  /external/python/cpython3/Modules/_io/
_iomodule.c 244 int line_buffering, is_number;
404 line_buffering = 1;
407 line_buffering = 0;
472 line_buffering);
243 int line_buffering, is_number; local
textio.c 643 char line_buffering; member in struct:__anon33327
795 line_buffering: int(c_default="0") = False
824 If line_buffering is True, a call to flush is implied when a call to
831 const char *newline, int line_buffering,
957 self->line_buffering = line_buffering;
    [all...]
  /external/python/cpython3/Python/
pylifecycle.c 1070 PyObject *line_buffering; local
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
_pyio.py 194 line_buffering = False
197 line_buffering = True
223 text = TextIOWrapper(buffer, encoding, errors, newline, line_buffering)
1542 def line_buffering(self): member in class:TextIOWrapper
    [all...]
  /external/python/cpython2/Lib/
_pyio.py 198 line_buffering = False
201 line_buffering = True
228 text = TextIOWrapper(buffer, encoding, errors, newline, line_buffering)
1563 def line_buffering(self): member in class:TextIOWrapper
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/
_pyio.py 195 line_buffering = False
198 line_buffering = True
224 text = TextIOWrapper(buffer, encoding, errors, newline, line_buffering)
1549 def line_buffering(self): member in class:TextIOWrapper
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/
_pyio.py 195 line_buffering = False
198 line_buffering = True
224 text = TextIOWrapper(buffer, encoding, errors, newline, line_buffering)
1549 def line_buffering(self): member in class:TextIOWrapper
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
_pyio.py 195 line_buffering = False
198 line_buffering = True
224 text = TextIOWrapper(buffer, encoding, errors, newline, line_buffering)
1549 def line_buffering(self): member in class:TextIOWrapper
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
_pyio.py 195 line_buffering = False
198 line_buffering = True
224 text = TextIOWrapper(buffer, encoding, errors, newline, line_buffering)
1549 def line_buffering(self): member in class:TextIOWrapper
    [all...]
  /external/python/cpython3/Lib/
_pyio.py 213 line_buffering = False
216 line_buffering = True
243 text = TextIOWrapper(buffer, encoding, errors, newline, line_buffering)
2007 def line_buffering(self): member in class:TextIOWrapper
    [all...]
tokenize.py 456 text = TextIOWrapper(buffer, encoding, line_buffering=True)
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_io.py     [all...]
test_memoryio.py 523 self.assertFalse(memio.line_buffering)
  /external/python/cpython2/Lib/test/
test_io.py     [all...]
test_memoryio.py 525 self.assertFalse(memio.line_buffering)
  /external/python/cpython3/Lib/test/
test_io.py     [all...]
test_memoryio.py 554 self.assertFalse(memio.line_buffering)
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_io.py     [all...]

Completed in 666 milliseconds

1 2