Home
last modified time | relevance | path

Searched refs:ParameterNames (Results 1 – 5 of 5) sorted by relevance

/llvm-project-15.0.7/clang-tools-extra/clangd/
H A DInlayHints.cpp391 NameVec ParameterNames = chooseParameterNames(ForwardedParams); in processCall() local
396 if (isSetter(Callee, ParameterNames) || isSimpleBuiltin(Callee)) in processCall()
399 for (size_t I = 0; I < ParameterNames.size() && I < Args.size(); ++I) { in processCall()
407 StringRef Name = ParameterNames[I]; in processCall()
551 NameVec ParameterNames; in chooseParameterNames() local
557 ParameterNames.emplace_back(); in chooseParameterNames()
567 ParameterNames.emplace_back(SimpleName); in chooseParameterNames()
573 for (auto &Name : ParameterNames) in chooseParameterNames()
576 return ParameterNames; in chooseParameterNames()
H A DConfigFragment.h303 llvm::Optional<Located<bool>> ParameterNames; member
H A DConfigCompile.cpp576 if (F.ParameterNames) in compile()
578 [Value(**F.ParameterNames)](const Params &, Config &C) { in compile()
H A DConfigYAML.cpp241 F.ParameterNames = *Value; in parse()
/llvm-project-15.0.7/clang-tools-extra/clangd/unittests/
H A DConfigYAMLTests.cpp246 EXPECT_THAT(Results[0].InlayHints.ParameterNames, llvm::ValueIs(val(true))); in TEST()