Lines Matching defs:args
22 va_list args) {
30 va_copy(args_copy, args);
45 va_list args;
46 va_start(args, format);
47 VPrintFToString(str, str_offset, format, args);
48 va_end(args);
54 std::string WasmError::FormatError(const char* format, va_list args) {
56 VPrintFToString(&result, 0, format, args);
60 void ErrorThrower::Format(ErrorType type, const char* format, va_list args) {
70 VPrintFToString(&error_msg_, context_len, format, args);