Home
last modified time | relevance | path

Searched refs:hfile (Results 1 – 2 of 2) sorted by relevance

/tools/asuite/aidegen/lib/
Dclion_project_file_gen_unittest.py97 hfile = StringIO()
103 clion_gen._write_header(hfile)
104 hfile.seek(0)
105 content = hfile.read()
119 hfile = StringIO()
129 clion_gen._write_c_compiler_paths(hfile)
130 hfile.seek(0)
131 content = hfile.read()
140 hfile = StringIO()
146 clion_gen._write_source_files(hfile)
[all …]
Dclion_project_file_gen.py231 with open(self.cc_path, 'w') as hfile:
232 self._write_cmakelists_file(hfile)
234 @common_util.check_args(hfile=(TextIOWrapper, StringIO))
236 def _write_cmakelists_file(self, hfile): argument
242 self._write_header(hfile)
243 self._write_c_compiler_paths(hfile)
244 self._write_source_files(hfile)
245 self._write_cmakelists_flags(hfile)
246 self._write_tail(hfile)
248 @common_util.check_args(hfile=(TextIOWrapper, StringIO))
[all …]