Lines Matching refs:width
83 QuartzSurface::QuartzSurface( NSView* pView, int x, int y, int width, int height ) : in QuartzSurface() argument
87 …as::cairo::Surface(NSView*, x:%d, y:%d, w:%d, h:%d): New Surface for window", x, y, width, height); in QuartzSurface()
93 if (width == 0 || height == 0) { in QuartzSurface()
94 width = [mpView bounds].size.width; in QuartzSurface()
96 … OSL_TRACE("Canvas::cairo::Surface(): BUG!! size is ZERO! fixing to %d x %d...", width, height); in QuartzSurface()
101 cairo_quartz_surface_create(CAIRO_FORMAT_ARGB32, width, height), in QuartzSurface()
117 QuartzSurface::QuartzSurface( CGContextRef rContext, int x, int y, int width, int height ) : in QuartzSurface() argument
121 …airo::Surface(CGContext:%p, x:%d, y:%d, w:%d, h:%d): New Surface.", rContext, x, y, width, height); in QuartzSurface()
128 mpSurface.reset(cairo_quartz_surface_create_for_cg_context(rContext, width, height), in QuartzSurface()
166 SurfaceSharedPtr QuartzSurface::getSimilar( Content aContent, int width, int height ) const in getSimilar() argument
171 cairo_surface_create_similar( mpSurface.get(), aContent, width, height ), in getSimilar()
184 void QuartzSurface::Resize( int width, int height ) in Resize() argument
291 int x, int y, int width, int height ) in createSurface() argument
300 surf = SurfaceSharedPtr(new QuartzSurface(pSysData->pView, x, y, width, height)); in createSurface()
307 … surf = SurfaceSharedPtr(new QuartzSurface(aSysData.rCGContext, x, y, width, height)); in createSurface()