Home
last modified time | relevance | path

Searched refs:PyInt_CheckExact (Results 1 – 11 of 11) sorted by relevance

/external/python/cpython2/Include/
Dintobject.h32 #define PyInt_CheckExact(op) (Py_TYPE(op) == &PyInt_Type) macro
35 #define _PyAnyInt_CheckExact(op) (PyInt_CheckExact(op) || PyLong_CheckExact(op))
/external/python/cpython2/Objects/
Dintobject.c134 if (PyInt_CheckExact(v)) { in int_dealloc()
960 if (PyInt_CheckExact(v)) in int_int()
1489 if (PyInt_CheckExact(p) && Py_REFCNT(p) != 0) in PyInt_ClearFreeList()
1499 if (!PyInt_CheckExact(p) || in PyInt_ClearFreeList()
1563 if (PyInt_CheckExact(p) && Py_REFCNT(p) != 0) in PyInt_Fini()
Dabstract.c1624 if (PyInt_CheckExact(o)) {
Dtypeobject.c5348 if (PyInt_CheckExact(temp) || PyBool_Check(temp))
/external/libchrome/third_party/markupsafe/
D_speedups.c125 PyInt_CheckExact(text) || in escape()
/external/python/cpython2/Python/
Dceval.c1476 if (PyInt_CheckExact(v) && PyInt_CheckExact(w)) { in PyEval_EvalFrameEx()
1510 if (PyInt_CheckExact(v) && PyInt_CheckExact(w)) { in PyEval_EvalFrameEx()
1537 if (PyList_CheckExact(v) && PyInt_CheckExact(w)) { in PyEval_EvalFrameEx()
1724 if (PyInt_CheckExact(v) && PyInt_CheckExact(w)) { in PyEval_EvalFrameEx()
1756 if (PyInt_CheckExact(v) && PyInt_CheckExact(w)) { in PyEval_EvalFrameEx()
2566 if (PyInt_CheckExact(w) && PyInt_CheckExact(v)) { in PyEval_EvalFrameEx()
Dbltinmodule.c2343 if (PyInt_CheckExact(result)) { in builtin_sum()
2355 if (PyInt_CheckExact(item)) { in builtin_sum()
2401 if (PyInt_CheckExact(item)) { in builtin_sum()
Dmarshal.c239 else if (PyInt_CheckExact(v)) { in w_object()
/external/python/cpython2/Modules/_sqlite/
Dstatement.c121 if (PyInt_CheckExact(parameter)) { in pysqlite_statement_bind_parameter()
/external/python/cpython2/Doc/c-api/
Dint.rst33 .. c:function:: int PyInt_CheckExact(PyObject *o)
/external/python/cpython2/Objects/stringlib/
Dstring_format.h584 else if (PyInt_CheckExact(fieldobj)) in render_field()