Searched refs:hfile (Results 1 – 2 of 2) sorted by relevance
97 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 …]
231 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): argument242 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 …]