Lines Matching refs:format
259 void V8_NOINLINE PRINTF_FORMAT(2, 3) errorf(const char* format, ...) {
261 va_start(args, format);
262 verrorf(pc_offset(), format, args);
267 errorf(uint32_t offset, const char* format, ...) {
269 va_start(args, format);
270 verrorf(offset, format, args);
275 errorf(const uint8_t* pc, const char* format, ...) {
277 va_start(args, format);
278 verrorf(pc_offset(pc), format, args);
364 void verrorf(uint32_t offset, const char* format, va_list args) {
369 int len = base::VSNPrintF(buffer, format, args);