Lines Matching refs:end
175 , end (e) in location()
181 , end (p) in begin()
189 , end (f, l, c) in begin()
199 end = begin;
208 begin = end; in step()
214 end += count;
220 end.lines (count);
229 position end; variable
234 operator+= (location& res, const location& end)
236 res.end = end.end;
242 operator+ (location res, const location& end)
244 return res += end;
287 = 0 < loc.end.column ? loc.end.column - 1 : 0;
289 if (loc.end.filename
291 || *loc.begin.filename != *loc.end.filename))
292 ostr << '-' << loc.end.filename << ':' << loc.end.line << '.' << end_col;
293 else if (loc.begin.line < loc.end.line)
294 ostr << '-' << loc.end.line << '.' << end_col;