Home
last modified time | relevance | path

Searched defs:promise (Results 1 – 25 of 130) sorted by relevance

123456

/third_party/node/deps/npm/node_modules/es6-promise/lib/es6-promise/
D-internal.js37 function handleForeignThenable(promise, thenable, then) { argument
62 function handleOwnThenable(promise, thenable) { argument
73 function handleMaybeThenable(promise, maybeThenable, then) { argument
89 function resolve(promise, value) { argument
106 function publishRejection(promise) { argument
114 function fulfill(promise, value) { argument
125 function reject(promise, reason) { argument
148 function publish(promise) { argument
170 function invokeCallback(settled, promise, callback, detail) { argument
203 function initializePromise(promise, resolver) { argument
[all …]
/third_party/ejdb/src/bindings/ejdb2_react_native/binding/android/src/main/java/com/softmotions/ejdb2/
DEJDB2DBModule.java35 public void open(String path, ReadableMap opts, Promise promise) { in open()
39 private synchronized void openImpl(String path_, ReadableMap opts, Promise promise) { in openImpl()
91 public synchronized void close(Integer handle, Promise promise) { in close()
103 public void context(Promise promise) { in context()
108 public void info(Integer handle, Promise promise) { in info()
118 public void put(Integer handle, String collection, String json, Integer id, Promise promise) { in put()
123 public void patch(Integer handle, String collection, String json, Integer id, Promise promise) { in patch()
131 …blic void patchOrPut(Integer handle, String collection, String json, Integer id, Promise promise) { in patchOrPut()
139 public void get(Integer handle, String collection, Integer id, Promise promise) { in get()
144 public void del(Integer handle, String collection, Integer id, Promise promise) { in del()
[all …]
DEJDB2JQLModule.java166 public void execute(Integer jqlid, String eventId, Promise promise) { in execute()
196 public void list(Integer jqlid, ReadableMap opts, Promise promise) { in list()
217 public void first(Integer jqlid, Promise promise) { in first()
232 public void executeScalarInt(Integer jqlid, Promise promise) { in executeScalarInt()
237 public void reset(Integer jqlid, Promise promise) { in reset()
264 private void immediate(Integer jqlid, Promise promise, JqlLogic fn) { in immediate()
274 private void thread(Integer jqlid, Promise promise, JqlLogic fn) { in thread()
/third_party/gstreamer/gstreamer/gst/
Dgstpromise.c102 GstPromise promise; member
127 gst_promise_wait (GstPromise * promise) in gst_promise_wait()
163 gst_promise_reply (GstPromise * promise, GstStructure * s) in gst_promise_reply()
227 gst_promise_get_reply (GstPromise * promise) in gst_promise_get_reply()
254 gst_promise_interrupt (GstPromise * promise) in gst_promise_interrupt()
295 gst_promise_expire (GstPromise * promise) in gst_promise_expire()
322 GstPromise *promise = (GstPromise *) object; in gst_promise_free() local
328 GST_PROMISE_CHANGE_NOTIFY (promise) (GST_PROMISE_CHANGE_DATA (promise)); in gst_promise_free() local
346 gst_promise_init (GstPromise * promise) in gst_promise_init()
374 GstPromise *promise = GST_PROMISE (g_new0 (GstPromiseImpl, 1)); in gst_promise_new() local
[all …]
Dgstpromise.h107 gst_promise_ref (GstPromise * promise) in gst_promise_ref()
122 gst_promise_unref (GstPromise * promise) in gst_promise_unref()
/third_party/node/deps/npm/node_modules/util-promisify/test/
Dtimers.js13 const promise = setTimeout(1); constant
20 const promise = setTimeout(1, 'foobar'); constant
27 const promise = setImmediate(); constant
34 const promise = setImmediate('foobar'); constant
/third_party/node/test/parallel/
Dtest-child-process-promisified.js11 const promise = exec(`${process.execPath} -p 42`); constant
20 const promise = execFile(process.execPath, ['-p', '42']); constant
29 const promise = exec('doesntexist'); constant
38 const promise = execFile('doesntexist', ['-p', '42']); constant
Dtest-promises-unhandled-rejections.js89 process.on('unhandledRejection', function(reason, promise) { argument
101 process.on('unhandledRejection', function(reason, promise) { argument
115 onUnhandledSucceed(done, function(reason, promise) { argument
124 onUnhandledSucceed(done, function(reason, promise) { argument
135 onUnhandledSucceed(done, function(reason, promise) { argument
148 onUnhandledSucceed(done, function(reason, promise) { argument
161 onUnhandledSucceed(done, function(reason, promise) { argument
178 onUnhandledSucceed(done, function(reason, promise) { argument
191 onUnhandledSucceed(done, function(reason, promise) { argument
203 onUnhandledSucceed(done, function(reason, promise) { argument
[all …]
Dtest-timers-promisified.js19 const promise = setTimeout(1); constant
26 const promise = setTimeout(1, 'foobar'); constant
33 const promise = setImmediate(); constant
40 const promise = setImmediate('foobar'); constant
Dtest-child-process-exec-abortcontroller-promisified.js21 const promise = execPromisifed(waitCommand, { signal }); constant
44 const promise = execPromisifed(waitCommand, { signal }); constant
/third_party/node/deps/npm/node_modules/es6-promise/dist/
Des6-promise.js253 function handleForeignThenable(promise, thenable, then$$1) { argument
254 asap(function (promise) { argument
282 function handleOwnThenable(promise, thenable) { argument
296 function handleMaybeThenable(promise, maybeThenable, then$$1) { argument
310 function resolve(promise, value) { argument
327 function publishRejection(promise) { argument
335 function fulfill(promise, value) { argument
348 function reject(promise, reason) { argument
374 function publish(promise) { argument
400 function invokeCallback(settled, promise, callback, detail) { argument
[all …]
Des6-promise.auto.js253 function handleForeignThenable(promise, thenable, then$$1) { argument
254 asap(function (promise) { argument
282 function handleOwnThenable(promise, thenable) { argument
296 function handleMaybeThenable(promise, maybeThenable, then$$1) { argument
310 function resolve(promise, value) { argument
327 function publishRejection(promise) { argument
335 function fulfill(promise, value) { argument
348 function reject(promise, reason) { argument
374 function publish(promise) { argument
400 function invokeCallback(settled, promise, callback, detail) { argument
[all …]
/third_party/node/test/js-native-api/test_promise/
Dtest.js13 const promise = test_promise.createPromise(); constant
25 const promise = test_promise.createPromise(); constant
37 const promise = test_promise.createPromise(); constant
Dtest_promise.c7 napi_value promise; in createPromise() local
39 napi_value promise, result; in isPromise() local
/third_party/boost/boost/fiber/future/
Dpromise.hpp105 class promise : private detail::promise_base< R > { class
113 promise( std::allocator_arg_t, Allocator alloc) : in promise() function in boost::fibers::promise
146 class promise< R & > : private detail::promise_base< R & > { class
154 promise( std::allocator_arg_t, Allocator alloc) : in promise() function in boost::fibers::promise
180 class promise< void > : private detail::promise_base< void > { class
188 promise( std::allocator_arg_t, Allocator alloc) : in promise() function in boost::fibers::promise
/third_party/node/lib/internal/process/
Dpromises.js93 function promiseRejectHandler(type, promise, reason) { argument
113 function resolveError(type, promise, reason) { argument
121 function unhandledRejection(promise, reason) { argument
132 function handledRejection(promise) { argument
144 asyncHandledRejections.push({ promise, warning }); property
/third_party/boost/libs/fiber/examples/
Dadapt_callbacks.cpp149 boost::fibers::promise< AsyncAPI::errorcode > promise; in write_ec() local
169 AsyncAPI::errorcode ec) { in write_ec()
192 boost::fibers::promise< result_pair > promise; in read_ec() local
203 AsyncAPI::errorcode ec, std::string const& data) mutable { in read_ec()
216 boost::fibers::promise< std::string > promise; in read() local
233 AsyncAPI::errorcode ec, std::string const& data) mutable { in read()
/third_party/boost/libs/thread/test/
Dtest_11818.cpp20 boost::promise<int> promise; in main() local
42 boost::promise<int> promise; in main() local
/third_party/skia/third_party/externals/dawn/src/dawn_node/binding/
DGPUBuffer.cpp50 interop::Promise<void> promise(env, PROMISE_INFO); in mapAsync() local
56 interop::Promise<void> promise(env, PROMISE_INFO); in mapAsync() local
65 interop::Promise<void> promise; in mapAsync() member
70 auto promise = ctx->promise; in mapAsync() local
DGPUDevice.cpp104 for (auto promise : self->lost_promises_) { in GPUDevice() local
142 for (auto promise : lost_promises_) { in destroy() local
307 Promise promise(env, PROMISE_INFO); in createComputePipelineAsync() local
314 Promise promise; in createComputePipelineAsync() member
318 auto promise = ctx->promise; in createComputePipelineAsync() local
350 Promise promise(env, PROMISE_INFO); in createRenderPipelineAsync() local
357 Promise promise; in createRenderPipelineAsync() member
361 auto promise = ctx->promise; in createRenderPipelineAsync() local
427 auto promise = in getLost() local
454 Promise promise; in popErrorScope() member
[all …]
/third_party/jerryscript/jerry-core/ecma/operations/
Decma-promise-object.c202 ecma_reject_promise (ecma_value_t promise, /**< promise */ in ecma_reject_promise()
231 ecma_fulfill_promise (ecma_value_t promise, /**< promise */ in ecma_fulfill_promise()
271 …ecma_value_t promise = ecma_op_object_get_by_magic_id (function_p, LIT_INTERNAL_MAGIC_STRING_PROMI… in ecma_promise_reject_handler() local
308 …ecma_value_t promise = ecma_op_object_get_by_magic_id (function_p, LIT_INTERNAL_MAGIC_STRING_PROMI… in ecma_promise_resolve_handler() local
713 ecma_value_t promise = ecma_op_function_construct (constructor_obj_p, in ecma_promise_new_capability() local
835 …ecma_value_t promise = ecma_op_object_get (ecma_get_object_from_value (capability), promise_str_p); in ecma_promise_reject_or_resolve() local
851 ecma_promise_do_then (ecma_value_t promise, /**< the promise which call 'then' */ in ecma_promise_do_then()
930 ecma_promise_then (ecma_value_t promise, /**< the promise which call 'then' */ in ecma_promise_then()
/third_party/boost/boost/asio/detail/
Dwinrt_async_manager.hpp74 auto promise = std::make_shared<std::promise<boost::system::error_code>>(); member in boost::asio::detail::winrt_async_manager
106 auto promise = std::make_shared<std::promise<boost::system::error_code>>(); member in boost::asio::detail::winrt_async_manager
141 auto promise = std::make_shared<std::promise<boost::system::error_code>>(); member in boost::asio::detail::winrt_async_manager
/third_party/gstreamer/gstplugins_bad/tests/examples/webrtc/
Dwebrtcbidirectional.c81 _on_answer_received (GstPromise * promise, gpointer user_data) in _on_answer_received()
110 _on_offer_received (GstPromise * promise, gpointer user_data) in _on_offer_received()
138 GstPromise *promise; in _on_negotiation_needed() local
Dwebrtc.c81 _on_answer_received (GstPromise * promise, gpointer user_data) in _on_answer_received()
103 _on_offer_received (GstPromise * promise, gpointer user_data) in _on_offer_received()
131 GstPromise *promise; in _on_negotiation_needed() local
/third_party/jsframework/runtime/main/manage/event/
DcallbackIntercept.ts115 public get promise() { method in PromiseRef
119 public set promise(newPromise) { method in PromiseRef

123456