Searched refs:PyObject_Compare (Results 1 – 22 of 22) sorted by relevance
/external/python/cpython2/Objects/ |
D | codeobject.c | 387 cmp = PyObject_Compare(co->co_name, cp->co_name); in code_compare() 397 cmp = PyObject_Compare(co->co_code, cp->co_code); in code_compare() 399 cmp = PyObject_Compare(co->co_consts, cp->co_consts); in code_compare() 401 cmp = PyObject_Compare(co->co_names, cp->co_names); in code_compare() 403 cmp = PyObject_Compare(co->co_varnames, cp->co_varnames); in code_compare() 405 cmp = PyObject_Compare(co->co_freevars, cp->co_freevars); in code_compare() 407 cmp = PyObject_Compare(co->co_cellvars, cp->co_cellvars); in code_compare()
|
D | cellobject.c | 69 return PyObject_Compare(a->ob_ref, b->ob_ref); in cell_compare()
|
D | descrobject.c | 866 return PyObject_Compare(v->dict, w); in proxy_compare() 954 return PyObject_Compare(a->self, b->self); in wrapper_compare()
|
D | classobject.c | 1742 c = PyObject_Compare(v, w); in instance_compare() 2402 cmp = PyObject_Compare(a->im_func, b->im_func); in instancemethod_compare() 2411 return PyObject_Compare(a->im_self, b->im_self); in instancemethod_compare()
|
D | weakrefobject.c | 490 return PyObject_Compare(proxy, v); in proxy_compare()
|
D | dictobject.c | 1910 res = PyObject_Compare(adiff, bdiff); in dict_compare() 1913 res = PyObject_Compare(aval, bval); in dict_compare()
|
D | object.c | 859 PyObject_Compare(PyObject *v, PyObject *w) in PyObject_Compare() function
|
D | abstract.c | 41 r = PyObject_Compare(o1, o2); in PyObject_Cmp()
|
D | typeobject.c | 3164 if (PyObject_Compare(slots_a, slots_b) != 0) in same_slots_added()
|
/external/python/cpython2/PC/os2vacpp/ |
D | python.def | 310 PyObject_Compare
|
/external/python/cpython2/Modules/ |
D | _elementtree.c | 827 rc = PyObject_Compare(((ElementObject*)item)->tag, tag); in element_find() 865 rc = PyObject_Compare(item->tag, tag); in element_findtext() 914 rc = PyObject_Compare(((ElementObject*)item)->tag, tag); in element_findall() 1234 rc = PyObject_Compare(self->extra->children[i], element); in element_remove()
|
D | cPickle.c | 919 if (PyObject_Compare(name, __main___str)==0) continue; in whichmodule()
|
/external/python/cpython2/Include/ |
D | object.h | 468 PyAPI_FUNC(int) PyObject_Compare(PyObject *, PyObject *);
|
/external/python/cpython2/Doc/data/ |
D | refcounts.dat | 947 PyObject_Compare:int::: 948 PyObject_Compare:PyObject*:o1:0: 949 PyObject_Compare:PyObject*:o2:0:
|
/external/python/cpython2/PC/os2emx/ |
D | python27.def | 452 "PyObject_Compare"
|
/external/protobuf/python/google/protobuf/pyext/ |
D | message.cc | 557 if (PyObject_Compare(min, arg) > 0 || PyObject_Compare(max, arg) < 0) { in CheckAndGetInteger()
|
/external/python/cpython2/Doc/c-api/ |
D | object.rst | 135 .. c:function:: int PyObject_Compare(PyObject *o1, PyObject *o2)
|
D | typeobj.rst | 262 The signature is the same as for :c:func:`PyObject_Compare`. The function should
|
/external/python/cpython2/Python/ |
D | bltinmodule.c | 1731 if (PyObject_Compare(lo, hi) >= 0) in get_len_of_range_longs()
|
/external/python/cpython2/Doc/extending/ |
D | newtypes.rst | 1319 :c:func:`PyObject_Compare` or :c:func:`PyObject_Cmp` functions are used, or if
|
/external/python/cpython2/Misc/ |
D | HISTORY | 8033 and the C function PyObject_Compare() first try the new rich 13909 - PyObject_Compare() can now raise an exception. Check with 13972 comparisons. PyObject_Compare() can now return an exception; use
|
/external/python/cpython3/Misc/ |
D | HISTORY | 15242 slot, the C API functions PyObject_Compare and PyUnicode_Compare and 25412 and the C function PyObject_Compare() first try the new rich 31288 - PyObject_Compare() can now raise an exception. Check with 31351 comparisons. PyObject_Compare() can now return an exception; use
|