Home | History | Annotate | Download | only in aapt

Lines Matching full:line

20     int line;
26 ErrorPos(const String8& file, int line, const String8& error, Level level);
35 :line(-1), level(NOTE)
41 line(that.line),
49 line(l),
59 this->line = rhs.line;
82 if (this->line >= 0) {
83 fprintf(to, "%s:%d: %s%s\n", this->file.string(), this->line, type, this->error.string());
95 : file(f), line(l)
100 : file(that.file), line(that.line)
105 : file("???", 0), line(-1)
120 g_errors.push_back(ErrorPos(this->file, this->line, msg, ErrorPos::ERROR));
130 ErrorPos(this->file, this->line, msg, ErrorPos::WARNING).print(stderr);
140 ErrorPos(this->file, this->line, msg, ErrorPos::NOTE).print(stderr);