HomeSort by relevance Sort by last modified time
    Searched refs:Fatal (Results 1 - 25 of 39) sorted by null

1 2

  /external/chromium_org/third_party/libjingle/source/talk/base/
checks.h 37 void Fatal(const char* file, int line, const char* format, ...);
42 Fatal(__FILE__, __LINE__, "unreachable code")
checks.cc 35 void Fatal(const char* file, int line, const char* format, ...) {
43 LOG(LS_ERROR) << "\n\n#\n# Fatal error in " << file
flags.cc 185 Fatal(__FILE__, __LINE__, "CHECK(%s) failed", "n < buffer_size");
280 Fatal(flag->file(), 0, "flag %s declared twice", flag->name());
  /external/chromium_org/third_party/webrtc/base/
checks.h 22 void Fatal(const char* file, int line, const char* format, ...);
28 rtc::Fatal(__FILE__, __LINE__, "unreachable code")
checks.cc 20 void Fatal(const char* file, int line, const char* format, ...) {
28 LOG(LS_ERROR) << "\n\n#\n# Fatal error in " << file
flags.cc 168 Fatal(__FILE__, __LINE__, "CHECK(%s) failed", "n < buffer_size");
263 Fatal(flag->file(), 0, "flag %s declared twice", flag->name());
  /external/clang/include/clang/Frontend/
SerializedDiagnosticPrinter.h 58 Fatal,
  /external/chromium_org/extensions/renderer/
console.h 29 void Fatal(content::RenderView* render_view, const std::string& message);
42 void Fatal(v8::Handle<v8::Context> context, const std::string& message);
module_system.cc 31 // Logs a fatal error for the calling context, with some added metadata about
37 // This will only actual be fatal in in dev/canary, since in too many cases
41 void Fatal(ScriptContext* context, const std::string& message) {
58 console::Fatal(context->isolate()->GetCallingContext(), full_message);
84 Fatal(context_, CreateExceptionString(try_catch) + "{" + stack_trace + "}");
221 Fatal(context_, "No source for require(" + module_name_str + ")");
229 Fatal(context_, "Bad source for require(" + module_name_str + ")");
310 Fatal(context_,
319 Fatal(context_, module_name + "." + method_name + " is not a function");
420 Fatal(module_system->context_
    [all...]
console.cc 109 void Fatal(content::RenderView* render_view, const std::string& message) {
156 void Fatal(v8::Handle<v8::Context> context, const std::string& message) {
  /frameworks/compile/slang/
slang_diagnostic_buffer.cpp 67 case clang::DiagnosticsEngine::Fatal: {
68 (*mSOS) << "fatal: ";
  /external/clang/include/clang/Basic/
DiagnosticIDs.h 61 /// map ERRORs to Error or Fatal (stop emitting diagnostics after this one).
68 Fatal = 5 ///< Present this diagnostic as a fatal error.
111 Ignored, Note, Remark, Warning, Error, Fatal
208 /// The diagnostic should be reported. Various fatal errors (e.g.,
  /external/chromium_org/tools/win/split_link/
split_link.cc 33 static void Fatal(const wchar_t* msg) {
34 wprintf(L"split_link fatal error: %s\n", msg);
124 Fatal(L"Couldn't parse command line.");
148 Fatal(error.c_str());
167 Fatal(L"Couldn't retrieve linker location from "
  /frameworks/compile/mclinker/include/mcld/Support/
MsgHandling.h 29 MsgHandler fatal(unsigned int pID);
46 inline mcld::MsgHandler mcld::fatal(unsigned int pID) function in class:mcld
48 return getDiagnosticEngine().report(pID, DiagnosticEngine::Fatal);
  /frameworks/compile/mclinker/lib/LD/
TextDiagnosticPrinter.cpp 54 case DiagnosticEngine::Fatal: {
56 m_OStream << "Fatal: ";
118 case DiagnosticEngine::Fatal: {
DiagnosticInfos.cpp 159 // If --fatal-warnings is turned on, then switch warnings and errors to fatal
163 severity = DiagnosticEngine::Fatal;
  /external/clang/lib/Frontend/
TextDiagnosticBuffer.cpp 42 case DiagnosticsEngine::Fatal:
LogDiagnosticPrinter.cpp 40 case DiagnosticsEngine::Fatal: return "fatal error";
  /external/clang/tools/libclang/
CXStoredDiagnostic.cpp 38 case DiagnosticsEngine::Fatal: return CXDiagnostic_Fatal;
  /frameworks/compile/mclinker/include/mcld/LD/
DiagnosticEngine.h 39 Fatal,
  /external/clang/lib/Basic/
DiagnosticIDs.cpp 158 diag::Severity::Fatal, /*IsUser=*/false, /*IsPragma=*/false);
374 case diag::Severity::Fatal:
375 return DiagnosticIDs::Fatal;
407 // to error. Errors can only be mapped to fatal.
408 diag::Severity Result = diag::Severity::Fatal;
461 // If -Wfatal-errors is enabled, map errors to fatal unless explicity
465 Result = diag::Severity::Fatal;
594 // Record that a fatal error occurred only when we see a second
596 // fatal error, but suppresses any diagnostics that follow those
598 if (Diag.LastDiagLevel == DiagnosticIDs::Fatal)
    [all...]
Diagnostic.cpp 168 (Map == diag::Severity::Fatal || Map == diag::Severity::Error)) &&
175 // Don't allow a mapping to a warning override an error/fatal mapping.
179 Info.getSeverity() == diag::Severity::Fatal)
265 Info.getSeverity() == diag::Severity::Fatal)
277 // fatal errors.
279 return setSeverityForGroup(Group, diag::Severity::Fatal);
293 if (Info.getSeverity() == diag::Severity::Fatal)
    [all...]
  /external/clang/lib/ARCMigrate/
PlistReporter.cpp 28 case DiagnosticsEngine::Fatal:
  /external/clang/tools/diagtool/
ShowEnabledWarnings.cpp 50 case DiagnosticsEngine::Fatal: return 'F';
  /external/chromium_org/tools/git/
move_source_file.py 67 raise Exception('Fatal: Failed to run git mv command.')
154 print 'Fatal: You must run from the root of a git checkout.'

Completed in 469 milliseconds

1 2