Home | History | Annotate | Download | only in aapt

Lines Matching full:rhs

22     bool operator<(const ErrorPos& rhs) const;
23 bool operator==(const ErrorPos& rhs) const;
24 ErrorPos& operator=(const ErrorPos& rhs);
57 ErrorPos::operator<(const ErrorPos& rhs) const
59 if (this->file < rhs.file) return true;
60 if (this->file == rhs.file) {
61 if (this->line < rhs.line) return true;
62 if (this->line == rhs.line) {
63 if (this->error < rhs.error) return true;
70 ErrorPos::operator==(const ErrorPos& rhs) const
72 return this->file == rhs.file
73 && this->line == rhs.line
74 && this->error == rhs.error;
78 ErrorPos::operator=(const ErrorPos& rhs)
80 this->file = rhs.file;
81 this->line = rhs.line;
82 this->error = rhs.error;