Lines Matching refs:width
123 operator+= (position& res, position::counter_type width)
125 res.columns (width);
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;
249 operator+= (location& res, location::counter_type width)
251 res.columns (width);
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;