Home
last modified time | relevance | path

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

/third_party/typescript/tests/baselines/reference/
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
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
/third_party/jinja2/
Dfilters.py541 value: t.Iterable,
599 value: t.Union[t.AsyncIterable, t.Iterable],
1405 context: "Context", value: t.Iterable, name: str, *args: t.Any, **kwargs: t.Any
1413 value: t.Iterable,
1423 context: "Context", value: t.Iterable, *args: t.Any, **kwargs: t.Any
1474 value: t.Union[t.AsyncIterable, t.Iterable],
1485 value: t.Union[t.AsyncIterable, t.Iterable],
1496 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