Searched refs:specialized_types (Results 1 – 8 of 8) sorted by relevance
/third_party/node/deps/v8/src/torque/ |
D | declaration-visitor.cc | 301 if (generic_parameter_count != key.specialized_types.size()) { in DeclareSpecializedTypes() 305 << ", actual: " << key.specialized_types.size(); in DeclareSpecializedTypes() 309 for (auto type : key.specialized_types) { in DeclareSpecializedTypes() 333 " with types <", key.specialized_types, "> declared at ", in SpecializeImplicit() 356 if (generic_parameter_count != key.specialized_types.size()) { in Specialize() 359 << std::to_string(key.specialized_types.size()) in Specialize() 365 if (key.generic->GetSpecialization(key.specialized_types)) { in Specialize() 367 " with types <", key.specialized_types, ">"); in Specialize() 376 declaration->name->value, key.specialized_types); in Specialize() 380 for (const Type* t : key.specialized_types) { in Specialize() [all …]
|
D | types.cc | 64 for (const Type* t : GetSpecializedFrom()->specialized_types) { in SimpleName() 453 return torque::ToString("const &", *specialized_from->specialized_types[0]); in ComputeName() 456 return torque::ToString("&", *specialized_from->specialized_types[0]); in ComputeName() 461 for (auto t : specialized_from->specialized_types) { in ComputeName() 482 if (key.generic != generic || key.specialized_types.size() != 1) { in MatchUnaryGeneric() 485 return {key.specialized_types[0]}; in MatchUnaryGeneric()
|
D | type-inference.cc | 103 auto& argument_types = specialized_from->specialized_types; in MatchGeneric()
|
D | declarations.cc | 316 const std::string& name, const TypeVector& specialized_types) { in GetGeneratedCallableName() argument 318 for (auto type : specialized_types) { in GetGeneratedCallableName()
|
D | declarations.h | 160 const std::string& name, const TypeVector& specialized_types);
|
D | type-visitor.cc | 34 auto arg_types_iterator = specialized_from->specialized_types.begin(); in ComputeType()
|
D | types.h | 92 TypeVector specialized_types; member
|
D | implementation-visitor.cc | 1947 key.generic->GetSpecialization(key.specialized_types)) { in GetOrCreateSpecialization()
|