Home
last modified time | relevance | path

Searched refs:AllScopes (Results 1 – 12 of 12) sorted by relevance

/llvm-project-15.0.7/clang-tools-extra/clangd/unittests/
H A DConfigCompileTests.cpp524 TEST_F(ConfigCompileTests, AllScopes) { in TEST_F() argument
527 EXPECT_TRUE(Conf.Completion.AllScopes); in TEST_F()
530 Frag.Completion.AllScopes = false; in TEST_F()
532 EXPECT_FALSE(Conf.Completion.AllScopes); in TEST_F()
535 Frag.Completion.AllScopes = true; in TEST_F()
537 EXPECT_TRUE(Conf.Completion.AllScopes); in TEST_F()
H A DConfigYAMLTests.cpp191 TEST(ParseYAML, AllScopes) { in TEST() argument
201 EXPECT_THAT(Results[0].Completion.AllScopes, llvm::ValueIs(val(true))); in TEST()
218 EXPECT_THAT(Results[0].Completion.AllScopes, testing::Eq(llvm::None)); in TEST()
H A DCodeCompleteTests.cpp535 Opts.AllScopes = true; in TEST()
1189 Opts.AllScopes = true; in TEST()
2936 Opts.AllScopes = true; in TEST()
2950 Opts.AllScopes = true; in TEST()
2971 Opts.AllScopes = true; in TEST()
2988 Opts.AllScopes = true; in TEST()
3283 Opts.AllScopes = true; in TEST()
3292 Opts.AllScopes = true; in TEST()
3306 Opts.AllScopes = true; in TEST()
3450 Opts.AllScopes = true; in TEST()
/llvm-project-15.0.7/clang-tools-extra/clangd/
H A DConfigCompile.cpp555 if (F.AllScopes) { in compile()
557 [AllScopes(**F.AllScopes)](const Params &, Config &C) { in compile()
558 C.Completion.AllScopes = AllScopes; in compile()
H A DConfig.h125 bool AllScopes = true; member
H A DConfigYAML.cpp218 if (auto AllScopes = boolValue(N, "AllScopes")) in parse() local
219 F.AllScopes = *AllScopes; in parse()
H A DCodeComplete.h103 bool AllScopes = false; member
H A DConfigFragment.h286 llvm::Optional<Located<bool>> AllScopes; member
H A DCodeComplete.cpp675 return {EnclosingAtFront, Opts.AllScopes}; in getQueryScopes()
1420 bool AllScopes = false; member in clang::clangd::__anonc7a99c3f0111::CodeCompleteFlow
1506 llvm::join(QueryScopes.begin(), QueryScopes.end(), ","), AllScopes, in run()
1581 AllScopes = Opts.AllScopes; in runWithoutSema()
1641 std::tie(QueryScopes, AllScopes) = getQueryScopes( in runWithSema()
1698 Req.AnyScope = AllScopes; in queryIndex()
H A DClangdServer.cpp405 CodeCompleteOpts.AllScopes = Config::current().Completion.AllScopes; in codeComplete()
/llvm-project-15.0.7/llvm/lib/Transforms/Instrumentation/
H A DControlHeightReduction.cpp1982 SmallVector<CHRScope *, 8> AllScopes; in run() local
1983 findScopes(AllScopes); in run()
1984 CHR_DEBUG(dumpScopes(AllScopes, "All scopes")); in run()
1992 splitScopes(AllScopes, SplitScopes); in run()
/llvm-project-15.0.7/clang-tools-extra/clangd/tool/
H A DClangdMain.cpp705 C.Completion.AllScopes = AllScopesCompletion; in FlagsConfigProvider()