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.h260 class ErrorToStringWrapper {
262 ErrorToStringWrapper(Context *ctx, ErrorDetail error, size_t indent) in ErrorToStringWrapper() function
267 DEFAULT_COPY_SEMANTIC(ErrorToStringWrapper);
268 DEFAULT_MOVE_SEMANTIC(ErrorToStringWrapper);
270 ~ErrorToStringWrapper() = default;
272 friend std::ostream &operator<<(std::ostream &o, const ErrorToStringWrapper &self);
280 ErrorToStringWrapper ErrorToString(ErrorDetail error, size_t indent = 0)
282 return ErrorToStringWrapper {this, std::move(error), indent};
285 friend std::ostream &operator<<(std::ostream &o, const ErrorToStringWrapper &self);
307 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 <<()