Lines Matching refs:resize
129 - resize(width, height, value_type());
130 + resize(w, h, value_type());
155 - resize(size.x, size.y, value_type());
156 + resize(sz.x, sz.y, value_type());
182 - resize(width, height, d);
183 + resize(w, h, d);
210 - resize(size.x, size.y, d);
211 + resize(sz.x, sz.y, d);
272 - void resize(int width, int height)
273 + void resize(int w, int h)
276 - resize(width, height, value_type());
278 + resize(w, h, value_type());
284 - void resize(difference_type const & size)
285 + void resize(difference_type const & sz)
290 - resize(size.x, size.y, value_type());
291 + resize(sz.x, sz.y, value_type());
299 - void resize(int width, int height, value_type const & d);
300 + void resize(int w, int h, value_type const & d);
302 /** resize image to given size and initialize by copying data
308 /** resize image to size of other image and copy it's data
314 -BasicImage<PIXELTYPE, Alloc>::resize(int width, int height, value_type const & d)
315 +BasicImage<PIXELTYPE, Alloc>::resize(int w, int h, value_type const & d)
318 - "BasicImage::resize(int width, int height, value_type const &): "
320 + "BasicImage::resize(int w, int h, value_type const &): "
352 @@ -1100,22 +1132,22 @@ BasicImage<PIXELTYPE, Alloc>::resize(int