Searched refs:sio (Results 1 – 25 of 30) sorted by relevance
12
/third_party/python/Lib/test/test_json/ |
D | test_indent.py | 56 sio = StringIO() 57 self.json.dump(h, sio, indent=indent) 58 self.assertEqual(sio.getvalue(), expected)
|
D | test_dump.py | 8 sio = StringIO() 9 self.json.dump({}, sio) 10 self.assertEqual(sio.getvalue(), '{}')
|
/third_party/python/Lib/logging/ |
D | __init__.py | 631 sio = io.StringIO() 636 traceback.print_exception(ei[0], ei[1], tb, None, sio) 637 s = sio.getvalue() 638 sio.close() 1574 sio = io.StringIO() 1575 sio.write('Stack (most recent call last):\n') 1576 traceback.print_stack(f, file=sio) 1577 sinfo = sio.getvalue() 1580 sio.close()
|
/third_party/lwip/src/netif/ |
D | FILES | 17 protocol. It requires a sio (serial I/O) module to work.
|
/third_party/python/Lib/distutils/tests/ |
D | test_dist.py | 269 sio = io.StringIO() 270 dist.metadata.write_pkg_file(sio) 271 return sio.getvalue()
|
/third_party/icu/icu4c/source/data/lang/ |
D | seh.txt | 22 id{"indonésio"}
|
D | pt.txt | 180 frr{"frísio setentrional"} 183 fy{"frísio ocidental"} 230 id{"indonésio"}
|
D | pt_PT.txt | 56 frs{"frísio oriental"}
|
/third_party/skia/third_party/externals/icu/source/data/lang/ |
D | seh.txt | 22 id{"indonésio"}
|
D | pt.txt | 170 frr{"frísio setentrional"} 173 fy{"frísio ocidental"} 218 id{"indonésio"}
|
D | pt_PT.txt | 56 frs{"frísio oriental"}
|
/third_party/python/Lib/test/ |
D | test_nntplib.py | 425 sio = _NNTPServerIO(handler) 428 file = io.BufferedRWPair(sio, sio) 429 return (sio, file) 458 self.sio, file = make_mock_file(self.handler) 881 self.assertFalse(self.sio.closed) 884 self.assertTrue(self.sio.closed)
|
D | test_mimetypes.py | 57 sio = io.StringIO("x-application/x-unittest pyunit\n") 58 self.db.readfp(sio)
|
D | test_configparser.py | 561 sio = src 563 sio = io.StringIO(src) 565 cf.read_file(sio) 1401 sio = io.StringIO() 1402 cp.write(sio) 1403 return sio.getvalue() 1641 sio = io.StringIO(""" 1648 parser.readfp(sio, filename='StringIO')
|
D | test_traceback.py | 842 with captured_output("stderr") as sio: 844 self.assertEqual(sio.getvalue(), s)
|
D | _test_multiprocessing.py | 4693 sio = io.StringIO() 4694 flike = _file_like(sio) 4698 assert sio.getvalue() == 'foo'
|
/third_party/python/Lib/ |
D | pprint.py | 156 sio = _StringIO() 157 self._format(object, sio, 0, 0, {}, 0) 158 return sio.getvalue()
|
/third_party/python/Lib/xml/etree/ |
D | ElementTree.py | 1758 sio = None 1760 sio = out = io.StringIO() 1770 return sio.getvalue() if sio is not None else None
|
/third_party/skia/third_party/externals/icu/source/data/locales/ |
D | kam.txt | 255 dn{"Kĩsio kya ĩsaa"}
|
/third_party/icu/icu4c/source/data/locales/ |
D | kam.txt | 275 dn{"Kĩsio kya ĩsaa"}
|
/third_party/mesa3d/ |
D | .mailmap | 175 Daniel Skinner <sio@users.sourceforge.net> sio <sio>
|
/third_party/mesa3d/src/gallium/frontends/nine/ |
D | nine_shader.c | 345 unsigned sio; member 3208 assert(inst_table[i].sio < ARRAY_SIZE(tx->op_info_map)); in create_op_info_map() 3211 tx->op_info_map[inst_table[i].sio] = i; in create_op_info_map() 3215 assert(inst_table[i].sio < ARRAY_SIZE(tx->op_info_map)); in create_op_info_map() 3218 tx->op_info_map[inst_table[i].sio] = i; in create_op_info_map()
|
/third_party/python/Doc/faq/ |
D | programming.rst | 908 >>> sio = io.StringIO(s) 909 >>> sio.getvalue() 911 >>> sio.seek(7) 913 >>> sio.write("there!") 915 >>> sio.getvalue()
|
/third_party/gstreamer/gstplugins_base/gst-libs/gst/tag/ |
D | lang-tables.dat | 503 { "", "sio", ISO_639_FLAG_2T | ISO_639_FLAG_2B, 3352 },
|
/third_party/skia/third_party/externals/expat/expat/ |
D | Changes | 213 Kleber Tarcísio
|
12