HomeSort by relevance Sort by last modified time
    Searched defs:LogSeverity (Results 1 - 3 of 3) sorted by null

  /external/chromium/testing/gmock/include/gmock/internal/
gmock-internal-utils.h 306 enum LogSeverity {
322 bool LogIsVisible(LogSeverity severity);
331 void Log(LogSeverity severity, const string& message, int stack_frames_to_skip);
  /external/chromium/googleurl/base/
logging.h 144 typedef int LogSeverity;
145 const LogSeverity LOG_INFO = 0;
146 const LogSeverity LOG_WARNING = 1;
147 const LogSeverity LOG_ERROR = 2;
148 const LogSeverity LOG_FATAL = 3;
149 const LogSeverity LOG_NUM_SEVERITIES = 4;
153 const LogSeverity LOG_DFATAL_LEVEL = LOG_ERROR;
155 const LogSeverity LOG_DFATAL_LEVEL = LOG_FATAL;
410 LogMessage(const char* file, int line, LogSeverity severity, int ctr);
427 LogMessage(const char* file, int line, LogSeverity severity)
    [all...]
  /external/chromium/base/
logging.h 280 typedef int LogSeverity;
281 const LogSeverity LOG_VERBOSE = -1; // This is level 1 verbosity
284 const LogSeverity LOG_INFO = 0;
285 const LogSeverity LOG_WARNING = 1;
286 const LogSeverity LOG_ERROR = 2;
287 const LogSeverity LOG_ERROR_REPORT = 3;
288 const LogSeverity LOG_FATAL = 4;
289 const LogSeverity LOG_NUM_SEVERITIES = 5;
293 const LogSeverity LOG_DFATAL = LOG_ERROR;
295 const LogSeverity LOG_DFATAL = LOG_FATAL
    [all...]

Completed in 236 milliseconds