Home
last modified time | relevance | path

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

/external/llvm-project/clang-tools-extra/clangd/
DConfigCompile.cpp331 if (!F.FullyQualifiedNamespaces.empty()) { in compile()
332 std::vector<std::string> FullyQualifiedNamespaces; in compile() local
333 for (auto &N : F.FullyQualifiedNamespaces) { in compile()
338 FullyQualifiedNamespaces.push_back(Namespace.str()); in compile()
340 Out.Apply.push_back([FullyQualifiedNamespaces( in compile()
341 std::move(FullyQualifiedNamespaces))]( in compile()
343 C.Style.FullyQualifiedNamespaces.insert( in compile()
344 C.Style.FullyQualifiedNamespaces.begin(), in compile()
345 FullyQualifiedNamespaces.begin(), FullyQualifiedNamespaces.end()); in compile()
DConfig.h85 std::vector<std::string> FullyQualifiedNamespaces; member
DConfigFragment.h190 std::vector<Located<std::string>> FullyQualifiedNamespaces; member
DConfigYAML.cpp82 F.FullyQualifiedNamespaces = std::move(*Values); in parse()
/external/llvm-project/clang-tools-extra/clangd/unittests/tweaks/
DAddUsingTests.cpp24 Cfg.Style.FullyQualifiedNamespaces.push_back("ban"); in TEST_F()
/external/llvm-project/clang-tools-extra/clangd/refactor/tweaks/
DAddUsing.cpp216 for (StringRef Banned : Config::current().Style.FullyQualifiedNamespaces) { in isNamespaceForbidden()