Searched refs:text_file (Results 1 – 7 of 7) sorted by relevance
/external/autotest/client/common_lib/ |
D | powerplay_util.py | 71 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/ |
D | main-font-text.hh | 82 …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()
|
D | options.hh | 330 text_file = NULL; in text_options_t() 343 g_free (text_file); in ~text_options_t() 353 if (text && text_file) in post_parse() 365 char *text_file; member
|
D | options.cc | 426 …{"text-file", 0, 0, G_OPTION_ARG_STRING, &this->text_file, "Set input text file-name\n\n If no… in add_options() 631 if (!text_file) in get_line() 634 if (0 != strcmp (text_file, "-")) in get_line() 635 fp = fopen (text_file, "r"); in get_line() 641 text_file, strerror (errno)); in get_line()
|
/external/webrtc/webrtc/tools/barcode_tools/ |
D | barcode_decoder.py | 106 text_file = open('%s.txt' % file_name[:-4], 'w') 107 text_file.write(out) 108 text_file.close()
|
/external/chromium-trace/catapult/systrace/systrace/agents/ |
D | atrace_agent.py | 181 text_file=False, chunk_size=1) 183 text_file=True) 434 def __init__(self, file_object, output_queue, text_file, chunk_size=-1): argument 450 self._text_file = text_file 452 assert text_file or chunk_size > 0
|
/external/v8/tools/ |
D | perf-to-html.py | 166 with open(self.output_file_, "w") as text_file: 167 text_file.write(string_data)
|