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.h247 class ErrorToStringWrapper {
249 ErrorToStringWrapper(Context *ctx, ErrorDetail error, size_t indent) in ErrorToStringWrapper() function
254 DEFAULT_COPY_SEMANTIC(ErrorToStringWrapper);
255 DEFAULT_MOVE_SEMANTIC(ErrorToStringWrapper);
257 ~ErrorToStringWrapper() = default;
259 friend std::ostream &operator<<(std::ostream &o, const ErrorToStringWrapper &self);
267 ErrorToStringWrapper ErrorToString(ErrorDetail error, size_t indent = 0)
269 return ErrorToStringWrapper {this, std::move(error), indent};
272 friend std::ostream &operator<<(std::ostream &o, const ErrorToStringWrapper &self);
290 std::ostream &operator<<(std::ostream &o, const static_linker::Context::ErrorToStringWrapper &self);
Dlinker_context_misc.cpp275 std::ostream &operator<<(std::ostream &o, const static_linker::Context::ErrorToStringWrapper &self) in operator <<()