Searched refs:opid (Results 1 - 6 of 6) sorted by relevance
/third_party/python/Modules/_sqlite/ |
H A D | row.c | 217 static PyObject* pysqlite_row_richcompare(pysqlite_Row *self, PyObject *_other, int opid) in pysqlite_row_richcompare() argument 219 if (opid != Py_EQ && opid != Py_NE) in pysqlite_row_richcompare() 230 return PyObject_RichCompare(self->data, other->data, opid); in pysqlite_row_richcompare() 232 return PyBool_FromLong(opid != Py_EQ); in pysqlite_row_richcompare()
|
/third_party/protobuf/python/google/protobuf/pyext/ |
H A D | extension_dict.cc | 328 static PyObject* RichCompare(ExtensionDict* self, PyObject* other, int opid) { in RichCompare() argument 330 if (opid != Py_EQ && opid != Py_NE) { in RichCompare() 338 if (equals ^ (opid == Py_EQ)) { in RichCompare()
|
H A D | repeated_composite_container.cc | 327 static PyObject* RichCompare(PyObject* pself, PyObject* other, int opid) { in Subscript() argument 337 if (opid == Py_EQ || opid == Py_NE) { in Subscript() 353 return PyObject_RichCompare(list.get(), other_list.get(), opid); in Subscript()
|
H A D | repeated_scalar_container.cc | 563 static PyObject* RichCompare(PyObject* pself, PyObject* other, int opid) { in Subscript() argument 564 if (opid != Py_EQ && opid != Py_NE) { in Subscript() 588 return PyObject_RichCompare(list.get(), other, opid); in Subscript()
|
H A D | descriptor_containers.cc | 423 static PyObject* RichCompare(PyContainer* self, PyObject* other, int opid) { in RichCompare() argument 424 if (opid != Py_EQ && opid != Py_NE) { in RichCompare() 439 if (result ^ (opid == Py_NE)) { in RichCompare()
|
H A D | message.cc | 2162 static PyObject* RichCompare(CMessage* self, PyObject* other, int opid) { in RichCompare() argument 2164 if (opid != Py_EQ && opid != Py_NE) { in RichCompare() 2189 if (equals ^ (opid == Py_EQ)) { in RichCompare()
|
Completed in 10 milliseconds