Home
last modified time | relevance | path

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

/llvm-project-15.0.7/clang-tools-extra/clangd/index/
H A DBackgroundQueue.cpp51 assert(ShouldStop || Stat.Completed == Stat.Enqueued); in work()
95 ++Stat.Enqueued; in push()
108 ++Stat.Enqueued; in append()
144 Stat.Enqueued, Stat.Active, Stat.LastIdle); in notifyProgress()
H A DBackground.h86 unsigned Enqueued = 0; // Total number of tasks ever enqueued. member
/llvm-project-15.0.7/clang-tools-extra/clangd/unittests/
H A DBackgroundIndexTests.cpp856 EXPECT_THAT(New.Enqueued, AnyOf(S.Enqueued, S.Enqueued + 1)); in TEST()
866 EXPECT_EQ(New.LastIdle == New.Enqueued, in TEST()
867 New.Completed == New.Enqueued && New.Active == 0u); in TEST()
893 EXPECT_EQ(S.Enqueued, 2000u); in TEST()
/llvm-project-15.0.7/llvm/lib/CodeGen/
H A DIfConversion.cpp1291 bool Enqueued = false; in AnalyzeBlock() local
1323 Enqueued = true; in AnalyzeBlock()
1341 Enqueued = true; in AnalyzeBlock()
1359 Enqueued = true; in AnalyzeBlock()
1368 Enqueued = true; in AnalyzeBlock()
1384 Enqueued = true; in AnalyzeBlock()
1397 Enqueued = true; in AnalyzeBlock()
1408 Enqueued = true; in AnalyzeBlock()
1418 Enqueued = true; in AnalyzeBlock()
1422 BBI.IsEnqueued = Enqueued; in AnalyzeBlock()
/llvm-project-15.0.7/clang-tools-extra/clangd/
H A DClangdLSPServer.cpp1742 if (Stats.Completed < Stats.Enqueued) { in onBackgroundIndexProgress()
1743 assert(Stats.Enqueued > Stats.LastIdle); in onBackgroundIndexProgress()
1746 (Stats.Enqueued - Stats.LastIdle); in onBackgroundIndexProgress()
1749 Stats.Enqueued - Stats.LastIdle); in onBackgroundIndexProgress()
1752 assert(Stats.Completed == Stats.Enqueued); in onBackgroundIndexProgress()