Home
last modified time | relevance | path

Searched refs:onReady (Results 1 – 25 of 185) sorted by relevance

12345678

/dports/editors/neovim-qt/neovim-qt-0.2.16.1/test/
H A Dtst_neovimconnector.cpp32 QSignalSpy onReady(c, SIGNAL(ready())); in isReady() local
33 QVERIFY(onReady.isValid()); in isReady()
35 QVERIFY(SPYWAIT(onReady)); in isReady()
47 QSignalSpy onReady(c, SIGNAL(ready())); in encodeDecode() local
48 QVERIFY(onReady.isValid()); in encodeDecode()
49 QVERIFY(SPYWAIT(onReady)); in encodeDecode()
85 QSignalSpy onReady(c, SIGNAL(ready())); in connectToNeovimEnvEmpty() local
86 QVERIFY(onReady.isValid()); in connectToNeovimEnvEmpty()
87 QVERIFY(SPYWAIT(onReady)); in connectToNeovimEnvEmpty()
H A Dtst_callallmethods.cpp34 QSignalSpy onReady(m_c, SIGNAL(ready())); in initTestCase() local
35 QVERIFY(onReady.isValid()); in initTestCase()
37 QVERIFY(SPYWAIT(onReady)); in initTestCase()
/dports/www/wt/wt-4.6.1/src/http/
H A DSessionProcess.C95 if (onReady) { in asyncExec()
96 onReady(false); in asyncExec()
102 std::placeholders::_1, onReady)); in asyncExec()
106 exec(config, onReady); in asyncExec()
110 const std::function<void (bool)>& onReady) in acceptHandler() argument
115 listeningCallback_ = onReady; in acceptHandler()
248 const std::function<void (bool)>& onReady) in exec() argument
267 if (onReady) in exec()
268 onReady(false); in exec()
327 if (onReady) { in exec()
[all …]
H A DSessionProcess.h41 const std::function<void (bool)>& onReady
64 const std::function<void (bool)>& onReady);
66 const std::function<void (bool)>& onReady);
/dports/lang/spidermonkey78/firefox-78.9.0/browser/components/newtab/test/unit/content-src/components/
H A DReturnToAMO.test.jsx7 let onReady;
17 onReady = sandbox.stub();
49 onReady={onReady}
72 onReady={onReady}
/dports/devel/thrift/thrift-0.14.0/lib/js/test/
H A Dphantomjs-qunit.js26 function waitFor(testFx, onReady, timeOutMillis) { argument
42 if (typeof(onReady) === 'string') {
43 eval(onReady);
45 onReady(); //< Do what it's supposed to do once the condition is fulfilled
/dports/security/vault/vault-1.8.2/vendor/github.com/apple/foundationdb/fdbrpc/
H A DAsyncFileWinASIO.actor.h90 …static void onReadReady( Promise<int> onReady, const boost::system::error_code& error, size_t byte… in onReadReady() argument
96 onReady.sendError(e); in onReadReady()
98 onReady.send( bytesRead ); in onReadReady()
101 …static void onWriteReady( Promise<Void> onReady, size_t bytesExpected, const boost::system::error_… in onWriteReady() argument
107 onReady.sendError(e); in onWriteReady()
111 onReady.sendError(io_error()); in onWriteReady()
113 onReady.send( Void() ); in onWriteReady()
/dports/www/yarr/yarr-2.2/src/systray/
H A Dsystray.go73 func Run(onReady func(), onExit func()) {
74 Register(onReady, onExit)
83 func Register(onReady func(), onExit func()) {
84 if onReady == nil {
91 onReady()
H A Dsystray_windows_test.go107 onReady := func() {
131 Run(onReady, onExit)
/dports/devel/capnproto080/capnproto-0.8.0/c++/src/kj/
H A Dasync.c++203 node->onReady(this); in Task()
627 n->get()->onReady(this); in ensureDoneOrCanceled()
1146 node->onReady(fiber); in waitImpl()
1205 node.onReady(&doneEvent); in pollImpl()
1481 dependency->onReady(event); in onReady()
1585 inner->onReady(this); in ForkHubBase()
1619 inner->onReady(this); in ChainPromiseNode()
1630 inner->onReady(event); in onReady()
1733 dependency->onReady(this); in Branch()
1814 dependency->onReady(this); in Branch()
[all …]
/dports/sysutils/istio/istio-1.6.7/pkg/test/echo/server/endpoint/
H A Dtcp.go46 func (s *tcpInstance) Start(onReady OnReadyFunc) error {
92 go s.awaitReady(onReady, port)
132 func (s *tcpInstance) awaitReady(onReady OnReadyFunc, port int) {
133 defer onReady()
H A Dgrpc.go51 func (s *grpcInstance) Start(onReady OnReadyFunc) error {
82 go s.awaitReady(onReady, listener)
87 func (s *grpcInstance) awaitReady(onReady OnReadyFunc, listener net.Listener) {
88 defer onReady()
H A Dhttp.go65 func (s *httpInstance) Start(onReady OnReadyFunc) error {
115 go s.awaitReady(onReady, port)
124 func (s *httpInstance) awaitReady(onReady OnReadyFunc, port int) {
125 defer onReady()
/dports/devel/capnproto/capnproto-0.9.0/c++/src/kj/
H A Dasync.c++267 node->onReady(this); in Task()
1837 node->onReady(fiber); in waitImpl()
1909 node.onReady(&doneEvent); in pollImpl()
2184 dependency->onReady(event); in onReady()
2211 dependency->onReady(event); in onReady()
2305 inner->onReady(this); in ForkHubBase()
2346 inner->onReady(this); in ChainPromiseNode()
2357 inner->onReady(event); in onReady()
2492 dependency->onReady(this); in Branch()
2584 dependency->onReady(this); in Branch()
[all …]
/dports/devel/cxxtools/cxxtools-2.2.1/demo/
H A Dhttprequest.cpp49 void onReady(cxxtools::http::Client& client);
59 connect(_client.replyFinished, *this, &AsyncRequester::onReady); in AsyncRequester()
85 void AsyncRequester::onReady(cxxtools::http::Client& client) in onReady() function in AsyncRequester
/dports/security/p5-openxpki-i18n/openxpki-3.16.1/core/htdocs_source/app/pods/components/oxi-section/form/field/datetime/
H A Dtemplate.hbs7 @onReady={{this.onReady}}
/dports/security/p5-openxpki/openxpki-3.16.1/core/htdocs_source/app/pods/components/oxi-section/form/field/datetime/
H A Dtemplate.hbs7 @onReady={{this.onReady}}
/dports/www/grafana8/grafana-8.3.6/vendor/github.com/apache/arrow/java/flight/flight-core/src/main/java/org/apache/arrow/flight/
H A DBackpressureStrategy.java82 listener.setOnReadyHandler(this::onReady); in register()
158 private void onReady() { in onReady() method in BackpressureStrategy.CallbackBackpressureStrategy
/dports/databases/arrow/apache-arrow-6.0.1/java/flight/flight-core/src/main/java/org/apache/arrow/flight/
H A DBackpressureStrategy.java82 listener.setOnReadyHandler(this::onReady); in register()
158 private void onReady() { in onReady() method in BackpressureStrategy.CallbackBackpressureStrategy
/dports/devel/amqp-cpp/AMQP-CPP-4.1.4/include/amqpcpp/linux_tcp/
H A Dtcpconnection.h108 virtual void onReady(Connection *connection) override in onReady() function
111 _handler->onReady(this); in onReady()
/dports/www/firefox/firefox-99.0/services/sync/
H A DWeave.jsm58 * Services.obs.addObserver(function onReady() {
59 * Services.obs.removeObserver(onReady, "weave:service:ready");
94 Services.obs.addObserver(function onReady() {
95 Services.obs.removeObserver(onReady, "weave:service:ready");
/dports/www/firefox-esr/firefox-91.8.0/services/sync/
H A DWeave.jsm58 * Services.obs.addObserver(function onReady() {
59 * Services.obs.removeObserver(onReady, "weave:service:ready");
94 Services.obs.addObserver(function onReady() {
95 Services.obs.removeObserver(onReady, "weave:service:ready");
/dports/mail/thunderbird/thunderbird-91.8.0/services/sync/
H A DWeave.jsm58 * Services.obs.addObserver(function onReady() {
59 * Services.obs.removeObserver(onReady, "weave:service:ready");
94 Services.obs.addObserver(function onReady() {
95 Services.obs.removeObserver(onReady, "weave:service:ready");
/dports/lang/spidermonkey78/firefox-78.9.0/services/sync/
H A DWeave.jsm58 * Services.obs.addObserver(function onReady() {
59 * Services.obs.removeObserver(onReady, "weave:service:ready");
94 Services.obs.addObserver(function onReady() {
95 Services.obs.removeObserver(onReady, "weave:service:ready");
/dports/www/chromium-legacy/chromium-88.0.4324.182/components/page_info/android/java/src/org/chromium/components/page_info/
H A DConnectionInfoView.java68 void onReady(ConnectionInfoView popup); in onReady() method
202 private void onReady() { in onReady() method in ConnectionInfoView
203 mDelegate.onReady(this); in onReady()
310 public void onReady(ConnectionInfoView popup) { in onReady() method in ConnectionInfoView.ConnectionInfoDialogDelegate

12345678