Lines Matching defs:column
37 int column;
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);
75 if (pos.line == start.line && pos.column < start.column) return false;
76 if (pos.line == end.line && pos.column >= end.column) return false;
108 std::to_string(pos.start.column + 1);
115 << "&c=" << (pos.start.column + 1);