Home
last modified time | relevance | path

Searched refs:GeneratorType (Results 1 – 14 of 14) sorted by relevance

/third_party/skia/third_party/externals/abseil-cpp/absl/types/internal/
Dconformance_testing.h82 struct GeneratorType { struct
96 GeneratorType<Fun> Generator(Fun fun, const char* description) { in Generator()
97 return GeneratorType<Fun>{absl::move(fun), description}; in Generator()
106 std::tuple<GeneratorType<Funs>...> generators;
114 EquivalenceClassType<Funs...> EquivalenceClass(GeneratorType<Funs>... funs) { in EquivalenceClass()
1161 ResultOfGeneratorT<GeneratorType<Fun>>, T>::value>** = nullptr>
1164 initializer(GeneratorType<Fun> fun) && {
1207 ResultOfGeneratorT<GeneratorType<Fun>>, T>::value>** = nullptr>
1210 dont_class_directly_stateful_initializer(GeneratorType<Fun> fun) && {
1222 ResultOfGeneratorT<GeneratorType<Funs>>, T>::value>...>** = nullptr>
[all …]
Dconformance_testing_helpers.h113 struct GeneratorType;
173 struct ResultOfGenerator<GeneratorType<Fun>> {
178 using ResultOfGeneratorT = typename ResultOfGenerator<GeneratorType<Fun>>::type;
/third_party/abseil-cpp/absl/types/internal/
Dconformance_testing.h82 struct GeneratorType { struct
96 GeneratorType<Fun> Generator(Fun fun, const char* description) { in Generator()
97 return GeneratorType<Fun>{absl::move(fun), description}; in Generator()
106 std::tuple<GeneratorType<Funs>...> generators;
114 EquivalenceClassType<Funs...> EquivalenceClass(GeneratorType<Funs>... funs) { in EquivalenceClass()
1161 ResultOfGeneratorT<GeneratorType<Fun>>, T>::value>** = nullptr>
1164 initializer(GeneratorType<Fun> fun) && {
1207 ResultOfGeneratorT<GeneratorType<Fun>>, T>::value>** = nullptr>
1210 dont_class_directly_stateful_initializer(GeneratorType<Fun> fun) && {
1222 ResultOfGeneratorT<GeneratorType<Funs>>, T>::value>...>** = nullptr>
[all …]
Dconformance_testing_helpers.h113 struct GeneratorType;
173 struct ResultOfGenerator<GeneratorType<Fun>> {
178 using ResultOfGeneratorT = typename ResultOfGenerator<GeneratorType<Fun>>::type;
/third_party/python/Lib/
Dtypes.py27 GeneratorType = type(_g()) variable
216 self.__isgen = gen.__class__ is GeneratorType
285 coro.__class__ is GeneratorType and coro.gi_code.co_flags & 0x100):
Dinspect.py342 return isinstance(object, types.GeneratorType)
351 isinstance(object, types.GeneratorType) and
/third_party/mindspore/mindspore/dataset/engine/
Dqueue.py84 if isinstance(r, types.GeneratorType):
/third_party/python/Lib/asyncio/
Dcoroutines.py172 _COROUTINE_TYPES = (types.CoroutineType, types.GeneratorType,
/third_party/node/tools/inspector_protocol/jinja2/
Dsandbox.py195 elif isinstance(obj, types.GeneratorType):
/third_party/jinja2/
Dsandbox.py217 elif isinstance(obj, types.GeneratorType):
/third_party/skia/third_party/externals/jinja2/
Dsandbox.py217 elif isinstance(obj, types.GeneratorType):
/third_party/PyYAML/lib/yaml/
Dconstructor.py103 if isinstance(data, types.GeneratorType):
/third_party/python/Doc/library/
Dtypes.rst125 .. data:: GeneratorType
/third_party/python/Lib/test/
Dtest_coroutines.py32 assert coro.__class__ in {types.GeneratorType, types.CoroutineType}