Lines Matching +full:root +full:- +full:relative
14 """An LLVM project with a descriptive name and a relative checkout path."""
28 checkout_root: root of the LLVM checkout.
44 for root, dirs, files in os.walk(project_root, onerror=raise_error):
50 and os.path.join(root, d) not in ignored_paths
53 visitor(os.path.join(root, f))
57 … """Returns a list of LLVMProject instances, describing relative paths of a typical LLVM checkout.
61 When True, relative paths for each project points to a typical single
63 When False, relative paths for each projects points to a separate
64 directory. However, clang-tools-extra is an exception, its relative path
71 "compiler-rt",
76 "test-suite",
89 "clang-tools-extra", os.path.join("tools", "clang", "tools", "extra")
97 LLVMProject("clang-tools-extra", os.path.join("clang", "tools", "extra"))