Home
last modified time | relevance | path

Searched refs:ErrorToStringWrapper (Results 1 – 2 of 2) sorted by relevance

/arkcompiler/runtime_core/static_core/static_linker/
Dlinker_context.h288 class ErrorToStringWrapper {
290 ErrorToStringWrapper(Context *ctx, ErrorDetail error, size_t indent) in ErrorToStringWrapper() function
295 DEFAULT_COPY_SEMANTIC(ErrorToStringWrapper);
296 DEFAULT_MOVE_SEMANTIC(ErrorToStringWrapper);
298 ~ErrorToStringWrapper() = default;
300 friend std::ostream &operator<<(std::ostream &o, const ErrorToStringWrapper &self);
308 ErrorToStringWrapper ErrorToString(ErrorDetail error, size_t indent = 0)
310 return ErrorToStringWrapper {this, std::move(error), indent};
313 friend std::ostream &operator<<(std::ostream &o, const ErrorToStringWrapper &self);
335 std::ostream &operator<<(std::ostream &o, const static_linker::Context::ErrorToStringWrapper &self);
Dlinker_context_misc.cpp294 std::ostream &operator<<(std::ostream &o, const static_linker::Context::ErrorToStringWrapper &self) in operator <<()