Searched refs:GeneratorType (Results 1 – 14 of 14) sorted by relevance
/third_party/skia/third_party/externals/abseil-cpp/absl/types/internal/ |
D | conformance_testing.h | 82 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 …]
|
D | conformance_testing_helpers.h | 113 struct GeneratorType; 173 struct ResultOfGenerator<GeneratorType<Fun>> { 178 using ResultOfGeneratorT = typename ResultOfGenerator<GeneratorType<Fun>>::type;
|
/third_party/abseil-cpp/absl/types/internal/ |
D | conformance_testing.h | 82 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 …]
|
D | conformance_testing_helpers.h | 113 struct GeneratorType; 173 struct ResultOfGenerator<GeneratorType<Fun>> { 178 using ResultOfGeneratorT = typename ResultOfGenerator<GeneratorType<Fun>>::type;
|
/third_party/python/Lib/ |
D | types.py | 27 GeneratorType = type(_g()) variable 216 self.__isgen = gen.__class__ is GeneratorType 285 coro.__class__ is GeneratorType and coro.gi_code.co_flags & 0x100):
|
D | inspect.py | 342 return isinstance(object, types.GeneratorType) 351 isinstance(object, types.GeneratorType) and
|
/third_party/mindspore/mindspore/dataset/engine/ |
D | queue.py | 84 if isinstance(r, types.GeneratorType):
|
/third_party/python/Lib/asyncio/ |
D | coroutines.py | 172 _COROUTINE_TYPES = (types.CoroutineType, types.GeneratorType,
|
/third_party/node/tools/inspector_protocol/jinja2/ |
D | sandbox.py | 195 elif isinstance(obj, types.GeneratorType):
|
/third_party/jinja2/ |
D | sandbox.py | 217 elif isinstance(obj, types.GeneratorType):
|
/third_party/skia/third_party/externals/jinja2/ |
D | sandbox.py | 217 elif isinstance(obj, types.GeneratorType):
|
/third_party/PyYAML/lib/yaml/ |
D | constructor.py | 103 if isinstance(data, types.GeneratorType):
|
/third_party/python/Doc/library/ |
D | types.rst | 125 .. data:: GeneratorType
|
/third_party/python/Lib/test/ |
D | test_coroutines.py | 32 assert coro.__class__ in {types.GeneratorType, types.CoroutineType}
|