Searched refs:BitOr_type (Results 1 – 2 of 2) sorted by relevance
/external/python/cpython2/Python/ |
D | Python-ast.c | 319 static PyTypeObject *BitOr_type; variable 871 BitOr_type = make_type("BitOr", operator_type, NULL, 0); in init_types() 872 if (!BitOr_type) return 0; in init_types() 873 BitOr_singleton = PyType_GenericNew(BitOr_type, NULL, NULL); in init_types() 6225 isinstance = PyObject_IsInstance(obj, (PyObject *)BitOr_type); in obj2ast_operator() 6883 if (PyDict_SetItemString(d, "BitOr", (PyObject*)BitOr_type) < 0) return; in init_ast()
|
/external/python/cpython3/Python/ |
D | Python-ast.c | 408 static PyTypeObject *BitOr_type; variable 1062 BitOr_type = make_type("BitOr", operator_type, NULL, 0); in init_types() 1063 if (!BitOr_type) return 0; in init_types() 1064 BitOr_singleton = PyType_GenericNew(BitOr_type, NULL, NULL); in init_types() 7426 isinstance = PyObject_IsInstance(obj, (PyObject *)BitOr_type); in obj2ast_operator() 8309 if (PyDict_SetItemString(d, "BitOr", (PyObject*)BitOr_type) < 0) return in PyInit__ast()
|