Home
last modified time | relevance | path

Searched refs:write_text (Results 1 – 17 of 17) sorted by relevance

/third_party/ffmpeg/libavformat/
Dlibmodplug.c272 static void write_text(uint8_t *dst, const char *s, int linesize, int x, int y) in write_text() function
285 write_text(pkt->data, name ":", modplug->linesize, 0+1, line+1); \
286 write_text(pkt->data, intbuf, modplug->linesize, 10+1, line+1); \
/third_party/rust/crates/clap/.github/workflows/
Drelease-notes.py39 args.output.write_text(notes)
/third_party/skia/infra/bots/recipe_modules/run/
Dapi.py47 return self.m.file.write_text('write %s' % self.m.path.basename(filename),
/third_party/python/Lib/test/
Dtest_runpy.py775 ham.write_text(
795 run_module.write_text(
808 run_module_as_main.write_text(
Dtest_mimetypes.py72 file.write_text(data, encoding="utf-8")
Dtest_pathlib.py1555 (p / 'fileA').write_text('äbcdefg', encoding='latin-1')
1559 self.assertRaises(TypeError, (p / 'fileA').write_text, b'somebytes')
1565 (p / 'fileA').write_text('abcde\r\nfghlk\n\rmnopq', newline='\n')
1569 (p / 'fileA').write_text('abcde\r\nfghlk\n\rmnopq', newline='\r')
1573 (p / 'fileA').write_text('abcde\r\nfghlk\n\rmnopq', newline='\r\n')
1578 (p / 'fileA').write_text('abcde\nfghlk\n\rmnopq')
Dtest_compileall.py472 path.write_text('# for test_compileall', encoding="utf-8")
/third_party/skia/infra/bots/recipes/
Dperf_skottietrace.py125 api.file.write_text('write output JSON', json_path, json_contents)
Dperf_skottiewasm_lottieweb.py202 api.file.write_text('write output JSON', json_path, json_contents)
/third_party/gn/infra/recipes/
Dgn.py214 api.file.write_text('write %s' % build_ninja_clang_path,
/third_party/skia/infra/bots/recipe_modules/flavor/
Dandroid.py504 self.m.file.write_text('Quarantining Bot',
/third_party/python/Tools/scripts/
Dstable_abi.py275 path.write_text(generated)
/third_party/python/Doc/library/
Dpathlib.rst993 >>> p.write_text('Text file contents')
1213 .. method:: Path.write_text(data, encoding=None, errors=None, newline=None)
1219 >>> p.write_text('Text file contents')
/third_party/python/Lib/
Dpathlib.py1144 def write_text(self, data, encoding=None, errors=None, newline=None): member in Path
/third_party/python/Misc/NEWS.d/
D3.10.0a2.rst488 Added *newline* parameter to ``pathlib.Path.write_text()``.
D3.5.0a1.rst2001 Added convenience methods read_text/write_text and read_bytes/ write_bytes
/third_party/python/Doc/whatsnew/
D3.5.rst1549 New :meth:`Path.write_text() <pathlib.Path.write_text>`,
1560 >>> p.expanduser().write_text('ham')