Lines Matching defs:message
20 void DefaultDcheckHandler(const char* file, int line, const char* message);
55 void DefaultDcheckHandler(const char* file, int line, const char* message) {
57 V8_Fatal(file, line, "Debug check failed: %s.", message);
60 V8_Fatal("Debug check failed: %s.", message);
116 // message from the stack.
146 // Format the error message into a stack object for later retrieveal by the
148 FailureMessage message(format, arguments);
153 // Print the formatted message to stdout without cropping the output.
157 // Print the error message.
161 // Print the message object's address to force stack allocation.
162 v8::base::OS::PrintError("\n#\n#\n#\n#FailureMessage Object: %p", &message);
170 void V8_Dcheck(const char* file, int line, const char* message) {
171 v8::base::g_dcheck_function(file, line, message);