Home
last modified time | relevance | path

Searched refs:PySequence_Contains (Results 1 – 13 of 13) sorted by relevance

/external/python/cpython2/Include/
Dabstract.h1195 PyAPI_FUNC(int) PySequence_Contains(PyObject *seq, PyObject *ob);
1222 #define PySequence_In PySequence_Contains
/external/python/cpython2/PC/os2vacpp/
Dpython.def345 PySequence_Contains
/external/python/cpython2/Modules/
Doperator.c84 return PySequence_Contains(seq, ob); in op_sequenceIncludes()
125 spami2b(op_contains , PySequence_Contains) in spami()
/external/python/cpython2/Objects/
Dstructseq.c343 result = PySequence_Contains(tup, o); in structseq_contains()
Dweakrefobject.c569 return PySequence_Contains(PyWeakref_GET_OBJECT(proxy), value); in proxy_contains()
Dabstract.c2399 PySequence_Contains(PyObject *seq, PyObject *ob) function
2416 return PySequence_Contains(w, v);
Ddictobject.c2869 ok = PySequence_Contains(other, next); in all_contained_in()
Dtypeobject.c1339 i = PySequence_Contains(mro, cls); in fill_classic_mro()
/external/python/cpython2/Doc/c-api/
Dsequence.rst143 .. c:function:: int PySequence_Contains(PyObject *o, PyObject *value)
Dtypeobj.rst1329 This function may be used by :c:func:`PySequence_Contains` and has the same
1331 :c:func:`PySequence_Contains` simply traverses the sequence until it finds a
/external/python/cpython2/PC/os2emx/
Dpython27.def166 "PySequence_Contains"
/external/python/cpython2/Python/
Dceval.c4795 res = PySequence_Contains(w, v); in cmp_outcome()
4800 res = PySequence_Contains(w, v); in cmp_outcome()
/external/python/cpython2/Misc/
DHISTORY3620 PySequence_Contains() but is specific to dictionaries and executes
7346 'x in y' and 'x not in y' (PySequence_Contains() in C API)
11874 - PySequence_In() is now called PySequence_Contains().