Searched refs:MountPoint (Results 1 – 9 of 9) sorted by relevance
/external/llvm-project/clang-tools-extra/clangd/ |
D | Config.h | 71 std::string MountPoint; member 110 return llvm::hash_combine(Val.Kind, Val.Location, Val.MountPoint); 114 return std::tie(LHS.Kind, LHS.Location, LHS.MountPoint) == 115 std::tie(RHS.Kind, RHS.Location, RHS.MountPoint);
|
D | ConfigCompile.cpp | 308 if (!External.MountPoint) in compile() 309 External.MountPoint.emplace(FragmentDirectory); in compile() 310 if ((**External.MountPoint).empty()) { in compile() 314 auto AbsPath = makeAbsolute(std::move(*External.MountPoint), "MountPoint", in compile() 318 Spec.MountPoint = std::move(*AbsPath); in compile() 320 if (!P.Path.startswith(Spec.MountPoint)) in compile()
|
D | ConfigFragment.h | 178 llvm::Optional<Located<std::string>> MountPoint; member
|
D | ConfigYAML.cpp | 128 [&](Node &N) { F.MountPoint = scalarValue(N, "MountPoint"); }); in parse()
|
/external/llvm-project/clang-tools-extra/clangd/unittests/ |
D | ConfigCompileTests.cpp | 237 External.MountPoint.emplace( in TEST_F() 246 llvm::Optional<const char *> MountPoint) { in TEST_F() argument 251 if (MountPoint) in TEST_F() 252 External.MountPoint.emplace(*MountPoint); in TEST_F() 278 EXPECT_THAT(Conf.Index.External->MountPoint, FooPath); in TEST_F() 285 EXPECT_THAT(Conf.Index.External->MountPoint, FooPath); in TEST_F() 311 EXPECT_THAT(Conf.Index.External->MountPoint, FooPath); in TEST_F()
|
D | ConfigYAMLTests.cpp | 161 EXPECT_THAT(*Results[0].Index.External.getValue()->MountPoint, Val("baz")); in TEST()
|
/external/toolchain-utils/ |
D | tc_enter_chroot.py | 27 class MountPoint(object): class 183 mount_point = MountPoint(tc_dir, full_mounted_tc_root + '/' + last_dir, 197 mount_point = MountPoint( 210 MountPoint(output, full_mounted_tc_root + '/output', getpass.getuser())) 219 mount_point = MountPoint(version_dir, full_mounted_tc_root + '/' + last_dir, 290 mount_point = MountPoint(external_dir, chroot_dir + '/' + mount_dir,
|
D | build_tc.py | 89 src_mp = tc_enter_chroot.MountPoint(self._source_path, mounted_source_path, 107 build_mp = tc_enter_chroot.MountPoint(build_dir, mounted_build_dir,
|
/external/llvm-project/clang-tools-extra/clangd/tool/ |
D | ClangdMain.cpp | 564 log("Associating {0} with remote index at {1}.", External.MountPoint, in loadExternalIndex() 566 return remote::getClient(External.Location, External.MountPoint); in loadExternalIndex() 568 log("Associating {0} with monolithic index at {1}.", External.MountPoint, in loadExternalIndex()
|