Lines Matching refs:format
54 Status::Status(const char *format, ...) in Status() argument
57 va_start(args, format); in Status()
59 SetErrorStringWithVarArg(format, args); in Status()
200 const char *format, ...) { in SetExpressionErrorWithFormat() argument
203 if (format != nullptr && format[0]) { in SetExpressionErrorWithFormat()
205 va_start(args, format); in SetExpressionErrorWithFormat()
206 length = SetErrorStringWithVarArg(format, args); in SetExpressionErrorWithFormat()
256 int Status::SetErrorStringWithFormat(const char *format, ...) { in SetErrorStringWithFormat() argument
257 if (format != nullptr && format[0]) { in SetErrorStringWithFormat()
259 va_start(args, format); in SetErrorStringWithFormat()
260 int length = SetErrorStringWithVarArg(format, args); in SetErrorStringWithFormat()
269 int Status::SetErrorStringWithVarArg(const char *format, va_list args) { in SetErrorStringWithVarArg() argument
270 if (format != nullptr && format[0]) { in SetErrorStringWithVarArg()
277 VASprintf(buf, format, args); in SetErrorStringWithVarArg()
294 void llvm::format_provider<lldb_private::Status>::format( in format() function in llvm::format_provider::Status
297 llvm::format_provider<llvm::StringRef>::format(error.AsCString(), OS, in format()