Lines Matching refs:format
54 Status::Status(const char *format, ...) : m_string() { in Status() argument
56 va_start(args, format); in Status()
58 SetErrorStringWithVarArg(format, args); in Status()
191 const char *format, ...) { in SetExpressionErrorWithFormat() argument
194 if (format != nullptr && format[0]) { in SetExpressionErrorWithFormat()
196 va_start(args, format); in SetExpressionErrorWithFormat()
197 length = SetErrorStringWithVarArg(format, args); in SetExpressionErrorWithFormat()
247 int Status::SetErrorStringWithFormat(const char *format, ...) { in SetErrorStringWithFormat() argument
248 if (format != nullptr && format[0]) { in SetErrorStringWithFormat()
250 va_start(args, format); in SetErrorStringWithFormat()
251 int length = SetErrorStringWithVarArg(format, args); in SetErrorStringWithFormat()
260 int Status::SetErrorStringWithVarArg(const char *format, va_list args) { in SetErrorStringWithVarArg() argument
261 if (format != nullptr && format[0]) { in SetErrorStringWithVarArg()
268 VASprintf(buf, format, args); in SetErrorStringWithVarArg()
281 void llvm::format_provider<lldb_private::Status>::format( in format() function in llvm::format_provider::Status
284 llvm::format_provider<llvm::StringRef>::format(error.AsCString(), OS, in format()