Home
last modified time | relevance | path

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

/llvm-project-15.0.7/clang-tools-extra/clangd/index/
H A DBackground.h92 BackgroundQueue(std::function<void(Stats)> OnProgress = nullptr)
93 : OnProgress(OnProgress) {} in OnProgress() argument
126 std::function<void(Stats)> OnProgress; variable
142 std::function<void(BackgroundQueue::Stats)> OnProgress = nullptr; member
H A DBackgroundQueue.cpp145 if (OnProgress) in notifyProgress()
146 OnProgress(Stat); in notifyProgress()
H A DBackground.cpp100 Queue(std::move(Opts.OnProgress)), in BackgroundIndex()
/llvm-project-15.0.7/clang-tools-extra/clangd/
H A DClangdServer.cpp208 BGOpts.OnProgress = [Callbacks](BackgroundQueue::Stats S) { in ClangdServer()