Home
last modified time | relevance | path

Searched defs:async (Results 1 – 25 of 138) sorted by relevance

123456

/third_party/rust/rust/tests/ui/rust-2018/
Dasync-ident.rs7 fn async() {} //~ ERROR async in async() function
28 trait async {} interface
38 static async: u32 = 0; variable
44 const async: u32 = 0; constant
50 impl Foo { fn async() {} } in async() method
55 struct async {} in main() struct
58 let async: async = async {}; in main() localVariable
/third_party/rust/rust/tests/ui/parser/
Dfn-header-semantic-fail.rs12 const async unsafe extern "C" fn ff5() {} in main() constant
20 const async unsafe extern "C" fn ft5(); in main() constant
32 const async unsafe extern "C" fn ft5() {} in main() constant
43 const async unsafe extern "C" fn fi5() {} in main() constant
52 const async unsafe extern "C" fn fe5(); //~ ERROR functions in `extern` blocks in main() constant
Dfn-header-syntactic-pass.rs14 const async unsafe extern "C" fn f(); in syntax() constant
21 const async unsafe extern "C" fn f(); in syntax() constant
29 const async unsafe extern "C" fn f(); in syntax() constant
37 const async unsafe extern "C" fn f(); in syntax() constant
Dbad-fn-ptr-qualifier.rs11 pub type T6 = const async unsafe extern "C" fn(); constant
22 pub type FTT6 = for<'a> const async unsafe extern "C" fn(); constant
/third_party/rust/rust/src/tools/rust-analyzer/crates/parser/test_data/parser/inline/ok/
D0106_lambda_expr.rs11 static async || {}; in foo() constant
12 static async move || {}; in foo() constant
/third_party/rust/rust/src/tools/rustfmt/tests/source/
Dasync_block.rs38 static async || { in baz() variable
46 static async move || { in baz() variable
/third_party/libcoap/src/
Dcoap_async.c100 coap_async_trigger(coap_async_t *async) { in coap_async_trigger()
113 coap_async_set_delay(coap_async_t *async, coap_tick_t delay) { in coap_async_set_delay()
178 coap_async_set_app_data(coap_async_t *async, void *app_data) { in coap_async_set_app_data()
183 coap_async_get_app_data(const coap_async_t *async) { in coap_async_get_app_data()
205 coap_async_set_delay(coap_async_t *async, coap_tick_t delay) { in coap_async_set_delay()
211 coap_free_async(coap_session_t *session, coap_async_t *async) { in coap_free_async()
225 coap_async_set_app_data(coap_async_t *async, void *app_data) { in coap_async_set_app_data()
231 coap_async_get_app_data(const coap_async_t *async) { in coap_async_get_app_data()
/third_party/typescript/tests/baselines/reference/
DparserForOfStatement22.js2 var async; variable
7 var async; variable
DparserForOfStatement24.js2 var async; variable
7 var async; variable
Dfor-inStatementsAsyncIdentifier.js2 var async; variable
7 var async; variable
/third_party/rust/rust/tests/ui/async-await/
Dno-const-async.rs4 pub const async fn x() {} in x() constant
/third_party/rust/rust/tests/ui/parser/issues/
Dissue-76437-const-async.rs4 const async pub fn t() {} in t() constant
Dissue-76437-const-async-unsafe.rs4 const async unsafe pub fn t() {} in t() constant
/third_party/rust/rust/tests/ui/parser/issues/issue-87217-keyword-order/
Dconst-async-const.rs5 const async const fn test() {} in test() constant
/third_party/rust/rust/tests/ui/fn/
Dkeyword-order.rs3 default pub const async unsafe extern fn err() {} //~ ERROR `default` is not followed by an item in err() constant
6 pub default const async unsafe extern fn ok() {} in ok() constant
/third_party/rust/rust/tests/ui/editions/
Dedition-keywords-2015-2015-parsing.rs8 pub fn async() {} in async() function
12 let mut async = 1; // OK in check_async() localVariable
Dedition-keywords-2015-2018-parsing.rs8 pub fn async() {} in async() function
12 let mut async = 1; // OK in check_async() localVariable
/third_party/rust/rust/src/tools/rustfmt/tests/target/
Dasync_block.rs26 spawn(a, static async || { in baz() variable
31 spawn(a, static async move || { in baz() variable
/third_party/typescript/tests/cases/conformance/classes/members/privateNames/
DprivateNameMethodAsync.ts4 async #bar() { return await Promise.resolve(42); } constant
5 async foo() { constant
DprivateNameStaticMethodAsync.ts4 static async #bar() { return await Promise.resolve(42); } constant
5 static async foo() { constant
/third_party/jerryscript/tests/jerry/es2015/
Dfunction-async1.js117 var async = () => v = 4; function
128 var async = (a, b) => v = a + b; function
139 var async = (a, b) => v = a + b; function
/third_party/liburing/test/
Dsocket-getsetsock-cmd.c57 bool async) in submit_cmd_sqe()
98 static int run_get_rcvbuf(struct io_uring *ring, struct fds *sockfds, bool async) in run_get_rcvbuf()
139 static int run_get_peername(struct io_uring *ring, struct fds *sockfds, bool async) in run_get_peername()
204 int val, bool async) in run_setsockopt_reuseport()
238 int val, bool async) in run_setsockopt_usertimeout()
278 bool async = j & 1; in run_setsockopt_test() local
Dskip-cqe.c115 bool async, int fail_idx) in test_ltimeout_cancel()
178 static int test_ltimeout_fire(struct io_uring *ring, bool async, in test_ltimeout_fire()
355 bool async = i & 1; in main() local
396 bool async = i & 1; in main() local
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Support/
DThreadPool.h54 inline std::shared_future<void> async(Function &&F, Args &&... ArgList) { in async() function
63 inline std::shared_future<void> async(Function &&F) { in async() function
/third_party/libuv/test/
Dtest-async.c31 static uv_async_t async; variable
108 TEST_IMPL(async) { in TEST_IMPL() argument

123456