Lines Matching refs:line
36 int line;
40 static LineAndColumn WithUnknownOffset(int line, int column) {
41 return {kUnknownOffset, line, column};
46 return line == other.line && column == other.column;
49 line == other.line && column == other.column);
69 return start.line == pos.start.line && source == pos.source;
73 if (pos.line < start.line || pos.line > end.line) return false;
75 if (pos.line == start.line && pos.column < start.column) return false;
76 if (pos.line == end.line && pos.column >= end.column) return false;
107 std::to_string(pos.start.line + 1) + ":" +
114 << "?l=" << (pos.start.line + 1)