Lines Matching full:width
95 operator+= (position& res, const int width)
97 res.columns (width);
103 operator+ (const position& begin, const int width)
106 return res += width;
111 operator-= (position& res, const int width)
113 return res += -width;
118 operator- (const position& begin, const int width)
120 return begin + -width;
214 inline const location operator+ (const location& begin, unsigned int width)
217 res.columns (width);
222 inline location& operator+= (location& res, unsigned int width)
224 res.columns (width);