Searched refs:asdl_identifier_seq (Results 1 - 8 of 8) sorted by relevance
/third_party/python/Include/internal/ |
H A D | pycore_asdl.h | 40 } asdl_identifier_seq; typedef 48 asdl_identifier_seq *_Py_asdl_identifier_seq_new(Py_ssize_t size, PyArena *arena);
|
H A D | pycore_ast.h | 321 asdl_identifier_seq *names; 325 asdl_identifier_seq *names; 597 asdl_identifier_seq *kwd_attrs; 709 stmt_ty _PyAST_Global(asdl_identifier_seq * names, int lineno, int col_offset, 711 stmt_ty _PyAST_Nonlocal(asdl_identifier_seq * names, int lineno, int 835 asdl_identifier_seq * kwd_attrs, asdl_pattern_seq
|
/third_party/python/Parser/ |
H A D | pegen.h | 293 asdl_identifier_seq *_PyPegen_map_names_to_ids(Parser *, asdl_expr_seq *);
|
H A D | action_helpers.c | 225 asdl_identifier_seq * 231 asdl_identifier_seq *new_seq = _Py_asdl_identifier_seq_new(len, p->arena); in _PyPegen_map_names_to_ids()
|
H A D | parser.c | 3005 _res = _PyAST_Global ( CHECK ( asdl_identifier_seq* , _PyPegen_map_names_to_ids ( p , a ) ) , EXTRA ); in global_stmt_rule() 3070 _res = _PyAST_Nonlocal ( CHECK ( asdl_identifier_seq* , _PyPegen_map_names_to_ids ( p , a ) ) , EXTRA ); in nonlocal_stmt_rule() 10215 _res = _PyAST_MatchClass ( cls , NULL , CHECK ( asdl_identifier_seq* , _PyPegen_map_names_to_ids ( p , CHECK ( asdl_expr_seq* , _PyPegen_get_pattern_keys ( p , keywords ) ) ) ) , CHECK ( asdl_pattern_seq* , _PyPegen_get_patterns ( p , keywords ) ) , EXTRA ); in class_pattern_rule() 10267 _res = _PyAST_MatchClass ( cls , patterns , CHECK ( asdl_identifier_seq* , _PyPegen_map_names_to_ids ( p , CHECK ( asdl_expr_seq* , _PyPegen_get_pattern_keys ( p , keywords ) ) ) ) , CHECK ( asdl_pattern_seq* , _PyPegen_get_patterns ( p , keywords ) ) , EXTRA ); in class_pattern_rule() [all...] |
/third_party/python/Python/ |
H A D | symtable.c | 1355 asdl_identifier_seq *seq = s->v.Global.names; in symtable_visit_stmt() 1391 asdl_identifier_seq *seq = s->v.Nonlocal.names; in symtable_visit_stmt()
|
H A D | Python-ast.c | 2477 _PyAST_Global(asdl_identifier_seq * names, int lineno, int col_offset, int in _PyAST_Global() 2494 _PyAST_Nonlocal(asdl_identifier_seq * names, int lineno, int col_offset, int in _PyAST_Nonlocal() 3509 _PyAST_MatchClass(expr_ty cls, asdl_pattern_seq * patterns, asdl_identifier_seq in _PyAST_MatchClass() 7974 asdl_identifier_seq* names; in obj2ast_stmt() 8024 asdl_identifier_seq* names; in obj2ast_stmt() 11564 asdl_identifier_seq* kwd_attrs; in obj2ast_pattern()
|
H A D | compile.c | 6537 validate_kwd_attrs(struct compiler *c, asdl_identifier_seq *attrs, asdl_pattern_seq* patterns) in validate_kwd_attrs() 6565 asdl_identifier_seq *kwd_attrs = p->v.MatchClass.kwd_attrs; in compiler_pattern_class()
|
Completed in 74 milliseconds