Searched refs:GeneratorType (Results 1 - 12 of 12) sorted by relevance
/third_party/skia/third_party/externals/abseil-cpp/absl/types/internal/ |
H A D | conformance_testing.h | 82 struct GeneratorType { struct 92 // A "make" function for the GeneratorType template that deduces the function 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) && { in initializer() 1207 ResultOfGeneratorT<GeneratorType<Fun>>, T>::value>** = nullptr> 1210 dont_class_directly_stateful_initializer(GeneratorType<Fu [all...] |
H A D | conformance_testing_helpers.h | 113 struct GeneratorType; 115 // A type that contains a tuple of GeneratorType<Fun> where each Fun has the 157 // the function object of each underlying GeneratorType has the same return type 161 // type of each GeneratorType, if any. 168 // in a GeneratorType specialization. 173 struct ResultOfGenerator<GeneratorType<Fun>> { 178 using ResultOfGeneratorT = typename ResultOfGenerator<GeneratorType<Fun>>::type; 184 // A metafunction that yields true iff each of Funs is a GeneratorType 207 // specialization and they all contain GeneratorType specializations that have
|
/third_party/jinja2/ |
H A D | nativetypes.py | 6 from types import GeneratorType namespace 35 if isinstance(values, GeneratorType):
|
H A D | sandbox.py | 148 elif isinstance(obj, types.GeneratorType):
|
/third_party/python/Lib/ |
H A D | types.py | 27 GeneratorType = type(_g()) variable 214 self.__isgen = gen.__class__ is GeneratorType 283 coro.__class__ is GeneratorType and coro.gi_code.co_flags & 0x100):
|
H A D | inspect.py | 443 return isinstance(object, types.GeneratorType) 452 isinstance(object, types.GeneratorType) and
|
/third_party/python/Lib/asyncio/ |
H A D | coroutines.py | 29 _COROUTINE_TYPES = (types.CoroutineType, types.GeneratorType,
|
/third_party/node/deps/v8/third_party/jinja2/ |
H A D | sandbox.py | 217 elif isinstance(obj, types.GeneratorType):
|
/third_party/node/tools/inspector_protocol/jinja2/ |
H A D | sandbox.py | 195 elif isinstance(obj, types.GeneratorType):
|
/third_party/skia/third_party/externals/jinja2/ |
H A D | sandbox.py | 217 elif isinstance(obj, types.GeneratorType):
|
/third_party/PyYAML/lib/yaml/ |
H A D | constructor.py | 103 if isinstance(data, types.GeneratorType):
|
/third_party/python/Lib/test/ |
H A D | test_coroutines.py | 39 assert coro.__class__ in {types.GeneratorType, types.CoroutineType}
|
Completed in 14 milliseconds