Lines Matching full:line
17 int line;
22 ErrorPos(const string& file, int line, const string& error);
39 line(that.line),
46 line(l),
60 if (this->line < rhs.line) return true;
61 if (this->line == rhs.line) {
72 && this->line == rhs.line
80 this->line = rhs.line;
88 if (this->line >= 0) {
89 fprintf(to, "%s:%d: %s\n", this->file.c_str(), this->line, this->error.c_str());
98 : file(f), line(l)
103 : file(that.file), line(that.line)
120 if (this->line >= 0) {
121 snprintf(buf, sizeof(buf)-1, "%s:%d", this->file.c_str(), this->line);
143 ErrorPos err(this->file, this->line, string(buf));