Home
last modified time | relevance | path

Searched refs:module_cache (Results 1 – 3 of 3) sorted by relevance

/external/llvm-project/libcxx/utils/libcxx/test/
Dconfig.py568 module_cache = os.path.join(self.config.test_exec_root,
570 module_cache = os.path.realpath(module_cache)
571 if os.path.isdir(module_cache):
572 shutil.rmtree(module_cache)
573 os.makedirs(module_cache)
575 ['-fmodules-cache-path=' + module_cache]
/external/libcxx/utils/libcxx/test/
Dconfig.py1010 module_cache = os.path.join(self.config.test_exec_root,
1012 module_cache = os.path.realpath(module_cache)
1013 if os.path.isdir(module_cache):
1014 shutil.rmtree(module_cache)
1015 os.makedirs(module_cache)
1017 ['-fmodules-cache-path=' + module_cache]
/external/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/
DClangExpressionParser.cpp294 llvm::SmallString<128> module_cache; in SetupModuleHeaderPaths() local
296 props.GetClangModulesCachePath().GetPath(module_cache); in SetupModuleHeaderPaths()
297 search_opts.ModuleCachePath = std::string(module_cache.str()); in SetupModuleHeaderPaths()
298 LLDB_LOG(log, "Using module cache path: {0}", module_cache.c_str()); in SetupModuleHeaderPaths()