Home | History | Annotate | Download | only in aapt

Lines Matching refs:line

14     int line;
20 ErrorPos(const String8& file, int line, const String8& error, bool fatal);
32 :line(-1), fatal(false)
38 line(that.line),
46 line(l),
61 if (this->line < rhs.line) return true;
62 if (this->line == rhs.line) {
73 && this->line == rhs.line
81 this->line = rhs.line;
91 if (this->line >= 0) {
92 fprintf(to, "%s:%d: %s %s\n", this->file.string(), this->line, type, this->error.string());
101 : file(f), line(l)
106 : file(that.file), line(that.line)
111 : file("???", 0), line(-1)
133 g_errors.push_back(ErrorPos(this->file, this->line, String8(buf), true));
151 ErrorPos(this->file, this->line, String8(buf), false).print(stderr);