Home
last modified time | relevance | path

Searched refs:ASYNC (Results 1 - 25 of 25) sorted by relevance

/third_party/python/Lib/test/
H A Dtest_tokenize.py2202 ASYNC 'async' (1, 0) (1, 5)
2211 ASYNC 'async' (1, 5) (1, 10)
2218 ASYNC 'async' (1, 0) (1, 5)
2225 ASYNC 'async' (1, 6) (1, 11)
2235 ASYNC 'async' (1, 6) (1, 11)
2249 ASYNC 'async' (1, 4) (1, 9)
2253 ASYNC 'async' (1, 0) (1, 5)
2263 ASYNC 'async' (1, 0) (1, 5)
2273 ASYNC 'async' (1, 0) (1, 5)
2279 ASYNC 'asyn
[all...]
/third_party/node/src/
H A Dnode_blob.h107 ASYNC
134 Mode mode = Mode::ASYNC);
H A Dnode_blob.cc320 CHECK_EQ(mode_, Mode::ASYNC); in AfterThreadPoolWork()
389 FixedSizeBlobCopyJob::Mode::ASYNC; in New()
400 if (job->mode() == FixedSizeBlobCopyJob::Mode::ASYNC) in Run()
/third_party/node/deps/openssl/openssl/crypto/err/
H A Derr_all_legacy.c61 IMPLEMENT_LEGACY_ERR_LOAD(ASYNC)
/third_party/openssl/crypto/err/
H A Derr_all_legacy.c61 IMPLEMENT_LEGACY_ERR_LOAD(ASYNC)
/third_party/python/Include/
H A Dtoken.h69 #define ASYNC 56 macro
/third_party/python/Lib/lib2to3/pgen2/
H A Dtoken.py66 ASYNC = 57 variable
H A Dtokenize.py211 if toknum in (NAME, NUMBER, ASYNC, AWAIT):
506 yield (ASYNC if token == 'async' else AWAIT,
524 yield (ASYNC, stashed[1],
/third_party/python/Lib/
H A Dtoken.py62 ASYNC = 56 variable
/third_party/node/deps/v8/src/parsing/
H A Dtoken.h179 K(ASYNC, "async", 0) \
237 if (V8_LIKELY(base::IsInRange(token, IDENTIFIER, ASYNC))) return true; in IsValidIdentifier()
H A Dscanner-inl.h21 KEYWORD("async", Token::ASYNC) \
H A Dpreparser.cc36 case Token::ASYNC: in GetIdentifierHelper()
H A Dparser-base.h1660 if (V8_LIKELY(base::IsInRange(next, Token::IDENTIFIER, Token::ASYNC))) { in ClassifyPropertyIdentifier()
1691 if (V8_LIKELY(base::IsInRange(next, Token::IDENTIFIER, Token::ASYNC))) { in ParseAndClassifyIdentifier()
1912 if (V8_UNLIKELY(token == Token::ASYNC && in ParsePrimaryExpression()
1992 (peek() == Token::ASYNC && PeekAhead() == Token::FUNCTION)) { in ParsePrimaryExpression()
2199 if (Check(Token::ASYNC)) { in ParseProperty()
3422 scanner()->current_token() == Token::ASYNC && in ParseLeftHandSideContinuation()
4296 DCHECK_EQ(scanner()->current_token(), Token::ASYNC); in ParseAsyncFunctionDeclaration() member in v8::internal::ParseFunctionFlag::Token
4486 case Token::ASYNC: in IsNextLetKeyword()
4860 DCHECK_EQ(scanner()->current_token(), Token::ASYNC); in ParseAsyncFunctionLiteral() member in v8::internal::ParseFunctionFlag::Token
5203 case Token::ASYNC in ParseStatementListItem()
[all...]
H A Dparser.cc976 if (!Check(Token::ASYNC)) { in DoParseFunction()
1548 case Token::ASYNC: in ParseExportDefault()
1551 Consume(Token::ASYNC); in ParseExportDefault()
1750 case Token::ASYNC: in ParseExportDeclaration()
1751 Consume(Token::ASYNC); in ParseExportDeclaration()
/third_party/rust/crates/rustix/src/backend/linux_raw/mm/
H A Dtypes.rs119 const ASYNC = linux_raw_sys::general::MS_ASYNC; consts
/third_party/rust/crates/rustix/tests/mm/
H A Dmmap.rs159 msync(addr, 8192, MsyncFlags::ASYNC).unwrap(); in test_msync()
/third_party/rust/crates/rustix/src/backend/libc/mm/
H A Dtypes.rs268 const ASYNC = c::MS_ASYNC; consts
/third_party/python/Parser/
H A Dtokenizer.c1546 /* There was a NEWLINE after ASYNC DEF, in tok_get()
1695 return ASYNC; in tok_get()
1719 returning a plain NAME token, return ASYNC. */ in tok_get()
1722 return ASYNC; in tok_get()
H A Dparser.c1972 // | &('def' | '@' | ASYNC) function_def
1975 // | &('with' | ASYNC) with_stmt
1976 // | &('for' | ASYNC) for_stmt
1993 { // &('def' | '@' | ASYNC) function_def in compound_stmt_rule()
1998 D(fprintf(stderr, "%*c> compound_stmt[%d-%d]: %s\n", p->level, ' ', _mark, p->mark, "&('def' | '@' | ASYNC) function_def")); in compound_stmt_rule()
2006 D(fprintf(stderr, "%*c+ compound_stmt[%d-%d]: %s succeeded!\n", p->level, ' ', _mark, p->mark, "&('def' | '@' | ASYNC) function_def")); in compound_stmt_rule()
2012 p->error_indicator ? "ERROR!" : "-", _mark, p->mark, "&('def' | '@' | ASYNC) function_def")); in compound_stmt_rule()
2056 { // &('with' | ASYNC) with_stmt in compound_stmt_rule()
2061 D(fprintf(stderr, "%*c> compound_stmt[%d-%d]: %s\n", p->level, ' ', _mark, p->mark, "&('with' | ASYNC) with_stmt")); in compound_stmt_rule()
2069 D(fprintf(stderr, "%*c+ compound_stmt[%d-%d]: %s succeeded!\n", p->level, ' ', _mark, p->mark, "&('with' | ASYNC) with_stm in compound_stmt_rule()
[all...]
/third_party/rust/crates/rustix/src/process/
H A Dprctl.rs262 const ASYNC = 2; consts
/third_party/node/src/crypto/
H A Dcrypto_util.cc536 V(ASYNC) \ in SetFipsCrypto()
/third_party/rust/crates/rustix/src/
H A Dio_uring.rs373 const ASYNC = 1 << sys::IOSQE_ASYNC_BIT as u8; consts
/third_party/libuv/include/
H A Duv.h162 XX(ASYNC, async) \
/third_party/libuv/include/uv_ndk/
H A Duv.h157 XX(ASYNC, async) \
/third_party/node/deps/uv/include/
H A Duv.h157 XX(ASYNC, async) \

Completed in 72 milliseconds