Lines Matching full:res
95 operator+= (position& res, const int width)
97 res.columns (width);
98 return res;
105 position res = begin;
106 return res += width;
111 operator-= (position& res, const int width)
113 return res += -width;
208 location res = begin;
209 res.end = end.end;
210 return res;
216 location res = begin;
217 res.columns (width);
218 return res;
222 inline location& operator+= (location& res, unsigned int width)
224 res.columns (width);
225 return res;