Home
last modified time | relevance | path

Searched refs:PyLong_CheckExact (Results 1 – 25 of 31) sorted by relevance

12

/external/python/cpython2/Include/
Dlongobject.h16 #define PyLong_CheckExact(op) (Py_TYPE(op) == &PyLong_Type) macro
/external/python/cpython2/Modules/_sqlite/
Dstatement.c123 } else if (PyLong_CheckExact(parameter)) { in pysqlite_statement_bind_parameter()
208 if (PyInt_CheckExact(obj) || PyLong_CheckExact(obj) in _need_adapt()
/external/python/cpython3/Modules/_sqlite/
Dstatement.c126 if (PyLong_CheckExact(parameter)) { in pysqlite_statement_bind_parameter()
198 if (PyLong_CheckExact(obj) || PyFloat_CheckExact(obj) in _need_adapt()
/external/python/cpython3/Include/
Dlongobject.h16 #define PyLong_CheckExact(op) (Py_TYPE(op) == &PyLong_Type) macro
/external/libmojo/third_party/markupsafe/
D_speedups.c123 if (PyLong_CheckExact(text) || in escape()
/external/python/cpython3/Objects/
Drangeobject.c414 if (PyLong_CheckExact(ob) || PyBool_Check(ob)) in range_contains()
555 if (PyLong_CheckExact(ob) || PyBool_Check(ob)) { in range_count()
577 if (!PyLong_CheckExact(ob) && !PyBool_Check(ob)) { in range_index()
Dabstract.c691 if (PyLong_CheckExact(obj)) { in PyObject_Format()
1231 if (!result || PyLong_CheckExact(result)) in PyNumber_Index()
1312 if (PyLong_CheckExact(o)) { in PyNumber_Long()
1319 if (result != NULL && !PyLong_CheckExact(result)) { in PyNumber_Long()
1328 if (result == NULL || PyLong_CheckExact(result)) { in PyNumber_Long()
1347 if (result != NULL && !PyLong_CheckExact(result)) { in PyNumber_Long()
Dframeobject.c88 if (!PyLong_CheckExact(p_new_lineno)) { in frame_setlineno()
Dcodeobject.c483 || PyLong_CheckExact(op) in _PyCode_ConstantKey()
Dlongobject.c138 if (PyLong_CheckExact(integral)) { in _PyLong_FromNbInt()
154 if (!result || PyLong_CheckExact(result)) in _PyLong_FromNbInt()
4568 if (PyLong_CheckExact(v)) in long_long()
Dexceptions.c1403 have_lineno = (self->lineno != NULL) && PyLong_CheckExact(self->lineno); in SyntaxError_str()
/external/python/cpython3/Python/
Dformatter_unicode.c947 && PyLong_CheckExact(value)) in format_long_internal()
1458 if (PyLong_CheckExact(obj)) in _PyLong_FormatAdvancedWriter()
Dbltinmodule.c2251 if (PyLong_CheckExact(result)) { in builtin_sum_impl()
2267 if (PyLong_CheckExact(item)) { in builtin_sum_impl()
2313 if (PyLong_CheckExact(item)) { in builtin_sum_impl()
D_warnings.c224 || !PyLong_CheckExact(version_obj) in already_warned()
Dmarshal.c338 if (PyLong_CheckExact(v)) { in w_complex_object()
/external/python/cpython3/Modules/
D_csv.c213 if (!PyLong_CheckExact(src)) { in _set_int()
1487 if (!PyLong_CheckExact(new_limit)) { in csv_field_size_limit()
D_cursesmodule.c245 else if (PyLong_CheckExact(obj)) { in PyCurses_ConvertToChtype()
310 else if (PyLong_CheckExact(obj)) { in PyCurses_ConvertToCchar_t()
3126 else if (PyLong_CheckExact(obj)) { in PyCurses_ConvertToWchar_t()
/external/python/cpython2/Doc/c-api/
Dlong.rst33 .. c:function:: int PyLong_CheckExact(PyObject *p)
/external/python/cpython3/Doc/c-api/
Dlong.rst30 .. c:function:: int PyLong_CheckExact(PyObject *p)
/external/python/cpython2/Objects/
Dcodeobject.c427 || PyLong_CheckExact(op) in _PyCode_ConstantKey()
Dlongobject.c3611 if (v->ob_size == 0 && PyLong_CheckExact(v)) { in long_neg()
3955 if (PyLong_CheckExact(v)) in long_long()
3970 if (PyLong_CheckExact(v)) { in long_int()
/external/python/cpython3/PC/
D_msi.c605 } else if (PyLong_CheckExact(data)) { in summary_setproperty()
/external/python/cpython3/Objects/stringlib/
Dunicode_format.h503 else if (PyLong_CheckExact(fieldobj)) in render_field()
/external/python/cpython2/Objects/stringlib/
Dstring_format.h586 else if (PyLong_CheckExact(fieldobj)) in render_field()
/external/python/cpython2/Python/
Dmarshal.c254 else if (PyLong_CheckExact(v)) { in w_object()

12