Home
last modified time | relevance | path

Searched refs:text_file (Results 1 – 7 of 7) 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.hh330 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
Doptions.cc426 …{"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/
Dbarcode_decoder.py106 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/
Datrace_agent.py181 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/
Dperf-to-html.py166 with open(self.output_file_, "w") as text_file:
167 text_file.write(string_data)