Home | History | Annotate | Download | only in llvmbuild

Lines Matching full:output_path

203     def write_components(self, output_path):
257 directory_path = os.path.join(output_path, subpath[1:])
319 def write_library_table(self, output_path, enabled_optional_components):
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 output_path)
430 os.rename(output_path+'.new', output_path)
504 def write_cmake_fragment(self, output_path, enabled_optional_components):
506 write_cmake_fragment(output_path) -> None
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):
592 write_cmake_exports_fragment(output_path) -> None
602 make_install_dir(os.path.dirname(output_path))
603 f = open(output_path, 'w')
634 def write_make_fragment(self, output_path):
636 write_make_fragment(output_path) -> None
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),))