| 373 | |
| 374 | |
| 375 | bool LanguageRepresentationFunctionType::IsValidByName(const std::string& name, BinaryView* view) |
| 376 | { |
| 377 | Ref<LanguageRepresentationFunctionType> type = GetByName(name); |
| 378 | if (!type) |
| 379 | return false; |
| 380 | return type->IsValid(view); |
| 381 | } |
| 382 | |
| 383 | |
| 384 | vector<Ref<LanguageRepresentationFunctionType>> LanguageRepresentationFunctionType::GetTypes() |