Home
last modified time | relevance | path

Searched refs:ASYNC (Results 1 – 17 of 17) sorted by relevance

/external/python/cpython3/Lib/test/
Dtest_tokenize.py740 ASYNC 'async' (1, 0) (1, 5)
757 ASYNC 'async' (1, 0) (1, 5)
796 ASYNC 'async' (1, 0) (1, 5)
804 ASYNC 'async' (2, 2) (2, 7)
815 ASYNC 'async' (1, 0) (1, 5)
819 ASYNC 'async' (1, 14) (1, 19)
847 ASYNC 'async' (4, 2) (4, 7)
869 ASYNC 'async' (1, 0) (1, 5)
885 ASYNC 'async' (4, 2) (4, 7)
/external/python/cpython3/Doc/library/
Dtoken.rst102 ASYNC
108 Added :data:`AWAIT` and :data:`ASYNC` tokens. Starting with
110 tokens, and :data:`AWAIT` and :data:`ASYNC` will be removed.
/external/python/cpython3/Grammar/
DGrammar19 async_funcdef: ASYNC funcdef
71 async_stmt: ASYNC (funcdef | with_stmt | for_stmt)
142 comp_for: [ASYNC] 'for' exprlist 'in' or_test [comp_iter]
/external/python/cpython3/Lib/lib2to3/
DGrammar.txt37 async_funcdef: ASYNC funcdef
88 async_stmt: ASYNC (funcdef | with_stmt | for_stmt)
164 comp_for: [ASYNC] 'for' exprlist 'in' testlist_safe [comp_iter]
/external/python/cpython3/Include/
Dtoken.h68 #define ASYNC 55 macro
/external/python/cpython3/Lib/lib2to3/pgen2/
Dtoken.py66 ASYNC = 57 variable
Dtokenize.py223 if toknum in (NAME, NUMBER, ASYNC, AWAIT):
519 yield (ASYNC if token == 'async' else AWAIT,
536 yield (ASYNC, stashed[1],
/external/v8/src/parsing/
Dtoken.h152 K(ASYNC, "async", 0) \
206 case ASYNC: in IsIdentifier()
Dparser-base.h785 token == Token::AWAIT || token == Token::ASYNC || in is_any_identifier()
1606 if (next == Token::IDENTIFIER || next == Token::ASYNC || in ParseAndClassifyIdentifier()
1666 next == Token::ASYNC) { in ParseIdentifierOrStrictReservedWord()
1686 if (next != Token::IDENTIFIER && next != Token::ASYNC && in ParseIdentifierName()
1760 case Token::ASYNC: in ParsePrimaryExpression()
1763 Consume(Token::ASYNC); in ParsePrimaryExpression()
1822 (peek() == Token::ASYNC && PeekAhead() == Token::FUNCTION)) { in ParsePrimaryExpression()
2063 if (!*is_generator && token == Token::ASYNC && in ParsePropertyName()
2065 Consume(Token::ASYNC); in ParsePropertyName()
2701 bool is_async = peek() == Token::ASYNC && in ParseAssignmentExpression()
[all …]
Dpreparser.cc57 case Token::ASYNC: in GetSymbolHelper()
Dparser.cc858 if (!Check(Token::ASYNC)) { in DoParseFunction()
1247 case Token::ASYNC: in ParseExportDefault()
1250 Consume(Token::ASYNC); in ParseExportDefault()
1380 case Token::ASYNC: in ParseExportDeclaration()
1383 Consume(Token::ASYNC); in ParseExportDeclaration()
Dscanner.cc1359 KEYWORD("async", Token::ASYNC) \
/external/python/cpython3/Lib/
Dtoken.py68 ASYNC = 55 variable
Dtokenize.py292 if toknum in (NAME, NUMBER, ASYNC, AWAIT):
675 ASYNC if token == 'async' else AWAIT,
692 yield TokenInfo(ASYNC, stashed.string,
/external/python/cpython3/Parser/
Dtokenizer.c1556 return ASYNC; in tok_get()
1582 return ASYNC; in tok_get()
/external/python/cpython3/Python/
Dast.c1638 REQ(CHILD(n, 0), ASYNC); in ast_for_async_funcdef()
1659 REQ(CHILD(n, 0), ASYNC); in ast_for_async_stmt()
1778 if (TYPE(CHILD(n, 0)) == ASYNC) { in count_comp_fors()
1853 if (TYPE(CHILD(n, 0)) == ASYNC) { in ast_for_comprehension()
/external/python/cpython3/Doc/reference/
Dexpressions.rst175 comp_for: [ASYNC] "for" `target_list` "in" `or_test` [`comp_iter`]