Home
last modified time | relevance | path

Searched refs:MountPoint (Results 1 – 7 of 7) sorted by relevance

/llvm-project-15.0.7/clang-tools-extra/clangd/
H A DConfig.h81 std::string MountPoint; member
158 return llvm::hash_combine(Val.Kind, Val.Location, Val.MountPoint);
162 return std::tie(LHS.Kind, LHS.Location, LHS.MountPoint) ==
163 std::tie(RHS.Kind, RHS.Location, RHS.MountPoint);
H A DConfigCompile.cpp385 if (!External.MountPoint) in compile()
386 External.MountPoint.emplace(FragmentDirectory); in compile()
387 if ((**External.MountPoint).empty()) { in compile()
391 auto AbsPath = makeAbsolute(std::move(*External.MountPoint), "MountPoint", in compile()
395 Spec.MountPoint = std::move(*AbsPath); in compile()
402 if (P.Path.empty() || !pathStartsWith(Spec.MountPoint, P.Path, in compile()
H A DConfigFragment.h199 llvm::Optional<Located<std::string>> MountPoint; member
H A DConfigYAML.cpp211 [&](Node &N) { F.MountPoint = scalarValue(N, "MountPoint"); }); in parse()
/llvm-project-15.0.7/clang-tools-extra/clangd/unittests/
H A DConfigCompileTests.cpp430 External.MountPoint.emplace( in TEST_F()
439 llvm::Optional<const char *> MountPoint) { in TEST_F() argument
444 if (MountPoint) in TEST_F()
445 External.MountPoint.emplace(*MountPoint); in TEST_F()
471 EXPECT_THAT(Conf.Index.External.MountPoint, FooPath); in TEST_F()
478 EXPECT_THAT(Conf.Index.External.MountPoint, FooPath); in TEST_F()
504 EXPECT_THAT(Conf.Index.External.MountPoint, FooPath); in TEST_F()
518 EXPECT_THAT(Conf.Index.External.MountPoint, FooPath); in TEST_F()
H A DConfigYAMLTests.cpp167 EXPECT_FALSE(Results[0].Index.External.value()->MountPoint.has_value()); in TEST()
186 EXPECT_THAT(*Results[0].Index.External.value()->MountPoint, val("baz")); in TEST()
/llvm-project-15.0.7/clang-tools-extra/clangd/tool/
H A DClangdMain.cpp615 log("Associating {0} with remote index at {1}.", External.MountPoint, in loadExternalIndex()
617 return remote::getClient(External.Location, External.MountPoint); in loadExternalIndex()
619 log("Associating {0} with monolithic index at {1}.", External.MountPoint, in loadExternalIndex()
688 Spec.MountPoint = ProjectRoot; in FlagsConfigProvider()