Home | History | Annotate | Download | only in localize

Lines Matching full:file

16     string file;
22 ErrorPos(const string& file, int line, const string& error);
28 void Print(FILE* to) const;
38 :file(that.file),
45 :file(f),
58 if (this->file < rhs.file) return true;
59 if (this->file == rhs.file) {
71 return this->file == rhs.file
79 this->file = rhs.file;
86 ErrorPos::Print(FILE* to) const
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());
98 : file(f), line(l)
103 : file(that.file), line(that.line)
108 : file("???", 0)
121 snprintf(buf, sizeof(buf)-1, "%s:%d", this->file.c_str(), this->line);
123 snprintf(buf, sizeof(buf)-1, "%s:", this->file.c_str());
143 ErrorPos err(this->file, this->line, string(buf));
158 SourcePos::PrintErrors(FILE* to)