Home
last modified time | relevance | path

Searched refs:Continue_type (Results 1 – 2 of 2) sorted by relevance

/external/python/cpython2/Python/
DPython-ast.c152 static PyTypeObject *Continue_type; variable
737 Continue_type = make_type("Continue", stmt_type, NULL, 0); in init_types()
738 if (!Continue_type) return 0; in init_types()
2544 result = PyType_GenericNew(Continue_type, NULL, NULL); in ast2obj_stmt()
4775 isinstance = PyObject_IsInstance(obj, (PyObject*)Continue_type); in obj2ast_stmt()
6815 if (PyDict_SetItemString(d, "Continue", (PyObject*)Continue_type) < 0) in init_ast()
/external/python/cpython3/Python/
DPython-ast.c187 static PyTypeObject *Continue_type; variable
908 Continue_type = make_type("Continue", stmt_type, NULL, 0); in init_types()
909 if (!Continue_type) return 0; in init_types()
3025 result = PyType_GenericNew(Continue_type, NULL, NULL); in ast2obj_stmt()
5727 isinstance = PyObject_IsInstance(obj, (PyObject*)Continue_type); in obj2ast_stmt()
8215 if (PyDict_SetItemString(d, "Continue", (PyObject*)Continue_type) < 0) in PyInit__ast()