Home
last modified time | relevance | path

Searched refs:blockUntilIdleForTest (Results 1 – 11 of 11) sorted by relevance

/external/llvm-project/clang-tools-extra/clangd/unittests/
DBackgroundIndexTests.cpp109 ASSERT_TRUE(Idx.blockUntilIdleForTest()); in TEST_F()
157 ASSERT_TRUE(Idx.blockUntilIdleForTest()); in TEST_F()
202 ASSERT_TRUE(Idx.blockUntilIdleForTest()); in TEST_F()
214 ASSERT_TRUE(Idx.blockUntilIdleForTest()); in TEST_F()
259 ASSERT_TRUE(Idx.blockUntilIdleForTest()); in TEST_F()
283 ASSERT_TRUE(Idx.blockUntilIdleForTest()); in TEST_F()
319 ASSERT_TRUE(Idx.blockUntilIdleForTest()); in TEST_F()
329 ASSERT_TRUE(Idx.blockUntilIdleForTest()); in TEST_F()
388 ASSERT_TRUE(Idx.blockUntilIdleForTest()); in TEST_F()
438 ASSERT_TRUE(Idx.blockUntilIdleForTest()); in TEST_F()
[all …]
DClangdTests.cpp184 EXPECT_TRUE(Server.blockUntilIdleForTest()) << "Waiting for diagnostics";
241 ASSERT_TRUE(Server.blockUntilIdleForTest()) << "Waiting for diagnostics"; in TEST()
246 ASSERT_TRUE(Server.blockUntilIdleForTest()) << "Waiting for diagnostics"; in TEST()
251 ASSERT_TRUE(Server.blockUntilIdleForTest()) << "Waiting for diagnostics"; in TEST()
277 ASSERT_TRUE(Server.blockUntilIdleForTest()) << "Waiting for diagnostics"; in TEST()
283 ASSERT_TRUE(Server.blockUntilIdleForTest()) << "Waiting for diagnostics"; in TEST()
289 ASSERT_TRUE(Server.blockUntilIdleForTest()) << "Waiting for diagnostics"; in TEST()
323 ASSERT_TRUE(Server.blockUntilIdleForTest()); in TEST()
499 ASSERT_TRUE(Server.blockUntilIdleForTest()); in TEST()
545 ASSERT_TRUE(Server.blockUntilIdleForTest()); in TEST()
[all …]
DSyncAPI.cpp19 if (!Server.blockUntilIdleForTest()) in runAddDocument()
DSemanticHighlightingTests.cpp752 ASSERT_TRUE(Server.blockUntilIdleForTest()) << "Waiting for server"; in TEST()
DTUSchedulerTests.cpp934 ASSERT_TRUE(Server.blockUntilIdleForTest()); in TEST_F()
939 ASSERT_TRUE(Server.blockUntilIdleForTest()); in TEST_F()
DCodeCompleteTests.cpp859 ASSERT_TRUE(Server.blockUntilIdleForTest()); in TEST()
1676 ASSERT_TRUE(Server.blockUntilIdleForTest()); in TEST()
2177 ASSERT_TRUE(Server.blockUntilIdleForTest()); in TEST()
/external/llvm-project/clang-tools-extra/clangd/index/
DBackground.h113 blockUntilIdleForTest(llvm::Optional<double> TimeoutSeconds);
173 blockUntilIdleForTest(llvm::Optional<double> TimeoutSeconds = 10) {
174 return Queue.blockUntilIdleForTest(TimeoutSeconds);
DBackgroundQueue.cpp119 bool BackgroundQueue::blockUntilIdleForTest( in blockUntilIdleForTest() function in clang::clangd::BackgroundQueue
/external/llvm-project/clang-tools-extra/clangd/
DClangdServer.h346 blockUntilIdleForTest(llvm::Optional<double> TimeoutSeconds = 10);
DClangdServer.cpp874 ClangdServer::blockUntilIdleForTest(llvm::Optional<double> TimeoutSeconds) { in blockUntilIdleForTest() function in clang::clangd::ClangdServer
877 BackgroundIdx->blockUntilIdleForTest(TimeoutSeconds)); in blockUntilIdleForTest()
DClangdLSPServer.cpp655 if (Server->blockUntilIdleForTest(/*TimeoutSeconds=*/60)) in onSync()