Home
last modified time | relevance | path

Searched refs:tweakArgs (Results 1 – 3 of 3) sorted by relevance

/external/llvm-project/clang-tools-extra/clangd/
DClangdLSPServer.cpp89 CA.command->tweakArgs.emplace(); in toCodeAction()
90 CA.command->tweakArgs->file = File; in toCodeAction()
91 CA.command->tweakArgs->tweakID = T.ID; in toCodeAction()
92 CA.command->tweakArgs->selection = Selection; in toCodeAction()
743 Params.tweakArgs) { in onCommand()
744 auto Code = DraftMgr.getDraft(Params.tweakArgs->file.file()); in onCommand()
749 File = Params.tweakArgs->file, Code = std::move(*Code)]( in onCommand()
779 Server->applyTweak(Params.tweakArgs->file.file(), in onCommand()
780 Params.tweakArgs->selection, Params.tweakArgs->tweakID, in onCommand()
DProtocol.cpp662 fromJSON(Args->front(), R.tweakArgs, P.field("arguments").index(0)); in fromJSON()
733 if (C.tweakArgs) in toJSON()
734 Cmd["arguments"] = {*C.tweakArgs}; in toJSON()
DProtocol.h938 llvm::Optional<TweakArgs> tweakArgs; member