Home
last modified time | relevance | path

Searched defs:Iterable (Results 1 – 11 of 11) sorted by relevance

/third_party/typescript/tests/baselines/reference/
DgeneratorOverloads3.js3 *f(s: string): Iterable<any>; field in C
4 *f(s: number): Iterable<any>; field in C
5 *f(s: any): Iterable<any> { } field in C
DgeneratorOverloads4.js3 f(s: string): Iterable<any>; field in C
4 f(s: number): Iterable<any>; field in C
5 *f(s: any): Iterable<any> { } field in C
/third_party/jinja2/
Dfilters.py555 value: t.Iterable,
613 value: t.Union[t.AsyncIterable, t.Iterable],
1419 context: "Context", value: t.Iterable, name: str, *args: t.Any, **kwargs: t.Any
1427 value: t.Iterable,
1437 context: "Context", value: t.Iterable, *args: t.Any, **kwargs: t.Any
1488 value: t.Union[t.AsyncIterable, t.Iterable],
1499 value: t.Union[t.AsyncIterable, t.Iterable],
1510 value: t.Union[t.AsyncIterable, t.Iterable],
/third_party/python/Lib/unittest/test/testmock/
Dtestmagicmethods.py336 class Iterable(object): class
360 class Iterable(object): class
/third_party/typescript/lib/
Dlib.es2015.iterable.d.ts50 interface Iterable<T> { interface
/third_party/typescript/src/lib/
Des2015.iterable.d.ts30 interface Iterable<T> { interface
/third_party/node/tools/doc/
Dtype-parser.mjs52 'Iterable': property
/third_party/python/Lib/
D_collections_abc.py253 class Iterable(metaclass=ABCMeta): class
Dtyping.py2076 Iterable = _alias(collections.abc.Iterable, 1) variable
/third_party/skia/third_party/externals/harfbuzz/src/
Dhb-iter.hh283 #define hb_is_iterable(Iterable) hb_is_iterable<Iterable>::value argument
/third_party/python/Lib/test/
Dtest_coroutines.py1627 class Iterable: class