Home
last modified time | relevance | path

Searched refs:PyObject_GetIter (Results 1 – 25 of 45) sorted by relevance

12

/third_party/python/Modules/
Ditertoolsmodule.c81 it = PyObject_GetIter(iterable); in pairwise_new_impl()
228 gbo->it = PyObject_GetIter(it); in itertools_groupby_impl()
868 it = PyObject_GetIter(iterable); in tee_fromiterable()
1030 it = PyObject_GetIter(iterable); in itertools_tee_impl()
1101 it = PyObject_GetIter(iterable); in itertools_cycle_impl()
1179 PyObject *it = PyObject_GetIter(lz->saved); in cycle_reduce()
1298 it = PyObject_GetIter(seq); in itertools_dropwhile_impl()
1461 it = PyObject_GetIter(seq); in itertools_takewhile_impl()
1673 it = PyObject_GetIter(seq); in islice_new()
1760 empty_it = PyObject_GetIter(empty_list); in islice_reduce()
[all …]
D_collectionsmodule.c399 it = PyObject_GetIter(iterable); in deque_extend()
446 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()
2079 iter = PyObject_GetIter(items); in defdict_reduce()
2324 it = PyObject_GetIter(iterable); in _collections__count_elements_impl()
D_csv.c1036 self->input_iter = PyObject_GetIter(iterator); in csv_reader()
1246 iter = PyObject_GetIter(seq); in csv_writerow()
1342 row_iter = PyObject_GetIter(seqseq); in csv_writerows()
D_abc.c374 if (!(iter = PyObject_GetIter(base_abstracts))) { in compute_abstract_methods()
Dmathmodule.c1441 iter = PyObject_GetIter(seq); in math_fsum()
3082 iter = PyObject_GetIter(iterable); in math_prod_impl()
/third_party/python/Python/
Dbltinmodule.c329 it = PyObject_GetIter(iterable); in builtin_all()
378 it = PyObject_GetIter(iterable); in builtin_any()
517 it = PyObject_GetIter(seq); in filter_new()
548 PyObject *it = PyObject_GetIter(args[1]); in filter_vectorcall()
1237 it = PyObject_GetIter(PyTuple_GET_ITEM(args, i)); in map_new()
1280 PyObject *it = PyObject_GetIter(args[i]); in map_vectorcall()
1581 return PyObject_GetIter(v); in builtin_iter()
1739 it = PyObject_GetIter(v); in min_max()
2417 iter = PyObject_GetIter(iterable); in builtin_sum_impl()
2678 PyObject *it = PyObject_GetIter(item); in zip_new()
/third_party/python/Doc/c-api/
Diter.rst33 PyObject *iterator = PyObject_GetIter(obj);
Dset.rst20 :c:func:`PyObject_GetIter`) or the abstract number protocol (including
/third_party/python/Modules/_io/
Diobase.c711 it = PyObject_GetIter(self); in _io__IOBase_readlines_impl()
770 iter = PyObject_GetIter(lines); in _io__IOBase_writelines()
Dbytesio.c733 it = PyObject_GetIter(lines); in _io_BytesIO_writelines()
/third_party/python/Objects/
Dnamespaceobject.c95 keys_iter = PyObject_GetIter(keys); in namespace_repr()
Dodictobject.c978 items_iter = PyObject_GetIter(items); in odict_reduce()
2190 iterator = PyObject_GetIter(pairs); in mutablemapping_add_pairs()
2198 PyObject *pair_iterator = PyObject_GetIter(pair); in mutablemapping_add_pairs()
2270 PyObject *iterator = PyObject_GetIter(keys); in mutablemapping_update_arg()
Dabstract.c2069 it = PyObject_GetIter(v); in PySequence_Tuple()
2165 it = PyObject_GetIter(v); in PySequence_Fast()
2198 it = PyObject_GetIter(seq); in _PySequence_IterSearch()
2425 it = PyObject_GetIter(meth_output); in method_output_as_list()
2801 PyObject_GetIter(PyObject *o) in PyObject_GetIter() function
Denumobject.c70 en->en_sit = PyObject_GetIter(iterable); in enum_new_impl()
Dsetobject.c912 it = PyObject_GetIter(other); in set_update_internal()
1222 it = PyObject_GetIter(other); in set_intersection()
1366 it = PyObject_GetIter(other); in set_isdisjoint()
1429 it = PyObject_GetIter(other); in set_difference_update_internal()
Ddictobject.c2020 it = PyObject_GetIter(iterable); in _PyDict_FromKeys()
2473 it = PyObject_GetIter(seq2); in PyDict_MergeFromSeq2()
2679 iter = PyObject_GetIter(keys); in dict_merge()
4266 PyObject *iter = PyObject_GetIter(self); in all_contained_in()
4485 it = PyObject_GetIter(other); in _PyDictView_Intersect()
4697 it = PyObject_GetIter(other); in dictviews_isdisjoint()
Dbytearrayobject.c850 it = PyObject_GetIter(arg); in bytearray___init___impl()
1681 it = PyObject_GetIter(iterable_of_ints); in bytearray_extend()
Dweakrefobject.c648 PyObject* res = PyObject_GetIter(obj); in proxy_iter()
/third_party/python/Modules/_sqlite/
Drow.c206 return PyObject_GetIter(self->data); in pysqlite_iter()
Dcursor.c447 parameters_iter = PyObject_GetIter(second_argument); in _pysqlite_query_execute()
472 parameters_iter = PyObject_GetIter(parameters_list); in _pysqlite_query_execute()
/third_party/python/Include/
Dabstract.h372 PyAPI_FUNC(PyObject *) PyObject_GetIter(PyObject *);
/third_party/protobuf/python/google/protobuf/pyext/
Drepeated_composite_container.cc174 ScopedPyObjectPtr iter(PyObject_GetIter(value)); in Extend()
Drepeated_scalar_container.cc502 ScopedPyObjectPtr iter(PyObject_GetIter(value)); in Subscript()
Dmessage.cc1130 ScopedPyObjectPtr iter(PyObject_GetIter(value)); in InitAttributes()
1164 ScopedPyObjectPtr iter(PyObject_GetIter(value)); in InitAttributes()
1193 ScopedPyObjectPtr iter(PyObject_GetIter(value)); in InitAttributes()
/third_party/python/Doc/data/
Dstable_abi.dat498 function,PyObject_GetIter,3.2,

12