Home
last modified time | relevance | path

Searched refs:text_file (Results 1 – 16 of 16) sorted by relevance

/external/autotest/client/common_lib/
Dpowerplay_util.py71 self.text_file = open(_power_play_data_file, 'w')
77 self.text_file.write(title_row)
85 not self.text_file.closed):
86 self.text_file.write(current_timestamp + ',' + pp_data)
91 self.text_file.write('No data from powerplay. Check connection.')
99 if not self.text_file.closed:
100 self.text_file.close()
/external/harfbuzz_ng/util/
Dmain-font-text.hh82 …if (argc && !input.text && !input.text_file) input.text = locale_to_utf8 (argv[0]), argc--, argv++; in main()
87 if (!input.text && !input.text_file) in main()
88 input.text_file = g_strdup ("-"); in main()
Doptions.hh336 text_file = NULL; in text_options_t()
349 g_free (text_file); in ~text_options_t()
359 if (text && text_file) in post_parse()
371 char *text_file; member
Doptions.cc490 …{"text-file", 0, 0, G_OPTION_ARG_STRING, &this->text_file, "Set input text file-name\n\n If no… in add_options()
697 if (!text_file) in get_line()
700 if (0 != strcmp (text_file, "-")) in get_line()
701 fp = fopen (text_file, "r"); in get_line()
707 text_file, strerror (errno)); in get_line()
/external/webrtc/webrtc/tools/barcode_tools/
Dbarcode_decoder.py106 text_file = open('%s.txt' % file_name[:-4], 'w')
107 text_file.write(out)
108 text_file.close()
/external/v8/tools/
Dperf-to-html.py166 with open(self.output_file_, "w") as text_file:
167 text_file.write(string_data)
/external/python/cpython2/Lib/distutils/tests/
Dtest_text_file.py4 from distutils.text_file import TextFile
/external/python/cpython2/Lib/test/
Dtest_sundry.py25 import distutils.text_file
/external/autotest/client/site_tests/graphics_Idle/
Dgraphics_Idle.py77 with open(path, 'r') as text_file:
78 logging.info('Content of %s\n%s', path, text_file.read())
/external/python/cpython2/Misc/
DBeOS-setup.py9 from distutils import text_file
97 input = text_file.TextFile('Modules/Setup', join_lines=1)
/external/python/cpython2/Lib/distutils/
Dextension.py142 from distutils.text_file import TextFile
Dsysconfig.py292 from distutils.text_file import TextFile
/external/python/cpython2/Lib/distutils/command/
Dsdist.py15 from distutils.text_file import TextFile
/external/python/cpython2/
Dsetup.py12 from distutils import text_file
243 input = text_file.TextFile(filename, join_lines=1)
/external/flatbuffers/docs/source/
DCppUsage.md368 parser.Parse(text_file.c_str());
/external/python/cpython2/Doc/distutils/
Dapiref.rst1521 :mod:`distutils.text_file` --- The TextFile class
1524 .. module:: distutils.text_file