Searched refs:right (Results 101 - 125 of 627) sorted by relevance

1234567891011>>

/haiku/headers/libs/agg/
H A Dagg_rasterizer_compound_aa.h48 int16 left, right; member in struct:agg::cell_style_aa
57 right = -1;
63 right = c.right;
68 return (ex - x) | (ey - y) | (left - c.left) | (right - c.right);
130 void styles(int left, int right);
336 void rasterizer_compound_aa<Clip>::styles(int left, int right) argument
341 cell.right = (int16)right;
[all...]
/haiku/src/tests/servers/app/bitmap_drawing/
H A Dmain.cpp200 BRect topOfBitmap(updateRect.left, updateRect.top, updateRect.right, fBitmapRect.top - 1);
208 BRect rightOfBitmap(fBitmapRect.right + 1, fBitmapRect.top, updateRect.right, fBitmapRect.bottom);
212 BRect bottomOfBitmap(updateRect.left, fBitmapRect.bottom + 1, updateRect.right, updateRect.bottom);
304 fBitmapRect.right,
310 fBitmapRect.right + offset.x,
316 fBitmapRect.right,
322 fBitmapRect.right + offset.x,
328 fBitmapRect.right,
334 fBitmapRect.right,
[all...]
/haiku/src/add-ons/decorators/WinDecorator/
H A DWinDecorator.cpp71 frame.left, frame.top, frame.right, frame.bottom));
235 ((fFrame.right - fFrame.left) < 32.0 ?
236 fFrame.left + 32.0 : fFrame.right) + 1,
248 tab->zoomRect.right -= buttonsInset;
250 tab->zoomRect.left = tab->zoomRect.right - tabSize + buttonsInset;
373 closeRect.IsValid() ? closeRect.left : tabRect.right) - 5)
427 BRect minimizeBox(rect.left + 5, rect.bottom - 4, rect.right - 5,
457 zoomBox.right--;
481 STRACE(("_DrawClose(%f, %f, %f, %f)\n", rect.left, rect.top, rect.right,
491 closeBox.right
[all...]
/haiku/src/add-ons/kernel/drivers/network/ether/usb_davicom/
H A DDriver.cpp67 int right = B_COUNT_OF(gSupportedDevices); local
68 while ((right - left) > 1) {
69 int i = (left + right) / 2;
70 ((gSupportedDevices[i].Key() < id) ? left : right) = i;
73 if (gSupportedDevices[right].Key() == id)
74 return new DavicomDevice(device, gSupportedDevices[right]);
76 TRACE_ALWAYS("Search for %#x failed %d-%d.\n", id, left, right);
/haiku/src/apps/icon-o-matic/generic/gui/popup_control/
H A DPopupSlider.cpp76 fSliderButtonRect.right = fSliderButtonRect.left + sliderWidth + 2.0;
80 fSliderButtonRect.OffsetTo(Bounds().right - fSliderButtonRect.Width(),
99 fSliderButtonRect.OffsetTo(Bounds().right - fSliderButtonRect.Width(),
119 fSliderButtonRect.OffsetTo(Bounds().right - fSliderButtonRect.Width(),
138 r.right = fSliderButtonRect.left - 1.0;
285 BPoint(frame.right, frame.top), lightShadow);
286 AddLine(BPoint(frame.right, frame.top + 1.0),
287 BPoint(frame.right, frame.bottom), darkShadow);
288 AddLine(BPoint(frame.right - 1.0, frame.bottom),
/haiku/src/add-ons/print/drivers/preview/
H A DPageSetupWindow.cpp136 margin.right = page.right - margin.right;
239 MoveTo((screenFrame.right - winFrame.right) / 2,
275 margin.right = w - margin.right;
278 margin.right = h - margin.right;
/haiku/src/apps/icon-o-matic/generic/support/
H A Dsupport.h52 int32& left, int32& top, int32& right, int32& bottom)
56 right = (int32)ceilf(r.right);
51 rect_to_int(BRect r, int32& left, int32& top, int32& right, int32& bottom) argument
H A Dsupport_ui.h27 rgb_color right, rgb_color bottom);
/haiku/src/tests/servers/app/draw_after_children/
H A DDrawAfterChildren.cpp84 updateRect.left, updateRect.top, updateRect.right, updateRect.bottom);
98 updateRect.left, updateRect.top, updateRect.right, updateRect.bottom);
160 frame.right = frame.left + frame.Width() / 2 - 10;
/haiku/headers/libs/alm/
H A DColumn.h50 XTab* left, XTab* right);
/haiku/headers/os/interface/
H A DGridLayoutBuilder.h31 BGridLayoutBuilder& SetInsets(float left, float top, float right,
/haiku/src/add-ons/tracker/zipomatic/
H A DZipOMaticWindow.h19 right enumerator in enum:direction
/haiku/src/apps/switcher/
H A DPanelWindow.cpp126 from.x = screenFrame.right;
127 to.x = screenFrame.right - Bounds().Width();
169 frame.right = screenFrame.right;
/haiku/src/kits/interface/layouter/
H A DLayoutOptimizer.h26 bool AddConstraint(int32 left, int32 right,
/haiku/src/tests/kits/interface/
H A DCheckBoxTest.cpp44 rect.right = rect.left + bounds.Width() / 2;
49 rect.left = rect.right + 1;
50 rect.right = bounds.right;
H A DSliderTest.cpp34 rect.right = rect.left + view->Bounds().Width() + 10;
54 rect.right = rect.left + 250;
91 rect.right = rect.left + 100;
104 rect.right = rect.left + 30;
/haiku/src/tests/servers/app/benchmark/
H A DTest.cpp32 for (float x = grid.left; x < grid.right + 5;
/haiku/src/kits/tracker/
H A DOverrideAlert.cpp119 float midX = (desirableRect.left + desirableRect.right) / 2.0f;
123 desirableRect.right = desirableRect.left+width;
130 float midX = (desirableRect.left + desirableRect.right) / 2.0f;
134 desirableRect.right = desirableRect.left + width;
/haiku/src/kits/support/
H A DJobQueue.cpp27 bool operator()(const BJob* left, const BJob* right) const;
37 JobQueue::JobPriorityLess::operator()(const BJob* left, const BJob* right) const
39 int32 difference = left->CountDependencies() - right->CountDependencies();
45 return left->TicketNumber() < right->TicketNumber();
/haiku/src/tests/kits/opengl/glinfo/
H A DGearsView.cpp46 stripeRect.right = kStripeWidth;
/haiku/src/libs/glut/
H A Dglut_stroke.c45 glTranslatef(ch->right, 0.0, 0.0);
/haiku/src/kits/interface/
H A DBox.cpp171 frame.right -= fLayoutData->insets.right;
333 invalid.left = bounds.left + fBounds.right - borderSize;
334 invalid.right = bounds.left + fBounds.right;
339 invalid.left = bounds.left + bounds.right - borderSize;
360 fBounds.right = width;
612 frame.right -= fLayoutData->insets.right;
704 BPoint(rect.right, rec
[all...]
/haiku/src/servers/app/
H A DWorkspacesView.cpp108 rect.right = frame.right;
150 frame.right = frame.right * factor;
160 frame.right = rintf(frame.right);
220 // Shift the tab right
222 tabFrame.right = tabFrame.left + width;
224 if (tabFrame.right > frame.right) {
[all...]
/haiku/src/libs/print/libprint/
H A DPageSetupDlg.cpp102 margin.right = paper.right - margin.right;
283 swap(&paper_rect.right, &paper_rect.bottom);
285 swap(&physical_rect.right, &physical_rect.bottom);
294 printable_rect.right = paper_rect.right - margin.right;
299 printable_rect.right = min_c(printable_rect.right, physical_rec
[all...]
/haiku/src/add-ons/decorators/BeDecorator/
H A DBeDecorator.cpp157 rect.left, rect.top, rect.right, rect.bottom));
335 invalid.right, invalid.bottom));
360 BPoint(r.right - i, r.top + i), colors[i]);
368 BPoint(fTitleBarRect.right - 2,
390 BPoint(r.right - i, r.bottom - i),
394 // right
401 fDrawingEngine->StrokeLine(BPoint(r.right - i, r.top + i),
402 BPoint(r.right - i, r.bottom - i),
419 BPoint(r.right - i, r.top + i), colors[i * 2]);
428 BPoint(fTitleBarRect.right
[all...]

Completed in 193 milliseconds

1234567891011>>