Searched refs:rectCount (Results 1 - 7 of 7) sorted by relevance

/haiku/src/servers/app/drawing/interface/remote/
H A DRemoteMessage.h285 int32 rectCount = region.CountRects(); local
286 Add(rectCount);
288 for (int32 i = 0; i < rectCount; i++)
329 int32 rectCount; local
330 Read(rectCount);
332 for (int32 i = 0; i < rectCount; i++) {
H A DRemoteDrawingEngine.cpp352 int32 rectCount = clippedRegion.CountRects(); local
353 if (rectCount == 0)
356 if (rectCount > 1 || (rectCount == 1 && clippedRegion.RectAt(0) != viewRect)
371 message.Add(rectCount);
373 for (int32 i = 0; i < rectCount; i++) {
1077 int32 rectCount = region.CountRects(); local
1078 bitmaps = (UtilityBitmap**)malloc(rectCount * sizeof(UtilityBitmap*));
1082 for (int32 i = 0; i < rectCount; i++) {
/haiku/src/tests/servers/app/drawing_debugger/
H A DDrawingDebugger.cpp22 int32 rectCount = region->CountRects();
23 for (int32 i = 0; i < rectCount; i++) {
/haiku/src/tools/html5_remote_desktop/
H A DHaikuRemoteDesktop.js1267 var rectCount = remoteMessage.dataView.readUint32();
1268 this.clipRects = new Array(rectCount);
1269 for (var i = 0; i < rectCount; i++)
1318 var rectCount = remoteMessage.dataView.readUint32();
1319 for (var i = 0; i < rectCount; i++) {
1694 var rectCount = remoteMessage.dataView.readUint32();
1695 var rects = new Array(rectCount);
1696 for (var i = 0; i < rectCount; i++)
1706 for (var i = 0; i < rectCount; i++)
1968 var rectCount
[all...]
/haiku/src/apps/remotedesktop/
H A DRemoteView.cpp780 int32 rectCount; local
786 message.Read(rectCount);
787 for (int32 i = 0; i < rectCount; i++) {
/haiku/src/servers/app/
H A DServerWindow.cpp2145 int32 rectCount; local
2146 status_t status = link.Read<int32>(&rectCount);
2155 if (rectCount >= 0) {
2158 if (rectCount > 0 && link.ReadRegion(&region) < B_OK)
2164 Title(), fCurrentView->Name(), rectCount,
3940 int32 rectCount; local
3941 status_t status = link.Read<int32>(&rectCount);
3950 if (rectCount >= 0) {
3953 if (rectCount > 0 && link.ReadRegion(&region) < B_OK)
/haiku/src/kits/interface/
H A DRegionSupport.cpp376 register int rectCount,
379 while ((rectCount--) && (rect->bottom <= y))
374 IndexRects( register clipping_rect *rect, register int rectCount, register int y) argument

Completed in 114 milliseconds