Lines Matching refs:res
123 operator+= (position& res, position::counter_type width)
125 res.columns (width);
126 return res;
131 operator+ (position res, position::counter_type width)
133 return res += width;
138 operator-= (position& res, position::counter_type width)
140 return res += -width;
145 operator- (position res, position::counter_type width)
147 return res -= width;
234 operator+= (location& res, const location& end)
236 res.end = end.end;
237 return res;
242 operator+ (location res, const location& end)
244 return res += end;
249 operator+= (location& res, location::counter_type width)
251 res.columns (width);
252 return res;
257 operator+ (location res, location::counter_type width)
259 return res += width;
264 operator-= (location& res, location::counter_type width)
266 return res += -width;
271 operator- (location res, location::counter_type width)
273 return res -= width;