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.h270 class ErrorToStringWrapper {
272 ErrorToStringWrapper(Context *ctx, ErrorDetail error, size_t indent) in ErrorToStringWrapper() function
277 DEFAULT_COPY_SEMANTIC(ErrorToStringWrapper);
278 DEFAULT_MOVE_SEMANTIC(ErrorToStringWrapper);
280 ~ErrorToStringWrapper() = default;
282 friend std::ostream &operator<<(std::ostream &o, const ErrorToStringWrapper &self);
290 ErrorToStringWrapper ErrorToString(ErrorDetail error, size_t indent = 0)
292 return ErrorToStringWrapper {this, std::move(error), indent};
295 friend std::ostream &operator<<(std::ostream &o, const ErrorToStringWrapper &self);
317 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 <<()