Searched refs:BitAnd_type (Results 1 – 2 of 2) sorted by relevance
/external/python/cpython2/Python/ |
D | Python-ast.c | 321 static PyTypeObject *BitAnd_type; variable 879 BitAnd_type = make_type("BitAnd", operator_type, NULL, 0); in init_types() 880 if (!BitAnd_type) return 0; in init_types() 881 BitAnd_singleton = PyType_GenericNew(BitAnd_type, NULL, NULL); in init_types() 6241 isinstance = PyObject_IsInstance(obj, (PyObject *)BitAnd_type); in obj2ast_operator() 6886 if (PyDict_SetItemString(d, "BitAnd", (PyObject*)BitAnd_type) < 0) in init_ast()
|
/external/python/cpython3/Python/ |
D | Python-ast.c | 410 static PyTypeObject *BitAnd_type; variable 1070 BitAnd_type = make_type("BitAnd", operator_type, NULL, 0); in init_types() 1071 if (!BitAnd_type) return 0; in init_types() 1072 BitAnd_singleton = PyType_GenericNew(BitAnd_type, NULL, NULL); in init_types() 7442 isinstance = PyObject_IsInstance(obj, (PyObject *)BitAnd_type); in obj2ast_operator() 8313 if (PyDict_SetItemString(d, "BitAnd", (PyObject*)BitAnd_type) < 0) return in PyInit__ast()
|