Home | History | Annotate | Download | only in gn

Lines Matching refs:Location

15 class Location {
17 Location()
22 Location(const InputFile* file, int line_number, int char_offset)
32 bool operator==(const Location& other) const {
38 bool operator<(const Location& other) const {
56 LocationRange(const Location& begin, const Location& end)
62 const Location& begin() const { return begin_; }
63 const Location& end() const { return end_; }
73 Location begin_;
74 Location end_;