Lines Matching refs:ErrorPos
11 struct ErrorPos struct
24 ErrorPos(); argument
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() in ErrorPos() function in ErrorPos
39 ErrorPos::ErrorPos(const ErrorPos& that) in ErrorPos() function in ErrorPos
47 ErrorPos::ErrorPos(const String8& f, int l, const String8& e, Level lev) in ErrorPos() function in ErrorPos
55 ErrorPos&
56 ErrorPos::operator=(const ErrorPos& rhs) in operator =()
66 ErrorPos::print(FILE* to) const in print()
120 g_errors.push_back(ErrorPos(this->file, this->line, msg, ErrorPos::ERROR)); in error()
130 ErrorPos(this->file, this->line, msg, ErrorPos::WARNING).print(stderr); in warning()
140 ErrorPos(this->file, this->line, msg, ErrorPos::NOTE).print(stderr); in printf()
158 vector<ErrorPos>::const_iterator it; in printErrors()