Lines Matching full:error
18 string error;
22 ErrorPos(const string& file, int line, const string& error);
40 error(that.error)
47 error(e)
62 if (this->error < rhs.error) return true;
73 && this->error == rhs.error;
81 this->error = rhs.error;
89 fprintf(to, "%s:%d: %s\n", this->file.c_str(), this->line, this->error.c_str());
91 fprintf(to, "%s: %s\n", this->file.c_str(), this->error.c_str());
130 SourcePos::Error(const char* fmt, ...) const