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

  /prebuilts/python/darwin-x86/2.7.5/include/python2.7/
structseq.h 31 PyObject *ob_item[1]; member in struct:__anon63201
36 (((PyStructSequence *)(op))->ob_item[i] = v)
tupleobject.h 26 PyObject *ob_item[1]; member in struct:__anon63202
28 /* ob_item contains space for 'ob_size' elements.
50 #define PyTuple_GET_ITEM(op, i) (((PyTupleObject *)(op))->ob_item[i])
54 #define PyTuple_SET_ITEM(op, i, v) (((PyTupleObject *)(op))->ob_item[i] = v)
listobject.h 24 /* Vector of pointers to list elements. list[0] is ob_item[0], etc. */
25 PyObject **ob_item; member in struct:__anon63178
27 /* ob_item contains space for 'allocated' elements. The number
32 * ob_item == NULL implies ob_size == allocated == 0
61 #define PyList_GET_ITEM(op, i) (((PyListObject *)(op))->ob_item[i])
62 #define PyList_SET_ITEM(op, i, v) (((PyListObject *)(op))->ob_item[i] = (v))
abstract.h     [all...]
  /prebuilts/python/linux-x86/2.7.5/include/python2.7/
structseq.h 31 PyObject *ob_item[1]; member in struct:__anon63324
36 (((PyStructSequence *)(op))->ob_item[i] = v)
tupleobject.h 26 PyObject *ob_item[1]; member in struct:__anon63325
28 /* ob_item contains space for 'ob_size' elements.
50 #define PyTuple_GET_ITEM(op, i) (((PyTupleObject *)(op))->ob_item[i])
54 #define PyTuple_SET_ITEM(op, i, v) (((PyTupleObject *)(op))->ob_item[i] = v)
listobject.h 24 /* Vector of pointers to list elements. list[0] is ob_item[0], etc. */
25 PyObject **ob_item; member in struct:__anon63301
27 /* ob_item contains space for 'allocated' elements. The number
32 * ob_item == NULL implies ob_size == allocated == 0
61 #define PyList_GET_ITEM(op, i) (((PyListObject *)(op))->ob_item[i])
62 #define PyList_SET_ITEM(op, i, v) (((PyListObject *)(op))->ob_item[i] = (v))
abstract.h     [all...]

Completed in 79 milliseconds