Home | History | Annotate | Download | only in clang

Lines Matching full:path

30 THIS_DIR = os.path.realpath(os.path.dirname(__file__))
35 return os.path.realpath(os.path.join(THIS_DIR, '../..', *args))
43 if not os.path.isabs(top_out):
44 top_out = os.path.realpath(top_out)
45 return os.path.join(top_out, *args)
111 install_dir = os.path.join(install_host_dir, package_name)
115 if os.path.exists(install_host_dir):
120 version_file_path = os.path.join(install_dir, 'AndroidVersion.txt')
126 package_path = os.path.join(dist_dir, tarball_name) + '.tar.bz2'
174 dirname = os.path.dirname(built_file)
175 install_path = os.path.join(install_dir, dirname)
176 if not os.path.exists(install_path):
179 built_path = os.path.join(build_dir, 'host', host, built_file)
182 file_name = os.path.basename(built_file)
187 ['strip', os.path.join(install_path, file_name)])
193 shutil.copy2(script_path, os.path.join(install_dir, 'bin'))
220 arch_path = os.path.join(install_dir, 'bin', arch)
223 analyzer_file_path = os.path.join(arch_path, 'analyzer')
229 analyzerpp_file_path = os.path.join(arch_path, 'analyzer++')
237 tools_install_dir = os.path.join(install_dir, 'tools')
242 tool_path = os.path.join(tools_dir, tool)
243 install_path = os.path.join(install_dir, 'tools', tool)
248 def should_copy(path):
249 if os.path.basename(path) in ('Makefile', 'CMakeLists.txt'):
251 _, ext = os.path.splitext(path)
257 headers_dst = os.path.join(
263 install_file(os.path.join(headers_src, header), headers_dst)
269 arm_neon_h = os.path.join(
275 os.path.join(install_dir, 'lib64/clang', long_version()))
279 lib_dir = os.path.join(
301 product_dir = os.path.join(build_dir, 'target/product', product)
302 static_libs = os.path.join(product_dir, 'obj/STATIC_LIBRARIES')
303 built_lib = os.path.join(
306 install_file(built_lib, os.path.join(lib_dir, lib_name))
316 static_libs = os.path.join(
318 built_lib = os.path.join(
321 install_file(built_lib, os.path.join(lib_dir, lib_name))
326 clang_lib = os.path.join(install_dir, 'lib64/clang', short_version())
327 headers_dst = os.path.join(clang_lib, 'include/sanitizer')
328 lib_dst = os.path.join(clang_lib, 'lib/linux')
342 product_dir = os.path.join(build_dir, 'target/product', product)
343 system_dir = os.path.join(product_dir, 'system')
344 system_lib_dir = os.path.join(system_dir, libdir)
346 built_lib = os.path.join(system_lib_dir, lib_name)
361 obj32 = os.path.join(build_dir, 'host', host, 'obj32/STATIC_LIBRARIES')
362 obj64 = os.path.join(build_dir, 'host', host, 'obj/STATIC_LIBRARIES')
366 obj64_dir = os.path.join(obj64, 'lib{}_intermediates'.format(lib))
368 built_lib64 = os.path.join(obj64_dir, built_lib_name)
369 install_file(built_lib64, os.path.join(lib_dst, lib64_name))
371 obj32_dir = os.path.join(obj32, 'lib{}_intermediates'.format(lib))
373 built_lib32 = os.path.join(obj32_dir, built_lib_name)
374 install_file(built_lib32, os.path.join(lib_dst, lib32_name))
390 license_pattern = os.path.join(project_path, 'MODULE_LICENSE_*')
393 with open(os.path.join(project_path, 'NOTICE')) as notice_file:
395 with open(os.path.join(install_dir, 'NOTICE'), 'w') as notice_file:
404 dist_repo_prop = os.path.join(dist_dir, file_name)
407 out_file = os.path.join(install_dir, file_name)
459 install_host_dir = os.path.join(stage_1_install_dir, host)
460 install_dir = os.path.join(install_host_dir, package_name)
464 if os.path.exists(install_host_dir):