reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

Declarations

tools/clang/tools/extra/clangd/Cancellation.h
   81 bool isCancelled(const Context &Ctx = Context::current());

References

tools/clang/tools/extra/clangd/ClangdServer.cpp
  198     if (isCancelled())
tools/clang/tools/extra/clangd/TUScheduler.cpp
  530     if (isCancelled())
  726     if (!isCancelled(I->Ctx)) {
tools/clang/tools/extra/clangd/unittests/CancellationTests.cpp
   18   EXPECT_FALSE(isCancelled());
   20   EXPECT_TRUE(isCancelled());
   28     EXPECT_FALSE(isCancelled());
   30     EXPECT_TRUE(isCancelled());
   32   EXPECT_TRUE(isCancelled());
   39     EXPECT_FALSE(isCancelled());
   41     EXPECT_TRUE(isCancelled());
   53     HasCancelled = isCancelled();