Searched refs:Py_GT (Results 1 – 23 of 23) sorted by relevance
/third_party/boost/libs/python/src/ |
D | object_operators.cpp | 20 BOOST_PYTHON_COMPARE_OP(>, Py_GT)
|
/third_party/python/Include/ |
D | object.h | 630 #define Py_GT 4 macro 653 case Py_GT: if ((val1) > (val2)) Py_RETURN_TRUE; Py_RETURN_FALSE; \
|
/third_party/python/Objects/ |
D | sliceobject.c | 454 cmp_result = PyObject_RichCompareBool(start, upper, Py_GT); in _PySlice_GetLongIndices() 493 cmp_result = PyObject_RichCompareBool(stop, upper, Py_GT); in _PySlice_GetLongIndices()
|
D | rangeobject.c | 197 cmp_result = PyObject_RichCompareBool(step, zero, Py_GT); in compute_range_length() 393 cmp1 = PyObject_RichCompareBool(r->step, zero, Py_GT); in range_contains_long() 500 case Py_GT: in range_richcompare()
|
D | floatobject.c | 546 case Py_GT: in float_richcompare()
|
D | object.c | 670 int _Py_SwappedOp[] = {Py_GT, Py_GE, Py_EQ, Py_NE, Py_LT, Py_LE};
|
D | setobject.c | 1790 case Py_GT: in set_richcompare()
|
D | bytesobject.c | 1555 case Py_GT: in bytes_richcompare()
|
D | dictobject.c | 4329 case Py_GT: in dictview_richcompare()
|
D | typeobject.c | 6872 RICHCMP_WRAPPER(gt, Py_GT) in RICHCMP_WRAPPER()
|
D | unicodeobject.c | 11652 case Py_GT: in PyUnicode_RichCompare()
|
/third_party/python/Doc/c-api/ |
D | object.rst | 143 :const:`Py_NE`, :const:`Py_GT`, or :const:`Py_GE`, corresponding to ``<``, 153 :const:`Py_NE`, :const:`Py_GT`, or :const:`Py_GE`, corresponding to ``<``,
|
D | unicode.rst | 1693 Possible values for *op* are :const:`Py_GT`, :const:`Py_GE`, :const:`Py_EQ`,
|
D | typeobj.rst | 1448 | :const:`Py_GT` | ``>`` |
|
/third_party/python/Doc/extending/ |
D | newtypes.rst | 397 ``Py_LT`` or ``Py_GT``. It should compare the two objects with respect to the 423 case Py_GT: c = size1 > size2; break;
|
/third_party/python/Modules/ |
D | arraymodule.c | 726 case Py_GT: cmp = result > 0; break; in array_richcompare() 768 case Py_GT: cmp = vs > ws; break; in array_richcompare()
|
D | _operator.c | 639 return PyObject_RichCompare(a, b, Py_GT); in _operator_gt_impl()
|
D | _collectionsmodule.c | 1470 case Py_GT: cmp = x != NULL; break; /* if v was longer */ in deque_richcompare()
|
D | _ssl.c | 4952 case Py_GT: in PySSLSession_richcompare()
|
/third_party/python/Python/ |
D | bltinmodule.c | 1834 return min_max(args, kwds, Py_GT); in builtin_max()
|
D | compile.c | 2617 cmp = Py_GT; in compiler_addcompare()
|
/third_party/python/Modules/_decimal/ |
D | _decimal.c | 4457 case Py_GT: in dec_richcompare()
|
/third_party/python/Misc/ |
D | HISTORY | 25421 Py_NE, Py_GT, Py_GE (for <, <=, ==, !=, >, >=), and returns a Python
|