Home
last modified time | relevance | path

Searched refs:opid (Results 1 - 6 of 6) sorted by relevance

/third_party/python/Modules/_sqlite/
H A Drow.c217 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 Dextension_dict.cc328 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 Drepeated_composite_container.cc327 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 Drepeated_scalar_container.cc563 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 Ddescriptor_containers.cc423 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 Dmessage.cc2162 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