Lines Matching refs:bounds

124 	BRect bounds = frame.OffsetToCopy(0, 0);
125 fOffscreenBitmap = new(std::nothrow) BBitmap(bounds, B_BITMAP_ACCEPTS_VIEWS,
133 fOffscreen = new(std::nothrow) BView(bounds, "offscreen remote view",
471 BRect bounds = fOffscreenBitmap->Bounds();
473 reply.Add(bounds.IntegerWidth() + 1);
474 reply.Add(bounds.IntegerHeight() + 1);
514 BRect bounds = fCursorBitmap->Bounds();
516 + bounds.IntegerWidth() + 1;
518 + bounds.IntegerHeight() + 1;
844 BRect bounds = _BuildInvalidateRect(points, 4);
847 bounds.InsetBy(-penSize, -penSize);
859 invalidRegion.Include(bounds);
893 BRect bounds;
897 message.Read(bounds);
907 offscreen->StrokePolygon(points, numPoints, bounds, closed,
909 bounds.InsetBy(-penSize, -penSize);
911 offscreen->FillPolygon(points, numPoints, bounds, pattern);
917 offscreen->FillPolygon(points, numPoints, bounds,
922 invalidRegion.Include(bounds);
988 BRect bounds;
991 message.Read(bounds);
1025 bounds.InsetBy(-penSize, -penSize);
1040 invalidRegion.Include(bounds);
1048 BRect bounds;
1052 if (message.Read(bounds) != B_OK)
1057 bounds, pattern);
1058 bounds.InsetBy(-penSize, -penSize);
1061 bounds, pattern);
1068 bounds, *gradient);
1072 invalidRegion.Include(bounds);
1084 BRect bounds = _BuildInvalidateRect(points, 2);
1085 invalidRegion.Include(bounds.InsetBySelf(-penSize, -penSize));
1095 BRect bounds;
1103 bounds.left = min_c(bounds.left, min_c(start.x, end.x));
1104 bounds.top = min_c(bounds.top, min_c(start.y, end.y));
1105 bounds.right = max_c(bounds.right, max_c(start.x, end.x));
1106 bounds.bottom = max_c(bounds.bottom, max_c(start.y, end.y));
1110 invalidRegion.Include(bounds);
1237 BRect bounds(point, offscreen->PenLocation());
1238 bounds.top -= height.ascent;
1239 bounds.bottom += height.descent;
1240 invalidRegion.Include(bounds);
1286 BRect bounds;
1289 message.Read(bounds);
1294 BBitmap bitmap(bounds, B_BITMAP_NO_SERVER_LINK, B_RGB32);
1295 bitmap.ImportBits(fOffscreenBitmap, bounds.LeftTop(),
1296 BPoint(0, 0), bounds.Size());
1321 BRect bounds(1000000, 1000000, 0, 0);
1323 bounds.left = min_c(bounds.left, points[i].x);
1324 bounds.top = min_c(bounds.top, points[i].y);
1325 bounds.right = max_c(bounds.right, points[i].x);
1326 bounds.bottom = max_c(bounds.bottom, points[i].y);
1329 return bounds;