Home
last modified time | relevance | path

Searched refs:source_dir (Results 1 – 11 of 11) sorted by relevance

/llvm-project-15.0.7/lldb/scripts/
H A Dinstall_custom_python.py30 def copy_one_file(dest_dir, source_dir, filename): argument
31 source_path = os.path.join(source_dir, filename)
39 source_dir, argument
44 copy_one_file(dest_dir, source_dir, file + '.' + ext)
49 def copy_subdirectory(dest_dir, source_dir, subdir): argument
51 source_dir = os.path.join(source_dir, subdir)
53 shutil.copytree(source_dir, dest_dir)
62 PCbuild_dir = os.path.join(source_dir, 'PCbuild')
83 copy_subdirectory(dest_dir, source_dir, 'Include')
87 copy_subdirectory(dest_dir, source_dir, 'Lib')
[all …]
/llvm-project-15.0.7/llvm/utils/llvm-lit/
H A Dllvm-lit.in9 def map_config(source_dir, site_config):
11 source_dir = os.path.realpath(source_dir)
12 source_dir = os.path.normcase(source_dir)
14 config_map[source_dir] = site_config
/llvm-project-15.0.7/bolt/utils/
H A Dnfc-check-setup.py33 source_dir = None
39 source_dir = m.groups()[0]
40 if not source_dir:
51 old_ref = get_git_ref_or_rev(source_dir)
54 subprocess.run(shlex.split("git stash"), cwd=source_dir)
56 subprocess.run(shlex.split("git checkout -f HEAD^"), cwd=source_dir)
58 new_ref = get_git_ref_or_rev(source_dir)
/llvm-project-15.0.7/clang/tools/scan-build-py/tests/functional/cases/
H A Dtest_exec_anatomy.py14 def run(source_dir, target_dir): argument
21 execute(['cmake', source_dir])
46 source_dir = os.path.abspath(os.path.join(this_dir, '..', 'exec'))
48 expected, result = run(source_dir, tmp_dir)
H A Dtest_from_cdb.py19 source_dir = os.path.join(path, 'compilation_database')
20 source_file = os.path.join(source_dir, target_file + '.in')
/llvm-project-15.0.7/llvm/tools/opt-viewer/
H A Dopt-viewer.py46 def __init__(self, source_dir, output_dir, filename, no_highlight): argument
52 fn = os.path.join(source_dir, filename)
239 def _render_file(source_dir, output_dir, ctx, no_highlight, entry, filter_): argument
243 SourceFileRenderer(source_dir, output_dir, filename, no_highlight).render(remarks)
263 source_dir, argument
289 …_render_file_bound = functools.partial(_render_file, source_dir, output_dir, context, no_highlight)
370 args.source_dir,
/llvm-project-15.0.7/lldb/source/Commands/
H A DCommandObjectCommands.cpp140 FileSpec source_dir = {}; in DoExecute() local
142 source_dir = GetDebugger().GetCommandInterpreter().GetCurrentSourceDir(); in DoExecute()
143 if (!source_dir) { in DoExecute()
152 if (source_dir) { in DoExecute()
160 cmd_file.MakeAbsolute(source_dir); in DoExecute()
1316 FileSpec source_dir = {}; in DoExecute() local
1318 source_dir = GetDebugger().GetCommandInterpreter().GetCurrentSourceDir(); in DoExecute()
1319 if (!source_dir) { in DoExecute()
1344 source_dir)) { in DoExecute()
/llvm-project-15.0.7/lldb/test/API/commands/command/source/
H A DTestCommandSource.py52 source_dir = self.getSourceDir()
/llvm-project-15.0.7/lldb/test/API/api/multithreaded/
H A Dtest_stop-hook.cpp.template47 const char *source_dir = "%SOURCE_DIR%";
48 SBFileSpec script_spec(source_dir);
/llvm-project-15.0.7/llvm/cmake/modules/
H A DLLVMExternalProjectUtils.cmake36 # llvm_ExternalProject_Add(name source_dir ...
60 function(llvm_ExternalProject_Add name source_dir)
299 SOURCE_DIR ${source_dir}
/llvm-project-15.0.7/cross-project-tests/debuginfo-tests/dexter/dex/command/
H A DParseCommand.py325 source_dir = (source_root_dir if source_root_dir else
327 cmd_path = os.path.join(source_dir, cmd_path)