Home | History | Annotate | Download | only in aapt

Lines Matching refs:ErrorPos

9 // ErrorPos
11 struct ErrorPos
24 ErrorPos();
25 ErrorPos(const ErrorPos& that);
26 ErrorPos(const String8& file, int line, const String8& error, Level level);
27 ErrorPos& operator=(const ErrorPos& rhs);
32 static vector<ErrorPos> g_errors;
34 ErrorPos::ErrorPos()
39 ErrorPos::ErrorPos(const ErrorPos& that)
47 ErrorPos::ErrorPos(const String8& f, int l, const String8& e, Level lev)
55 ErrorPos&
56 ErrorPos::operator=(const ErrorPos& rhs)
66 ErrorPos::print(FILE* to) const
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);
158 vector<ErrorPos>::const_iterator it;