Searched refs:Break_type (Results 1 – 2 of 2) sorted by relevance
/external/python/cpython2/Python/ |
D | Python-ast.c | 151 static PyTypeObject *Break_type; variable 735 Break_type = make_type("Break", stmt_type, NULL, 0); in init_types() 736 if (!Break_type) return 0; in init_types() 2540 result = PyType_GenericNew(Break_type, NULL, NULL); in ast2obj_stmt() 4765 isinstance = PyObject_IsInstance(obj, (PyObject*)Break_type); in obj2ast_stmt() 6814 if (PyDict_SetItemString(d, "Break", (PyObject*)Break_type) < 0) return; in init_ast()
|
/external/python/cpython3/Python/ |
D | Python-ast.c | 186 static PyTypeObject *Break_type; variable 906 Break_type = make_type("Break", stmt_type, NULL, 0); in init_types() 907 if (!Break_type) return 0; in init_types() 3021 result = PyType_GenericNew(Break_type, NULL, NULL); in ast2obj_stmt() 5717 isinstance = PyObject_IsInstance(obj, (PyObject*)Break_type); in obj2ast_stmt() 8213 if (PyDict_SetItemString(d, "Break", (PyObject*)Break_type) < 0) return in PyInit__ast()
|