Home
last modified time | relevance | path

Searched refs:stmt_type (Results 1 – 5 of 5) sorted by relevance

/external/libxkbcommon/src/xkbcomp/
Dast.h75 enum stmt_type { enum
140 stmt_type_to_string(enum stmt_type type);
150 enum stmt_type type;
Dast-build.c778 stmt_type_to_string(enum stmt_type type) in stmt_type_to_string()
/external/python/cpython2/Python/
DPython-ast.c34 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/
DPython-ast.c209 PyObject *stmt_type; member
454 Py_CLEAR(state->stmt_type); in _PyAST_Fini()
1233 state->stmt_type = make_type(state, "stmt", state->AST_type, NULL, 0, in init_types()
1259 if (!state->stmt_type) return 0; in init_types()
1260 if (!add_attributes(state, state->stmt_type, stmt_attributes, 4)) return 0; in init_types()
1261 if (PyObject_SetAttr(state->stmt_type, state->end_lineno, Py_None) == -1) in init_types()
1263 if (PyObject_SetAttr(state->stmt_type, state->end_col_offset, Py_None) == in init_types()
1266 state->FunctionDef_type = make_type(state, "FunctionDef", state->stmt_type, in init_types()
1277 state->stmt_type, in init_types()
1287 state->ClassDef_type = make_type(state, "ClassDef", state->stmt_type, in init_types()
[all …]
/external/python/cpython3/Tools/c-analyzer/
Dknown.tsv1762 Python/Python-ast.c - stmt_type variable static PyTypeObject *stmt_type