Lines Matching refs:start
59 LineAndColumn start;
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;
81 return source == pos.source && start == pos.start && end == pos.end;
107 std::to_string(pos.start.line + 1) + ":" +
108 std::to_string(pos.start.column + 1);
114 << "?l=" << (pos.start.line + 1)
115 << "&c=" << (pos.start.column + 1);