Lines Matching refs:Location
13 class Location {
15 Location();
16 Location(const InputFile* file, int line_number, int char_offset);
22 bool operator==(const Location& other) const;
23 bool operator!=(const Location& other) const;
24 bool operator<(const Location& other) const;
42 LocationRange(const Location& begin, const Location& end);
44 const Location& begin() const { return begin_; } in begin()
45 const Location& end() const { return end_; } in end()
50 Location begin_;
51 Location end_;