Searched refs:stmt_type (Results 1 – 4 of 4) sorted by relevance
/external/libxkbcommon/xkbcommon/src/xkbcomp/ |
D | ast.h | 75 enum stmt_type { enum 138 stmt_type_to_string(enum stmt_type type); 148 enum stmt_type type;
|
D | ast-build.c | 756 stmt_type_to_string(enum stmt_type type) in stmt_type_to_string()
|
/external/python/cpython2/Python/ |
D | Python-ast.c | 34 static PyTypeObject *stmt_type; variable 687 stmt_type = make_type("stmt", &AST_type, NULL, 0); in init_types() 688 if (!stmt_type) return 0; in init_types() 689 if (!add_attributes(stmt_type, stmt_attributes, 2)) return 0; in init_types() 690 FunctionDef_type = make_type("FunctionDef", stmt_type, in init_types() 693 ClassDef_type = make_type("ClassDef", stmt_type, ClassDef_fields, 4); in init_types() 695 Return_type = make_type("Return", stmt_type, Return_fields, 1); in init_types() 697 Delete_type = make_type("Delete", stmt_type, Delete_fields, 1); in init_types() 699 Assign_type = make_type("Assign", stmt_type, Assign_fields, 2); in init_types() 701 AugAssign_type = make_type("AugAssign", stmt_type, AugAssign_fields, 3); in init_types() [all …]
|
/external/python/cpython3/Python/ |
D | Python-ast.c | 28 static PyTypeObject *stmt_type; variable 855 stmt_type = make_type("stmt", &AST_type, NULL, 0); in init_types() 856 if (!stmt_type) return 0; in init_types() 857 if (!add_attributes(stmt_type, stmt_attributes, 2)) return 0; in init_types() 858 FunctionDef_type = make_type("FunctionDef", stmt_type, FunctionDef_fields, in init_types() 861 AsyncFunctionDef_type = make_type("AsyncFunctionDef", stmt_type, in init_types() 864 ClassDef_type = make_type("ClassDef", stmt_type, ClassDef_fields, 5); in init_types() 866 Return_type = make_type("Return", stmt_type, Return_fields, 1); in init_types() 868 Delete_type = make_type("Delete", stmt_type, Delete_fields, 1); in init_types() 870 Assign_type = make_type("Assign", stmt_type, Assign_fields, 2); in init_types() [all …]
|