Home
last modified time | relevance | path

Searched refs:Notification (Results 1 – 14 of 14) sorted by relevance

/llvm-project/clang-tools-extra/clangd/unittests/
H A DTUSchedulerTests.cpp229 Notification Ready; in TEST_F()
273 Notification N; in TEST_F()
298 Notification Proceed; // Ensure we schedule everything. in TEST_F()
358 Notification StartedRunning; in TEST_F()
359 Notification ScheduledChange; in TEST_F()
383 Notification Start; in TEST_F()
447 Notification Start; in TEST_F()
734 Notification TaskRun; in TEST_F()
970 Notification TaskRun; in TEST_F()
1065 Notification Ready; in TEST_F()
[all …]
H A DLSPClient.cpp250 for (const auto &Notification : llvm::reverse(Notifications)) { in diagnostics() local
251 if (const auto *PubDiagsParams = Notification.getAsObject()) { in diagnostics()
H A DClangdTests.cpp150 Notification Done; in dumpAST()
1112 DelayedCompilationDatabase(Notification &CanReturnCommand) in TEST()
1130 Notification &CanReturnCommand; in TEST()
1133 Notification CanReturnCommand; in TEST()
1306 Notification N; in TEST()
H A DSyncAPI.cpp164 Notification Done; in runCustomAction()
H A DFileIndexTests.cpp585 Notification Go; in TEST()
/llvm-project/llvm/unittests/Support/
H A DThreading.cpp63 class Notification {
69 // Broadcast with the lock held, so it's safe to destroy the Notification in notify()
91 Notification ThreadStarted, ThreadAdvanced, ThreadFinished; in TEST()
62 class Notification { global() class
/llvm-project/clang-tools-extra/clangd/support/
H A DThreading.cpp28 void Notification::notify() { in notify()
38 bool Notification::wait(Deadline D) const { in wait()
H A DThreading.h91 class Notification {
/llvm-project/third-party/unittest/googletest/include/gtest/internal/
H A Dgtest-port.h1242 class GTEST_API_ Notification {
1244 Notification() : notified_(false) {}
1245 Notification(const Notification&) = delete;
1246 Notification& operator=(const Notification&) = delete;
1315 ThreadWithParam(UserThreadFunc* func, T param, Notification* thread_can_start)
1345 Notification* const thread_can_start_;
1497 ThreadWithParamBase(Runnable* runnable, Notification* thread_can_start);
1510 ThreadWithParam(UserThreadFunc* func, T param, Notification* thread_can_start)
/llvm-project/clang-tools-extra/clangd/
H A DClangdLSPServer.cpp223 elog("Notification {0} before initialization", Method); in onNotify()
940 PublishDiagnosticsParams Notification; in onDocumentOnTypeFormatting()
941 Notification.uri = URIForFile::canonicalize(File, /*TUPath=*/File); in onDocumentOnTypeFormatting()
942 PublishDiagnostics(Notification); in onDocumentOnTypeFormatting()
1794 PublishDiagnosticsParams Notification; in onDiagnosticsReady()
1795 Notification.version = decodeVersion(Version); in onDiagnosticsReady()
1796 Notification.uri = URIForFile::canonicalize(File, /*TUPath=*/File); in onDiagnosticsReady()
1799 toLSPDiags(Diag, Notification.uri, DiagOpts, in onDiagnosticsReady()
1805 Fix, Notification.uri, Notification in onDiagnosticsReady()
932 PublishDiagnosticsParams Notification; onDocumentDidClose() local
1781 PublishDiagnosticsParams Notification; onDiagnosticsReady() local
1815 InactiveRegionsParams Notification; onInactiveRegionsReady() local
[all...]
/llvm-project/third-party/unittest/googletest/include/gtest/internal/custom/
H A DREADME.md26 * `GTEST_HAS_NOTIFICATION_` - Enabled if Notification is already provided.
/llvm-project/clang-tools-extra/clangd/unittests/support/
H A DCancellationTests.cpp74 Notification Cancelled; in TEST()
H A DThreadingTests.cpp104 Notification ReleaseA, ReleaseB; in TEST_F()
/llvm-project/third-party/unittest/googletest/src/
H A Dgtest-port.cc431 Notification* thread_can_start) { in CreateThread()
451 ThreadMainParam(Runnable* runnable, Notification* thread_can_start) in ThreadMainParam()
455 Notification* thread_can_start_;
477 Notification* thread_can_start) in ThreadWithParamBase()