Home
last modified time | relevance | path

Searched refs:PyObject_RichCompare (Results 1 – 19 of 19) sorted by relevance

/external/python/cpython2/Modules/_sqlite/
Drow.c204 PyObject *res = PyObject_RichCompare(self->description, other->description, opid); in pysqlite_row_richcompare()
208 return PyObject_RichCompare(self->data, other->data, opid); in pysqlite_row_richcompare()
/external/python/cpython2/Doc/data/
Drefcounts.dat1020 PyObject_RichCompare:PyObject*::+1:
1021 PyObject_RichCompare:PyObject*:o1:0:
1022 PyObject_RichCompare:PyObject*:o2:0:
1023 PyObject_RichCompare:int:opid::
/external/protobuf/python/google/protobuf/pyext/
Drepeated_composite_container.cc330 return PyObject_RichCompare(list.get(), other_list.get(), opid); in RichCompare()
Drepeated_scalar_container.cc590 return PyObject_RichCompare(list.get(), other, opid); in RichCompare()
/external/python/cpython2/Objects/
Dstructseq.c366 result = PyObject_RichCompare(tup, o2, op); in structseq_richcompare()
Dweakrefobject.c211 return PyObject_RichCompare(PyWeakref_GET_OBJECT(self), in weakref_richcompare()
Dobject.c944 PyObject_RichCompare(PyObject *v, PyObject *w, int op) in PyObject_RichCompare() function
1004 res = PyObject_RichCompare(v, w, op); in PyObject_RichCompareBool()
Dtupleobject.c638 return PyObject_RichCompare(vt->ob_item[i], wt->ob_item[i], op); in tuplerichcompare()
Dcomplexobject.c822 sub_res = PyObject_RichCompare(j, w, op); in complex_richcompare()
Ddescrobject.c872 return PyObject_RichCompare(v->dict, w, op); in proxy_richcompare()
Dlistobject.c1924 return PyObject_RichCompare(a->key, b->key, op); in sortwrapper_richcompare()
2439 return PyObject_RichCompare(vl->ob_item[i], wl->ob_item[i], op); in list_richcompare()
/external/python/cpython2/Include/
Dobject.h469 PyAPI_FUNC(PyObject *) PyObject_RichCompare(PyObject *, PyObject *, int);
/external/python/cpython2/Modules/
Doperator.c66 return PyObject_RichCompare(a1,a2,A); }
Darraymodule.c583 res = PyObject_RichCompare(vi, wi, op); in array_richcompare()
/external/python/cpython2/PC/os2emx/
Dpython27.def453 "PyObject_RichCompare"
/external/python/cpython2/Doc/c-api/
Dobject.rst101 .. c:function:: PyObject* PyObject_RichCompare(PyObject *o1, PyObject *o2, int opid)
Dtypeobj.rst702 :c:member:`~PyTypeObject.tp_richcompare` and for :c:func:`PyObject_RichCompare`:
/external/python/cpython2/Python/
Dceval.c4858 return PyObject_RichCompare(v, w, op); in cmp_outcome()
/external/python/cpython2/Misc/
DHISTORY8035 is also a new C API PyObject_RichCompare() (which also falls back on