Home
last modified time | relevance | path

Searched refs:outf (Results 1 – 18 of 18) sorted by relevance

/llvm-project-15.0.7/polly/lib/External/isl/imath/tests/gmp-compat-test/
H A Dgenpytest.py7 def print_header(outf): argument
8 outf.write("""
20 def print_cmp(outf): argument
21 outf.write("""
108 outf.write("""
120 outf.write("""
126 outf.write(" }\n")
131 outf = sys.stdout variable
132 print_header(outf)
133 print_cmp(outf)
[all …]
H A Dgenctest.py187 def print_test_code(self, outf): argument
201 outf.write(code)
202 outf.write("\n")
243 def print_gmp_header(outf): argument
249 outf.write(code)
252 def print_imath_header(outf): argument
260 outf.write(code)
263 def print_gmp_tests(outf): argument
264 print_gmp_header(outf)
270 def print_imath_tests(outf): argument
[all …]
/llvm-project-15.0.7/libcxx/test/std/iterators/stream.iterators/ostream.iterator/ostream.iterator.ops/
H A Dassign_t.pass.cpp27 std::ostringstream outf; in main() local
28 std::ostream_iterator<int> i(outf); in main()
30 assert(outf.str() == "2"); in main()
33 std::ostringstream outf; in main() local
34 std::ostream_iterator<int> i(outf, ", "); in main()
36 assert(outf.str() == "2, "); in main()
40 std::wostringstream outf; in main() local
41 std::ostream_iterator<int, wchar_t> i(outf); in main()
43 assert(outf.str() == L"2"); in main()
46 std::wostringstream outf; in main() local
[all …]
/llvm-project-15.0.7/libcxx/test/std/iterators/stream.iterators/ostream.iterator/ostream.iterator.cons.des/
H A Dostream_delim.pass.cpp32 std::ostringstream outf; in main() local
33 std::ostream_iterator<int> i(outf, ", "); in main()
34 assert(outf.good()); in main()
38 std::wostringstream outf; in main() local
39 std::ostream_iterator<double, wchar_t> i(outf, L", "); in main()
40 assert(outf.good()); in main()
44 StringStream outf; in main() local
45 std::ostream_iterator<int, char, MyTraits> i(outf, ", "); in main()
46 assert(outf.good()); in main()
H A Dostream.pass.cpp31 std::ostringstream outf; in main() local
32 std::ostream_iterator<int> i(outf); in main()
33 assert(outf.good()); in main()
36 StringStream outf; in main() local
37 std::ostream_iterator<int, char, MyTraits> i(outf); in main()
38 assert(outf.good()); in main()
H A Dcopy.pass.cpp23 std::ostringstream outf; in main() local
24 std::ostream_iterator<int> i(outf); in main()
26 assert(outf.good()); in main()
/llvm-project-15.0.7/libcxx/test/std/iterators/stream.iterators/ostreambuf.iterator/ostreambuf.iter.ops/
H A Dassign_c.pass.cpp25 std::ostringstream outf; in main() local
26 std::ostreambuf_iterator<char> i(outf); in main()
28 assert(outf.str() == "a"); in main()
30 assert(outf.str() == "ab"); in main()
34 std::wostringstream outf; in main() local
35 std::ostreambuf_iterator<wchar_t> i(outf); in main()
37 assert(outf.str() == L"a"); in main()
39 assert(outf.str() == L"ab"); in main()
H A Dderef.pass.cpp24 std::ostringstream outf; in main() local
25 std::ostreambuf_iterator<char> i(outf); in main()
31 std::wostringstream outf; in main() local
32 std::ostreambuf_iterator<wchar_t> i(outf); in main()
H A Dincrement.pass.cpp25 std::ostringstream outf; in main() local
26 std::ostreambuf_iterator<char> i(outf); in main()
34 std::wostringstream outf; in main() local
35 std::ostreambuf_iterator<wchar_t> i(outf); in main()
/llvm-project-15.0.7/libcxx/test/std/iterators/stream.iterators/ostreambuf.iterator/ostreambuf.iter.cons/
H A Dostream.pass.cpp24 std::ostringstream outf; in main() local
25 std::ostreambuf_iterator<char> i(outf); in main()
30 std::wostringstream outf; in main() local
31 std::ostreambuf_iterator<wchar_t> i(outf); in main()
H A Dstreambuf.pass.cpp24 std::ostringstream outf; in main() local
25 std::ostreambuf_iterator<char> i(outf.rdbuf()); in main()
30 std::wostringstream outf; in main() local
31 std::ostreambuf_iterator<wchar_t> i(outf.rdbuf()); in main()
/llvm-project-15.0.7/lldb/test/API/functionalities/postmortem/FreeBSDKernel/tools/
H A Dcopy-sparse.py17 outf = args.outfile
22 outf.write(inf.read(1024))
31 outf.seek(offset)
32 outf.write(inf.read(size))
/llvm-project-15.0.7/libcxx/test/std/input.output/filesystems/fs.op.funcs/fs.op.copy_file/
H A Dcopy_file_large.pass.cpp57 std::FILE* outf = std::fopen(source.string().c_str(), "a"); in TEST_CASE() local
58 TEST_REQUIRE(outf != nullptr); in TEST_CASE()
59 std::fputs(additional_data.c_str(), outf); in TEST_CASE()
60 std::fclose(outf); in TEST_CASE()
/llvm-project-15.0.7/lldb/test/Shell/Register/Core/Inputs/
H A Dstrip-coredump.py16 def strip_non_notes(elf, inf, outf): argument
23 outf.write(inf.read(next_segment_offset))
30 outf.seek(seg.header.p_offset)
33 outf.write(inf.read(seg.header.p_filesz))
/llvm-project-15.0.7/lldb/test/API/python_api/file_handle/
H A DTestFileHandle.py311 outsbf = lldb.SBFile(outf.fileno(), "w", False)
330 with open(self.out_filename, 'w') as outf, \
347 with open(self.out_filename, 'wb') as outf, \
363 outf = io.StringIO()
364 status = self.dbg.SetOutputFile(lldb.SBFile(outf))
371 output = outf.getvalue()
378 outf = io.BytesIO()
379 status = self.dbg.SetOutputFile(lldb.SBFile(outf))
386 output = outf.getvalue()
826 with open(self.out_filename, 'w') as outf:
[all …]
/llvm-project-15.0.7/lldb/test/API/functionalities/postmortem/FreeBSDKernel/
H A DTestFreeBSDKernelVMCore.py26 with open(dest, "wb") as outf:
27 shutil.copyfileobj(inf, outf)
/llvm-project-15.0.7/llvm/test/CodeGen/AMDGPU/
H A Dhsa-metadata-kernel-code-props.ll71 i32 addrspace(1)* %oute, i32 addrspace(1)* %outf, [8 x i32],
92 store i32 %inf, i32 addrspace(1)* %outf
H A Dhsa-metadata-kernel-code-props-v3.ll63 i32 addrspace(1)* %oute, i32 addrspace(1)* %outf, [8 x i32],
84 store i32 %inf, i32 addrspace(1)* %outf