Home
last modified time | relevance | path

Searched defs:iterable (Results 1 – 25 of 120) sorted by relevance

12345

/third_party/node/test/parallel/
Dtest-timers-interval-promisified.js22 const iterable = setInterval(1, undefined); constant
33 const iterable = setInterval(1, 'foobar'); constant
44 const iterable = setInterval(1, 'foobar'); constant
64 const iterable = setInterval(1, undefined, { signal }); constant
73 const iterable = setInterval(100, undefined, { signal }); constant
90 const iterable = setInterval(100, undefined, { signal }); constant
101 const iterable = setInterval(10, undefined, { ref }); constant
107 const iterable = setInterval(10, undefined, { signal }); constant
113 const iterable = setInterval(10, undefined, options); constant
234 const iterable = timerPromises.setInterval(time_unit * 2); constant
[all …]
/third_party/node/deps/v8/src/builtins/
Dbuiltins-iterator-gen.cc135 TNode<Context> context, TNode<Object> iterable, TNode<Object> iterator_fn) { in IterableToList()
142 TNode<Context> context, TNode<Object> iterable, TNode<Object> iterator_fn) { in IterableToFixedArray()
150 TNode<Context> context, TNode<Object> iterable, TNode<Object> iterator_fn, in FillFixedArrayFromIterable()
183 auto iterable = Parameter<Object>(Descriptor::kIterable); in TF_BUILTIN() local
191 auto iterable = Parameter<Object>(Descriptor::kIterable); in TF_BUILTIN() local
200 auto iterable = Parameter<Object>(Descriptor::kIterable); in TF_BUILTIN() local
222 TNode<Context> context, TNode<Object> iterable) { in StringListFromIterable()
287 auto iterable = Parameter<Object>(Descriptor::kIterable); in TF_BUILTIN() local
294 auto iterable = Parameter<Object>(Descriptor::kIterable); in TF_BUILTIN() local
310 auto iterable = Parameter<Object>(Descriptor::kIterable); in TF_BUILTIN() local
[all …]
Dbuiltins-temporal-gen.cc29 TNode<Context> context, TNode<Object> iterable) { in TemporalInstantFixedArrayFromIterable()
92 auto iterable = Parameter<Object>(Descriptor::kIterable); in TF_BUILTIN() local
/third_party/skia/third_party/externals/tint/src/utils/
Dreverse.h31 T& iterable; member
57 detail::ReverseIterable<T> Reverse(T&& iterable) { in Reverse()
/third_party/python/Modules/clinic/
Ditertoolsmodule.c.h20 PyObject *iterable; in pairwise_new() local
165 PyObject *iterable; in itertools__tee() local
198 PyObject *iterable; in itertools_tee() local
240 PyObject *iterable; in itertools_cycle() local
385 PyObject *iterable; in itertools_combinations() local
433 PyObject *iterable; in itertools_combinations_with_replacement() local
481 PyObject *iterable; in itertools_permutations() local
520 PyObject *iterable; in itertools_accumulate() local
D_collectionsmodule.c.h23 PyObject *iterable; in _collections__count_elements() local
/third_party/libphonenumber/java/libphonenumber/test/com/google/i18n/phonenumbers/
DPhoneNumberMatcherTest.java756 Iterable<PhoneNumberMatch> iterable = in testMaxMatches() local
775 Iterable<PhoneNumberMatch> iterable = in testMaxMatchesInvalid() local
794 Iterable<PhoneNumberMatch> iterable = in testMaxMatchesMixed() local
805 Iterable<PhoneNumberMatch> iterable = phoneUtil.findNumbers("1 456 764 156", RegionCode.ZZ); in testNonPlusPrefixedNumbersNotFoundForInvalidRegion() local
817 Iterable<PhoneNumberMatch> iterable = phoneUtil.findNumbers("", RegionCode.ZZ); in testEmptyIteration() local
830 Iterable<PhoneNumberMatch> iterable = phoneUtil.findNumbers("+14156667777", RegionCode.ZZ); in testSingleIteration() local
855 Iterable<PhoneNumberMatch> iterable = in testDoubleIteration() local
889 Iterable<PhoneNumberMatch> iterable = phoneUtil.findNumbers("+14156667777", RegionCode.ZZ); in testRemovalNotSupported() local
1060 private boolean hasNoMatches(Iterable<PhoneNumberMatch> iterable) { in hasNoMatches()
/third_party/typescript/tests/baselines/reference/
DtypeArgumentInferenceApparentType1.js9 function method(iterable) { argument
/third_party/typescript/tests/cases/conformance/types/forAwait/
Dtypes.forAwait.es2018.2.ts5 declare const iterable: Iterable<number>; constant
Dtypes.forAwait.es2018.1.ts5 declare const iterable: Iterable<number>; constant
/third_party/python/Lib/importlib/metadata/
D_itertools.py4 def unique_everseen(iterable, key=None): argument
/third_party/python/Lib/multiprocessing/
Dpool.py362 def map(self, func, iterable, chunksize=None): argument
369 def starmap(self, func, iterable, chunksize=None): argument
377 def starmap_async(self, func, iterable, chunksize=None, callback=None, argument
385 def _guarded_task_generation(self, result_job, func, iterable): argument
396 def imap(self, func, iterable, chunksize=1): argument
425 def imap_unordered(self, func, iterable, chunksize=1): argument
463 def map_async(self, func, iterable, chunksize=None, callback=None, argument
471 def _map_async(self, func, iterable, mapper, chunksize=None, callback=None, argument
/third_party/node/deps/v8/tools/clusterfuzz/js_fuzzer/
Dexceptions.js150 function _findMatch(iterable, candidate) { argument
166 function _doesntMatch(iterable, candidate) { argument
/third_party/python/Lib/
Dheapq.py463 def nsmallest(n, iterable, key=None): argument
523 def nlargest(n, iterable, key=None): argument
Dtokenize.py187 def untokenize(self, iterable): argument
224 def compat(self, token, iterable): argument
261 def untokenize(iterable): argument
/third_party/python/Lib/lib2to3/pgen2/
Dtokenize.py185 def untokenize(self, iterable): argument
199 def compat(self, token, iterable): argument
314 def untokenize(iterable): argument
/third_party/jerryscript/tests/jerry/es2015/
Dpromise-all-iterator.js17 let iterable = function *() { generator
Dpromise-race-iterator.js17 let iterable = function *() { generator
Dweakset.js123 let iterable = function *() { generator
/third_party/node/lib/internal/streams/
Dfrom.js15 function from(Readable, iterable, opts) { argument
/third_party/node/deps/npm/node_modules/p-map/
Dindex.js5 iterable, argument
/third_party/python/Objects/clinic/
Denumobject.c.h33 PyObject *iterable; in enum_new() local
Dtupleobject.c.h78 PyObject *iterable = NULL; in tuple_new() local
/third_party/python/Lib/test/
Dtest_itertools.py64 def prod(iterable): argument
234 def combinations1(iterable, r): argument
253 def combinations2(iterable, r): argument
261 def combinations3(iterable, r): argument
317 def cwr1(iterable, r): argument
335 def cwr2(iterable, r): argument
399 def permutations1(iterable, r=None): argument
423 def permutations2(iterable, r=None): argument
839 def gulp(iterable, keyp=None, func=list): argument
1772 def islice(iterable, *args): argument
/third_party/skia/gn/
Dcompile_sksl_tests.py22 def pairwise(iterable): argument

12345