Lines Matching full:error
15 String8 error;
20 ErrorPos(const String8& file, int line, const String8& error, bool fatal);
39 error(that.error),
47 error(e),
63 if (this->error < rhs.error) return true;
74 && this->error == rhs.error;
82 this->error = rhs.error;
89 const char* type = fatal ? "error:" : "warning:";
92 fprintf(to, "%s:%d: %s %s\n", this->file.string(), this->line, type, this->error.string());
94 fprintf(to, "%s: %s %s\n", this->file.string(), type, this->error.string());
120 SourcePos::error(const char* fmt, ...) const