Home
last modified time | relevance | path

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

/external/python/cpython2/Include/
Dintobject.h32 #define PyInt_CheckExact(op) ((op)->ob_type == &PyInt_Type) macro
/external/python/cpython2/Modules/_sqlite/
Dstatement.c121 if (PyInt_CheckExact(parameter)) { in pysqlite_statement_bind_parameter()
208 if (PyInt_CheckExact(obj) || PyLong_CheckExact(obj) in _need_adapt()
/external/python/cpython2/Objects/
Dintobject.c134 if (PyInt_CheckExact(v)) { in int_dealloc()
957 if (PyInt_CheckExact(v)) in int_int()
1486 if (PyInt_CheckExact(p) && p->ob_refcnt != 0) in PyInt_ClearFreeList()
1496 if (!PyInt_CheckExact(p) || in PyInt_ClearFreeList()
1560 if (PyInt_CheckExact(p) && p->ob_refcnt != 0) in PyInt_Fini()
Dcodeobject.c426 || PyInt_CheckExact(op) in _PyCode_ConstantKey()
Dabstract.c1627 if (PyInt_CheckExact(o)) {
Dtypeobject.c5285 if (PyInt_CheckExact(temp) || PyBool_Check(temp))
/external/libmojo/third_party/markupsafe/
D_speedups.c125 PyInt_CheckExact(text) || in escape()
/external/python/cpython2/Python/
Dceval.c1464 if (PyInt_CheckExact(v) && PyInt_CheckExact(w)) { in PyEval_EvalFrameEx()
1498 if (PyInt_CheckExact(v) && PyInt_CheckExact(w)) { in PyEval_EvalFrameEx()
1525 if (PyList_CheckExact(v) && PyInt_CheckExact(w)) { in PyEval_EvalFrameEx()
1712 if (PyInt_CheckExact(v) && PyInt_CheckExact(w)) { in PyEval_EvalFrameEx()
1744 if (PyInt_CheckExact(v) && PyInt_CheckExact(w)) { in PyEval_EvalFrameEx()
2554 if (PyInt_CheckExact(w) && PyInt_CheckExact(v)) { in PyEval_EvalFrameEx()
Dbltinmodule.c2342 if (PyInt_CheckExact(result)) { in builtin_sum()
2354 if (PyInt_CheckExact(item)) { in builtin_sum()
2395 if (PyInt_CheckExact(item)) { in builtin_sum()
Dmarshal.c239 else if (PyInt_CheckExact(v)) { in w_object()
/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()