Home
last modified time | relevance | path

Searched refs:PathExclude (Results 1 – 4 of 4) sorted by relevance

/external/llvm-project/clang-tools-extra/clangd/
DConfigCompile.cpp217 auto PathExclude = std::make_unique<std::vector<llvm::Regex>>(); in compile() local
218 for (auto &Entry : F.PathExclude) { in compile()
220 PathExclude->push_back(std::move(*RE)); in compile()
222 if (!PathExclude->empty()) { in compile()
224 [PathExclude(std::move(PathExclude)), in compile()
232 return llvm::none_of(*PathExclude, [&](const llvm::Regex &RE) { in compile()
DConfigFragment.h115 std::vector<Located<std::string>> PathExclude; member
DConfigYAML.cpp60 F.PathExclude = std::move(*Values); in parse()
/external/llvm-project/clang-tools-extra/clangd/unittests/
DConfigCompileTests.cpp83 Frag.If.PathExclude.emplace_back(".*r"); in TEST_F()
179 Frag.If.PathExclude.emplace_back(Case.PathSpec); in TEST_F()