HomeSort by relevance Sort by last modified time
    Searched refs:PyList_CheckExact (Results 1 - 8 of 8) sorted by null

  /prebuilts/python/darwin-x86/2.7.5/include/python2.7/
listobject.h 45 #define PyList_CheckExact(op) (Py_TYPE(op) == &PyList_Type)
  /prebuilts/python/linux-x86/2.7.5/include/python2.7/
listobject.h 45 #define PyList_CheckExact(op) (Py_TYPE(op) == &PyList_Type)
  /external/chromium_org/third_party/cython/src/Cython/Utility/
Optimize.c 18 if (likely(PyList_CheckExact(L))) {
81 #define __Pyx_PyObject_Pop(L) (PyList_CheckExact(L) ? \
113 #define __Pyx_PyObject_PopIndex(L, ix) (PyList_CheckExact(L) ? \
269 if (PyTuple_CheckExact(iterable) || PyList_CheckExact(iterable))
319 } else if (PyList_CheckExact(iter_obj)) {
ObjectHandling.c 300 if (is_list || PyList_CheckExact(o)) {
367 if (is_list || PyList_CheckExact(o)) {
    [all...]
  /external/chromium_org/third_party/cython/src/Cython/Includes/cpython/
list.pxd 21 bint PyList_CheckExact(object p)
  /external/chromium_org/third_party/bintrees/bintrees/
qavltree.c 518 if (PyList_CheckExact(o)) {
    [all...]
qbintree.c 518 if (PyList_CheckExact(o)) {
    [all...]
qrbtree.c 518 if (PyList_CheckExact(o)) {
    [all...]

Completed in 265 milliseconds