Home
last modified time | relevance | path

Searched refs:_keyword (Results 1 – 6 of 6) sorted by relevance

/external/python/cpython3/Parser/pegen/
Dparse.c1644 Token * _keyword; in small_stmt_rule() local
1646 (_keyword = _PyPegen_expect_token(p, 502)) // token='pass' in small_stmt_rule()
1740 Token * _keyword; in small_stmt_rule() local
1742 (_keyword = _PyPegen_expect_token(p, 506)) // token='break' in small_stmt_rule()
1773 Token * _keyword; in small_stmt_rule() local
1775 (_keyword = _PyPegen_expect_token(p, 507)) // token='continue' in small_stmt_rule()
2609 Token * _keyword; in global_stmt_rule() local
2612 (_keyword = _PyPegen_expect_token(p, 508)) // token='global' in global_stmt_rule()
2671 Token * _keyword; in nonlocal_stmt_rule() local
2674 (_keyword = _PyPegen_expect_token(p, 509)) // token='nonlocal' in nonlocal_stmt_rule()
[all …]
/external/python/cpython2/Include/
DPython-ast.h33 typedef struct _keyword *keyword_ty;
364 struct _keyword { struct
/external/python/cpython3/Include/
DPython-ast.h41 typedef struct _keyword *keyword_ty;
427 struct _keyword { struct
/external/python/cpython2/Demo/parser/
Dunparse.py553 def _keyword(self, t): member in Unparser
/external/starlark-go/doc/
Dspec.md1064 A function definition may include a final _keyword arguments_ or
2677 _keyword-only_: if a call provides their values, it must do so as
2703 This is called the _keyword arguments_ parameter, and accumulates in a
/external/python/cpython3/Doc/
Dglossary.rst851 .. _keyword-only_parameter: