Lines Matching defs:ERROR
16 ERROR
21 String8 error;
26 ErrorPos(const String8& file, int line, const String8& error, Level level);
42 error(that.error),
50 error(e),
60 this->error = rhs.error;
76 case ERROR:
77 type = "error: ";
83 fprintf(to, "%s:%d: %s%s\n", this->file.string(), this->line, type, this->error.string());
85 fprintf(to, "%s: %s%s\n", this->file.string(), type, this->error.string());
88 fprintf(to, "%s%s\n", type, this->error.string());
114 SourcePos::error(const char* fmt, ...) const
120 g_errors.push_back(ErrorPos(this->file, this->line, msg, ErrorPos::ERROR));