Home
last modified time | relevance | path

Searched refs:StringIO (Results 1 – 21 of 21) sorted by relevance

/llvm-project/cross-project-tests/debuginfo-tests/dexter/dex/utils/
H A DPrettyOutputBase.py19 from io import StringIO
291 stream = Stream(StringIO())
297 stream = Stream(StringIO())
303 stream = Stream(StringIO())
309 stream = Stream(StringIO())
315 stream = Stream(StringIO())
321 stream = Stream(StringIO())
330 stream = Stream(StringIO())
336 stream = Stream(StringIO())
343 stream = Stream(StringIO())
[all …]
H A DUnitTests.py13 from io import StringIO
44 stream = StringIO()
/llvm-project/llvm/utils/lit/lit/builtin_commands/
H A Dcat.py5 from StringIO import StringIO
7 from io import StringIO
11 newdata = StringIO()
/llvm-project/lldb/test/API/terminal/
H A DTestSTTYBeforeAndAfter.py55 child.logfile_send = child_send1 = io.StringIO()
56 child.logfile_read = child_read1 = io.StringIO()
73 child.logfile_send = child_send2 = io.StringIO()
74 child.logfile_read = child_read2 = io.StringIO()
/llvm-project/lldb/test/API/python_api/disassemble-raw-data/
H A DTestDisassemble_VST1_64.py5 from io import StringIO
67 sio = StringIO()
75 sio = StringIO()
/llvm-project/clang/tools/clang-format/
H A Dclang-format-diff.py33 from io import StringIO
35 from io import BytesIO as StringIO unknown
178 formatted_code = StringIO(stdout).readlines()
/llvm-project/lldb/test/API/python_api/file_handle/
H A DTestFileHandle.py63 class FlushTestIO(io.StringIO):
285 f = io.StringIO()
298 f = io.StringIO()
362 inf = io.StringIO("help help\nexpression/x ~0\n")
363 outf = io.StringIO()
405 f = io.StringIO()
414 f = io.StringIO()
482 f = io.StringIO()
492 f = io.StringIO()
499 f = io.StringIO()
[all …]
/llvm-project/lldb/utils/lui/
H A Dlldbutil.py54 buf = io.StringIO()
784 output = io.StringIO() if string_buffer else sys.stdout
850 output = io.StringIO() if string_buffer else sys.stdout
909 output = io.StringIO() if string_buffer else sys.stdout
998 output = io.StringIO()
1032 output = io.StringIO()
1058 output = io.StringIO()
/llvm-project/libcxx/utils/
H A Dgenerate_indic_conjunct_break_table.py16 from io import StringIO
259 result = StringIO()
H A Dgenerate_extended_grapheme_cluster_table.py16 from io import StringIO
266 result = StringIO()
H A Dgenerate_escaped_output_table.py16 from io import StringIO
270 result = StringIO()
H A Dgenerate_width_estimation_table.py16 from io import StringIO
301 result = StringIO()
/llvm-project/lldb/packages/Python/lldbsuite/test/
H A Dlldbutil.py120 buf = io.StringIO()
1164 output = io.StringIO() if string_buffer else sys.stdout
1230 output = io.StringIO() if string_buffer else sys.stdout
1421 output = io.StringIO()
1455 output = io.StringIO()
1481 output = io.StringIO()
H A Dlldbtest.py351 class recording(io.StringIO):
359 """Create a io.StringIO instance; record the session obj and trace flag."""
360 io.StringIO.__init__(self)
369 Just return the io.StringIO object.
377 recordings to our session object. And close the io.StringIO object, too.
/llvm-project/lldb/test/API/test_utils/base/
H A DTestBaseTest.py19 buf = io.StringIO()
/llvm-project/clang/bindings/python/tests/cindex/
H A Dtest_translation_unit.py106 from io import StringIO
109 "fake.c", unsaved_files=[("fake.c", StringIO("int x;"))]
111 from io import BytesIO as StringIO global() unknown
/llvm-project/clang/tools/scan-view/share/
H A DScanView.py20 from io import StringIO, BytesIO
22 from io import BytesIO, BytesIO as StringIO unknown
149 s = StringIO()
322 s = StringIO()
/llvm-project/llvm/utils/lit/lit/
H A DTestRunner.py21 from StringIO import StringIO
23 from io import StringIO
379 stdout = StringIO()
444 stderr = StringIO()
490 stderr = StringIO()
/llvm-project/lldb/test/API/python_api/frame/
H A DTestFrames.py41 session = io.StringIO()
/llvm-project/mlir/test/python/ir/
H A Doperation.py597 f = io.StringIO()
611 f = io.StringIO()
/llvm-project/mlir/python/mlir/_mlir_libs/_mlir/
H A Dir.pyi208 ) -> io.BytesIO | io.StringIO: