Home
last modified time | relevance | path

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

/external/python/cpython2/Python/
DPython-ast.c86 static PyTypeObject *While_type; variable
707 While_type = make_type("While", stmt_type, While_fields, 3); in init_types()
708 if (!While_type) return 0; in init_types()
2346 result = PyType_GenericNew(While_type, NULL, NULL); in ast2obj_stmt()
4056 isinstance = PyObject_IsInstance(obj, (PyObject*)While_type); in obj2ast_stmt()
6795 if (PyDict_SetItemString(d, "While", (PyObject*)While_type) < 0) return; in init_ast()
/external/python/cpython3/Python/
DPython-ast.c114 static PyTypeObject *While_type; variable
880 While_type = make_type("While", stmt_type, While_fields, 3); in init_types()
881 if (!While_type) return 0; in init_types()
2844 result = PyType_GenericNew(While_type, NULL, NULL); in ast2obj_stmt()
4964 isinstance = PyObject_IsInstance(obj, (PyObject*)While_type); in obj2ast_stmt()
8192 if (PyDict_SetItemString(d, "While", (PyObject*)While_type) < 0) return in PyInit__ast()