#include "src/base/logging.h"
#include <cctype>
#include <cstdarg>
#include <cstdio>
#include <cstdlib>
#include "src/base/debug/stack_trace.h"
#include "src/base/platform/platform.h"
Go to the source code of this file.
◆ CHAR_PRINT_CASE
#define CHAR_PRINT_CASE |
( |
| ch | ) |
|
Value: case ch: \
oss << #ch; \
break;
◆ DEFINE_MAKE_CHECK_OP_STRING
#define DEFINE_MAKE_CHECK_OP_STRING |
( |
| type | ) |
|
Value: template std::string* MakeCheckOpString<type, type>(type, type, \
char const*); \
template std::string PrintCheckOperand<type>(type);
Definition at line 126 of file logging.cc.
◆ DEFINE_PRINT_CHECK_OPERAND_CHAR
#define DEFINE_PRINT_CHECK_OPERAND_CHAR |
( |
| type | ) |
|
Value: template <> \
std::string PrintCheckOperand<type>(type ch) { \
return PrettyPrintChar(ch); \
} \
template <> \
std::string PrintCheckOperand<type*>(type * cstr) { \
return PrintCheckOperand<void*>(cstr); \
} \
template <> \
std::string PrintCheckOperand<const type*>(const type* cstr) { \
return PrintCheckOperand<const void*>(cstr); \
}
Definition at line 106 of file logging.cc.
◆ V8_Dcheck()
void V8_Dcheck |
( |
const char * | file, |
|
|
int | line, |
|
|
const char * | message ) |
◆ V8_Fatal()
void V8_Fatal |
( |
const char * | format, |
|
|
| ... ) |