Home
last modified time | relevance | path

Searched refs:YamlReaderError (Results 1 – 3 of 3) sorted by relevance

/external/llvm-project/lld/include/lld/Core/
DError.h25 enum class YamlReaderError { enum
30 inline std::error_code make_error_code(YamlReaderError e) { in make_error_code()
64 template <> struct is_error_code_enum<lld::YamlReaderError> : std::true_type {};
/external/llvm-project/lld/lib/Core/
DError.cpp26 switch (static_cast<YamlReaderError>(ev)) { in message()
27 case YamlReaderError::unknown_keyword: in message()
29 case YamlReaderError::illegal_value: in message()
/external/llvm-project/lld/lib/ReaderWriter/YAML/
DReaderWriterYAML.cpp1374 return make_error_code(lld::YamlReaderError::illegal_value); in loadFile()