Home
last modified time | relevance | path

Searched refs:FullyQualifiedNamespaces (Results 1 – 8 of 8) sorted by relevance

/llvm-project-15.0.7/clang-tools-extra/clangd/
H A DConfigCompile.cpp449 if (!F.FullyQualifiedNamespaces.empty()) { in compile()
450 std::vector<std::string> FullyQualifiedNamespaces; in compile() local
451 for (auto &N : F.FullyQualifiedNamespaces) { in compile()
456 FullyQualifiedNamespaces.push_back(Namespace.str()); in compile()
458 Out.Apply.push_back([FullyQualifiedNamespaces( in compile()
459 std::move(FullyQualifiedNamespaces))]( in compile()
461 C.Style.FullyQualifiedNamespaces.insert( in compile()
462 C.Style.FullyQualifiedNamespaces.begin(), in compile()
463 FullyQualifiedNamespaces.begin(), FullyQualifiedNamespaces.end()); in compile()
H A DConfig.h118 std::vector<std::string> FullyQualifiedNamespaces; member
H A DConfigFragment.h278 std::vector<Located<std::string>> FullyQualifiedNamespaces; member
H A DConfigYAML.cpp117 F.FullyQualifiedNamespaces = std::move(*Values); in parse()
/llvm-project-15.0.7/clang-tools-extra/clangd/unittests/tweaks/
H A DAddUsingTests.cpp22 Cfg.Style.FullyQualifiedNamespaces.push_back("ban"); in TEST_F()
/llvm-project-15.0.7/clang-tools-extra/clangd/unittests/
H A DConfigCompileTests.cpp542 Frag.Style.FullyQualifiedNamespaces.push_back(std::string("foo")); in TEST_F()
543 Frag.Style.FullyQualifiedNamespaces.push_back(std::string("bar")); in TEST_F()
545 EXPECT_THAT(Conf.Style.FullyQualifiedNamespaces, ElementsAre("foo", "bar")); in TEST_F()
H A DConfigYAMLTests.cpp274 EXPECT_THAT(Results[0].Style.FullyQualifiedNamespaces, in TEST()
/llvm-project-15.0.7/clang-tools-extra/clangd/refactor/tweaks/
H A DAddUsing.cpp218 for (StringRef Banned : Config::current().Style.FullyQualifiedNamespaces) { in isNamespaceForbidden()