Home
last modified time | relevance | path

Searched refs:tocancel (Results 1 – 6 of 6) sorted by relevance

/dports/editors/emacs/emacs-27.2/test/lisp/url/
H A Durl-future-tests.el35 (tocancel (make-url-future :value (lambda () (/ 1 0))
50 (should (equal (url-future-cancel tocancel) tocancel))
51 (should-error (url-future-call tocancel))
53 (should (url-future-cancelled-p tocancel))))
/dports/editors/emacs-devel/emacs-4d1968b/test/lisp/url/
H A Durl-future-tests.el37 (tocancel (make-url-future :value (lambda () (/ 1 0))
52 (should (equal (url-future-cancel tocancel) tocancel))
53 (should-error (url-future-call tocancel))
55 (should (url-future-cancelled-p tocancel))))
/dports/math/singular/Singular-Release-4-2-1/kernel/GBEngine/
H A Dsyz.cc727 if (k>=index) tocancel[k-index]++; in syDetect()
732 tocancel[0]--; in syDetect()
756 for (i=tocancel->length();i>0;i--) in syDetect()
757 (*tocancel)[i-1] = tocan[i-1]; in syDetect()
897 syDetect(res[0],0,TRUE,temp2,tocancel); in syBetti()
936 memset(tocancel,0,(rows+1)*sizeof(int)); in syBetti()
1038 intvec * result,*tocancel;
1077 tocancel = new intvec(rs);
1110 tocancel = new intvec(1);
1143 (*result)[i+1] -= (*tocancel)[0];
[all …]
/dports/devel/py-curio/curio-1.5/curio/
H A Dkernel.py157 async def _shutdown_tasks(tocancel): argument
158 for task in tocancel:
161 tocancel = sorted(self._tasks.values(), key=lambda t: t.id, reverse=True)
162 self._runner(_shutdown_tasks(tocancel))
/dports/graphics/art/ART-1.9.3/rtgui/
H A Dfilecatalog.cc2690 std::vector<ThumbBrowserEntryBase *> tocancel; in removeFromBatchQueue() local
2693 tocancel.push_back(entry); in removeFromBatchQueue()
2697 bqueue_->cancelItems(tocancel, true); in removeFromBatchQueue()
/dports/lang/janet/janet-1.19.2/src/core/
H A Dev.c2904 JanetFiber *tocancel = janet_optfiber(argv, argc, 1, janet_vm.root_fiber); variable
2908 to.fiber = tocancel;
2913 return janet_wrap_fiber(tocancel);