Lines Matching refs:output_path
203 def write_components(self, output_path): argument
257 directory_path = os.path.join(output_path, subpath[1:])
319 def write_library_table(self, output_path, enabled_optional_components): argument
385 make_install_dir(os.path.dirname(output_path))
386 f = open(output_path+'.new', 'w')
424 if not os.path.isfile(output_path):
425 os.rename(output_path+'.new', output_path)
426 elif filecmp.cmp(output_path, output_path+'.new'):
427 os.remove(output_path+'.new')
429 os.remove(output_path)
430 os.rename(output_path+'.new', output_path)
504 def write_cmake_fragment(self, output_path, enabled_optional_components): argument
517 make_install_dir(os.path.dirname(output_path))
518 f = open(output_path, 'w')
523 header_name = os.path.basename(output_path)
590 def write_cmake_exports_fragment(self, output_path, enabled_optional_components): argument
602 make_install_dir(os.path.dirname(output_path))
603 f = open(output_path, 'w')
634 def write_make_fragment(self, output_path): argument
647 make_install_dir(os.path.dirname(output_path))
648 f = open(output_path, 'w')
653 header_name = os.path.basename(output_path)
685 f.write("%s: \\\n" % (mk_quote_string_for_target(output_path),))