Home
last modified time | relevance | path

Searched refs:PyObject_Compare (Results 1 – 22 of 22) sorted by relevance

/external/python/cpython2/Objects/
Dcodeobject.c387 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()
Dcellobject.c69 return PyObject_Compare(a->ob_ref, b->ob_ref); in cell_compare()
Ddescrobject.c866 return PyObject_Compare(v->dict, w); in proxy_compare()
954 return PyObject_Compare(a->self, b->self); in wrapper_compare()
Dclassobject.c1742 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()
Dweakrefobject.c490 return PyObject_Compare(proxy, v); in proxy_compare()
Ddictobject.c1910 res = PyObject_Compare(adiff, bdiff); in dict_compare()
1913 res = PyObject_Compare(aval, bval); in dict_compare()
Dobject.c859 PyObject_Compare(PyObject *v, PyObject *w) in PyObject_Compare() function
Dabstract.c41 r = PyObject_Compare(o1, o2); in PyObject_Cmp()
Dtypeobject.c3164 if (PyObject_Compare(slots_a, slots_b) != 0) in same_slots_added()
/external/python/cpython2/PC/os2vacpp/
Dpython.def310 PyObject_Compare
/external/python/cpython2/Modules/
D_elementtree.c827 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()
DcPickle.c919 if (PyObject_Compare(name, __main___str)==0) continue; in whichmodule()
/external/python/cpython2/Include/
Dobject.h468 PyAPI_FUNC(int) PyObject_Compare(PyObject *, PyObject *);
/external/python/cpython2/Doc/data/
Drefcounts.dat947 PyObject_Compare:int:::
948 PyObject_Compare:PyObject*:o1:0:
949 PyObject_Compare:PyObject*:o2:0:
/external/python/cpython2/PC/os2emx/
Dpython27.def452 "PyObject_Compare"
/external/protobuf/python/google/protobuf/pyext/
Dmessage.cc557 if (PyObject_Compare(min, arg) > 0 || PyObject_Compare(max, arg) < 0) { in CheckAndGetInteger()
/external/python/cpython2/Doc/c-api/
Dobject.rst135 .. c:function:: int PyObject_Compare(PyObject *o1, PyObject *o2)
Dtypeobj.rst262 The signature is the same as for :c:func:`PyObject_Compare`. The function should
/external/python/cpython2/Python/
Dbltinmodule.c1731 if (PyObject_Compare(lo, hi) >= 0) in get_len_of_range_longs()
/external/python/cpython2/Doc/extending/
Dnewtypes.rst1319 :c:func:`PyObject_Compare` or :c:func:`PyObject_Cmp` functions are used, or if
/external/python/cpython2/Misc/
DHISTORY8033 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/
DHISTORY15242 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