/external/python/cpython2/Modules/ |
D | itertoolsmodule.c | 43 gbo->it = PyObject_GetIter(it); in groupby_new() 522 it = PyObject_GetIter(iterable); in tee_fromiterable() 643 it = PyObject_GetIter(iterable); in tee() 699 it = PyObject_GetIter(iterable); in cycle_new() 764 it = PyObject_GetIter(lz->saved); in cycle_next() 850 it = PyObject_GetIter(seq); in dropwhile_new() 994 it = PyObject_GetIter(seq); in takewhile_new() 1184 it = PyObject_GetIter(seq); in islice_new() 1336 it = PyObject_GetIter(seq); in starmap_new() 1476 it = PyObject_GetIter(PyTuple_GET_ITEM(args, i)); in imap_new() [all …]
|
D | _heapqmodule.c | 305 it = PyObject_GetIter(iterable); in nlargest() 474 it = PyObject_GetIter(iterable); in nsmallest()
|
D | _collectionsmodule.c | 309 it = PyObject_GetIter(iterable); in deque_extend() 361 it = PyObject_GetIter(iterable); in deque_extendleft() 964 it = PyObject_GetIter(deque); in deque_tp_print() 1028 it1 = PyObject_GetIter(v); in deque_richcompare() 1031 it2 = PyObject_GetIter(w); in deque_richcompare()
|
D | _functoolsmodule.c | 24 it = PyObject_GetIter(seq); in functools_reduce()
|
/external/python/cpython3/Modules/ |
D | itertoolsmodule.c | 45 gbo->it = PyObject_GetIter(it); in groupby_new() 675 it = PyObject_GetIter(iterable); in tee_fromiterable() 827 it = PyObject_GetIter(iterable); in tee() 901 it = PyObject_GetIter(iterable); in cycle_new() 980 PyObject *it = PyObject_GetIter(lz->saved); in cycle_reduce() 1102 it = PyObject_GetIter(seq); in dropwhile_new() 1270 it = PyObject_GetIter(seq); in takewhile_new() 1487 it = PyObject_GetIter(seq); in islice_new() 1574 empty_it = PyObject_GetIter(empty_list); in islice_reduce() 1692 it = PyObject_GetIter(seq); in starmap_new() [all …]
|
D | _collectionsmodule.c | 389 it = PyObject_GetIter(iterable); in deque_extend() 454 it = PyObject_GetIter(iterable); in deque_extendleft() 1360 it = PyObject_GetIter((PyObject *)deque); in deque_reduce() 1435 it1 = PyObject_GetIter(v); in deque_richcompare() 1438 it2 = PyObject_GetIter(w); in deque_richcompare() 2069 iter = PyObject_GetIter(items); in defdict_reduce() 2275 it = PyObject_GetIter(iterable); in _count_elements()
|
D | _csv.c | 958 self->input_iter = PyObject_GetIter(iterator); in csv_reader() 1166 iter = PyObject_GetIter(seq); in csv_writerow() 1256 row_iter = PyObject_GetIter(seqseq); in csv_writerows()
|
/external/tensorflow/tensorflow/python/util/ |
D | util.cc | 357 iter_.reset(PyObject_GetIter(keys_.get())); in DictValueIterator() 392 iter_.reset(PyObject_GetIter(keys_.get())); in MappingValueIterator() 474 iter_.reset(PyObject_GetIter(attrs_.get())); in AttrsValueIterator() 742 Safe_PyObjectPtr iter(PyObject_GetIter(o1)); in AssertSameStructureHelper()
|
/external/python/cpython3/Doc/c-api/ |
D | iter.rst | 25 PyObject *iterator = PyObject_GetIter(obj);
|
/external/python/cpython2/Doc/c-api/ |
D | iter.rst | 32 PyObject *iterator = PyObject_GetIter(obj);
|
/external/python/cpython3/Python/ |
D | bltinmodule.c | 369 it = PyObject_GetIter(iterable); in builtin_all() 418 it = PyObject_GetIter(iterable); in builtin_any() 552 it = PyObject_GetIter(seq); in filter_new() 1251 it = PyObject_GetIter(PyTuple_GET_ITEM(args, i)); in map_new() 1552 return PyObject_GetIter(v); in builtin_iter() 1648 it = PyObject_GetIter(v); in min_max() 2321 iter = PyObject_GetIter(iterable); in builtin_sum_impl() 2567 PyObject *it = PyObject_GetIter(item); in zip_new()
|
/external/python/cpython2/Python/ |
D | bltinmodule.c | 89 it = PyObject_GetIter(v); in builtin_all() 132 it = PyObject_GetIter(v); in builtin_any() 268 it = PyObject_GetIter(seq); in builtin_filter() 995 sqp->it = PyObject_GetIter(curseq); in builtin_map() 1306 return PyObject_GetIter(v); in builtin_iter() 1378 it = PyObject_GetIter(v); in min_max() 2317 iter = PyObject_GetIter(seq); in builtin_sum() 2557 PyObject *it = PyObject_GetIter(item); in builtin_zip()
|
/external/python/cpython3/Objects/ |
D | namespaceobject.c | 97 keys_iter = PyObject_GetIter(keys); in namespace_repr()
|
D | odictobject.c | 926 items_iter = PyObject_GetIter(items); in odict_reduce() 2146 iterator = PyObject_GetIter(pairs); in mutablemapping_add_pairs() 2154 PyObject *pair_iterator = PyObject_GetIter(pair); in mutablemapping_add_pairs() 2248 iterator = PyObject_GetIter(keys); in mutablemapping_update()
|
D | abstract.c | 1832 it = PyObject_GetIter(v); in PySequence_Tuple() 1928 it = PyObject_GetIter(v); in PySequence_Fast() 1959 it = PyObject_GetIter(seq); in _PySequence_IterSearch() 2179 it = PyObject_GetIter(meth_output); in method_output_as_list() 2516 PyObject_GetIter(PyObject *o) in PyObject_GetIter() function
|
D | enumobject.c | 68 en->en_sit = PyObject_GetIter(iterable); in enum_new_impl()
|
D | setobject.c | 1006 it = PyObject_GetIter(other); in set_update_internal() 1302 it = PyObject_GetIter(other); in set_intersection() 1446 it = PyObject_GetIter(other); in set_isdisjoint() 1497 it = PyObject_GetIter(other); in set_difference_update_internal()
|
/external/python/cpython2/Modules/_io/ |
D | iobase.c | 624 it = PyObject_GetIter(self); in iobase_readlines() 675 iter = PyObject_GetIter(lines); in iobase_writelines()
|
/external/python/cpython3/Modules/_io/ |
D | iobase.c | 698 it = PyObject_GetIter(self); in _io__IOBase_readlines_impl() 752 iter = PyObject_GetIter(lines); in _io__IOBase_writelines()
|
/external/python/cpython3/Modules/_sqlite/ |
D | row.c | 187 return PyObject_GetIter(self->data); in pysqlite_iter()
|
D | cursor.c | 421 parameters_iter = PyObject_GetIter(second_argument); in _pysqlite_query_execute() 456 parameters_iter = PyObject_GetIter(parameters_list); in _pysqlite_query_execute()
|
/external/python/cpython2/Modules/_sqlite/ |
D | row.c | 188 return PyObject_GetIter(self->data); in pysqlite_iter()
|
D | cursor.c | 485 parameters_iter = PyObject_GetIter(second_argument); in _pysqlite_query_execute() 520 parameters_iter = PyObject_GetIter(parameters_list); in _pysqlite_query_execute()
|
/external/tensorflow/tensorflow/python/platform/ |
D | base.i | 83 PyObject *item, *it = PyObject_GetIter(seq); in tf_vector_input_helper()
|
/external/python/cpython2/Objects/ |
D | enumobject.c | 48 en->en_sit = PyObject_GetIter(seq); in enum_new()
|