Searched refs:Py_LE (Results 1 – 21 of 21) sorted by relevance
/third_party/python/Include/ |
D | object.h | 627 #define Py_LE 1 macro 654 case Py_LE: if ((val1) <= (val2)) Py_RETURN_TRUE; Py_RETURN_FALSE; \
|
/third_party/python/Objects/ |
D | rangeobject.c | 397 cmp2 = PyObject_RichCompareBool(r->start, ob, Py_LE); in range_contains_long() 401 cmp2 = PyObject_RichCompareBool(ob, r->start, Py_LE); in range_contains_long() 497 case Py_LE: in range_richcompare()
|
D | sliceobject.c | 586 case Py_LE: in slice_richcompare()
|
D | floatobject.c | 537 case Py_LE: 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 | 1782 case Py_LE: in set_richcompare()
|
D | bytesobject.c | 1549 case Py_LE: in bytes_richcompare()
|
D | dictobject.c | 4324 case Py_LE: in dictview_richcompare()
|
D | typeobject.c | 6869 RICHCMP_WRAPPER(le, Py_LE) in RICHCMP_WRAPPER()
|
D | unicodeobject.c | 11646 case Py_LE: in PyUnicode_RichCompare()
|
/third_party/python/Doc/c-api/ |
D | object.rst | 142 which must be one of :const:`Py_LT`, :const:`Py_LE`, :const:`Py_EQ`, 152 which must be one of :const:`Py_LT`, :const:`Py_LE`, :const:`Py_EQ`,
|
D | unicode.rst | 1694 :const:`Py_NE`, :const:`Py_LT`, and :const:`Py_LE`.
|
D | typeobj.rst | 1442 | :const:`Py_LE` | ``<=`` |
|
/third_party/python/Doc/extending/ |
D | newtypes.rst | 396 where the operator is one of ``Py_EQ``, ``Py_NE``, ``Py_LE``, ``Py_GE``, 420 case Py_LE: c = size1 <= size2; break;
|
/third_party/python/Modules/ |
D | arraymodule.c | 723 case Py_LE: cmp = result <= 0; break; in array_richcompare() 763 case Py_LE: cmp = vs <= ws; break; in array_richcompare()
|
D | _operator.c | 626 return PyObject_RichCompare(a, b, Py_LE); in _operator_le_impl()
|
D | _collectionsmodule.c | 1467 case Py_LE: cmp = x == NULL; break; /* if v was not longer */ in deque_richcompare()
|
D | _ssl.c | 4951 case Py_LE: in PySSLSession_richcompare()
|
/third_party/python/Modules/_decimal/ |
D | _decimal.c | 4448 case Py_LE: in dec_richcompare()
|
/third_party/python/Python/ |
D | compile.c | 2614 cmp = Py_LE; in compiler_addcompare()
|
/third_party/python/Misc/ |
D | HISTORY | 25420 an integer indicating the opcode, which can be Py_LT, Py_LE, Py_EQ,
|