Home
last modified time | relevance | path

Searched refs:Py_LE (Results 1 – 23 of 23) sorted by relevance

/external/python/cpython2/Include/
Dopcode.h163 enum cmp_op {PyCmp_LT=Py_LT, PyCmp_LE=Py_LE, PyCmp_EQ=Py_EQ, PyCmp_NE=Py_NE, PyCmp_GT=Py_GT, PyCmp_…
Dobject.h888 #define Py_LE 1 macro
/external/python/cpython2/Modules/
D_heapqmodule.c29 cmp = PyObject_RichCompareBool(y, x, Py_LE); in cmp_lt()
Doperator.c134 spamrc(op_le , Py_LE) in spami()
Dselectmodule.c1349 case Py_LE: in kqueue_event_richcompare()
D_collectionsmodule.c1050 case Py_LE: cmp = x == NULL; break; /* if v was not longer */ in deque_richcompare()
Darraymodule.c557 case Py_LE: cmp = vs <= ws; break; in array_richcompare()
Ddatetimemodule.c1449 case Py_LE: istrue = diff <= 0; break; in diff_to_bool()
/external/python/cpython2/Doc/c-api/
Dobject.rst104 which must be one of :const:`Py_LT`, :const:`Py_LE`, :const:`Py_EQ`,
114 which must be one of :const:`Py_LT`, :const:`Py_LE`, :const:`Py_EQ`,
Dunicode.rst1105 :const:`Py_NE`, :const:`Py_LT`, and :const:`Py_LE`.
Dtypeobj.rst709 | :const:`Py_LE` | ``<=`` |
/external/python/cpython2/Objects/
Dobject.c598 int _Py_SwappedOp[] = {Py_GT, Py_GE, Py_EQ, Py_NE, Py_LT, Py_LE};
878 case Py_LE: c = c <= 0; break; in convert_3way_to_object()
Dtupleobject.c612 case Py_LE: cmp = vlen <= wlen; break; in tuplerichcompare()
Dfloatobject.c609 case Py_LE: in float_richcompare()
Dstringobject.c1206 case Py_EQ:case Py_LE:case Py_GE: in string_richcompare()
1238 case Py_LE: c = c <= 0; break; in string_richcompare()
Dsetobject.c1824 case Py_LE: in set_richcompare()
Dbytearrayobject.c1084 case Py_LE: cmp = cmp <= 0; break; in bytearray_richcompare()
Ddictobject.c2917 case Py_LE: in dictview_richcompare()
Dlistobject.c2413 case Py_LE: cmp = vs <= ws; break; in list_richcompare()
Dtypeobject.c682 case Py_LE: c = vv <= ww; break; in type_richcompare()
4783 RICHCMP_WRAPPER(le, Py_LE)
Dunicodeobject.c6272 case Py_LE: in PyUnicode_RichCompare()
/external/protobuf/python/google/protobuf/pyext/
Dmessage.cc563 if (PyObject_RichCompareBool(min, arg, Py_LE) != 1 || in CheckAndGetInteger()
/external/python/cpython2/Misc/
DHISTORY8041 an integer indicating the opcode, which can be Py_LT, Py_LE, Py_EQ,