HomeSort by relevance Sort by last modified time
    Searched refs:obj2yaml_error (Results 1 - 5 of 5) sorted by null

  /external/llvm/tools/obj2yaml/
Error.cpp 31 switch (static_cast<obj2yaml_error>(ev)) {
32 case obj2yaml_error::success:
34 case obj2yaml_error::file_not_found:
36 case obj2yaml_error::unrecognized_file_format:
38 case obj2yaml_error::unsupported_obj_file_format:
40 case obj2yaml_error::not_implemented:
43 llvm_unreachable("An enumerator of obj2yaml_error does not have a message "
Error.h 20 enum class obj2yaml_error { class in namespace:llvm
28 inline std::error_code make_error_code(obj2yaml_error e) {
35 Obj2YamlError(obj2yaml_error C) : Code(C) {}
37 Obj2YamlError(obj2yaml_error C, std::string ErrMsg)
45 obj2yaml_error Code;
51 template <> struct is_error_code_enum<llvm::obj2yaml_error> : std::true_type {};
obj2yaml.cpp 28 return obj2yaml_error::unsupported_obj_file_format;
45 return obj2yaml_error::unrecognized_file_format;
elf2yaml.cpp 192 return obj2yaml_error::success;
199 return obj2yaml_error::success;
225 return obj2yaml_error::success;
251 return obj2yaml_error::success;
270 return obj2yaml_error::success;
453 return obj2yaml_error::unsupported_obj_file_format;
macho2yaml.cpp 516 return obj2yaml_error::success;
523 return obj2yaml_error::success;
526 return obj2yaml_error::unsupported_obj_file_format;

Completed in 231 milliseconds