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')
428 if not os.path.isfile(output_path):
429 os.rename(output_path+'.new', output_path)
430 elif filecmp.cmp(output_path, output_path+'.new'):
431 os.remove(output_path+'.new')
433 os.remove(output_path)
434 os.rename(output_path+'.new', output_path)
535 def write_cmake_fragment(self, output_path, enabled_optional_components): argument
548 make_install_dir(os.path.dirname(output_path))
549 f = open(output_path, 'w')
554 header_name = os.path.basename(output_path)
618 def write_cmake_exports_fragment(self, output_path, enabled_optional_components): argument
630 make_install_dir(os.path.dirname(output_path))
631 f = open(output_path, 'w')
654 def write_make_fragment(self, output_path, enabled_optional_components): argument
667 make_install_dir(os.path.dirname(output_path))
668 f = open(output_path, 'w')
673 header_name = os.path.basename(output_path)
705 f.write("%s: \\\n" % (mk_quote_string_for_target(output_path),))