Searched refs:right (Results 76 - 100 of 627) sorted by relevance

1234567891011>>

/haiku/src/libs/alm/
H A DArea.cpp44 * Gets the right tab of the area.
46 * @return the right tab of the area
95 * Sets the right tab of the area.
97 * @param right the right tab of the area
100 Area::SetRight(BReference<XTab> right) argument
102 fRight = right;
158 * Gets the column that defines the left and right tabs.
241 Area::GetInsets(float* left, float* top, float* right, float* bottom) const argument
247 if (right)
337 SetInsets(float left, float top, float right, float bottom) argument
380 SetRightInset(float right) argument
536 _Init(LinearSpec* ls, XTab* left, YTab* top, XTab* right, YTab* bottom, RowColumnManager* manager) argument
[all...]
/haiku/src/libs/print/libprint/
H A DMarginView.cpp137 r.right -= (fMargins.right / fPageWidth) * pageWidth;
299 float right = atof(fRight->Text()); local
308 right *= kInchUnits;
315 right *= kCMUnits;
323 margin.Set(left, top, right, bottom);
420 //right
422 str << fMargins.right/fUnitValue;
423 fRight = new BTextControl("right", "Right:", str.String(), NULL);
532 float right local
599 str << right; local
[all...]
H A DHalftoneView.cpp20 const float right = Bounds().Width(); local
22 BRect rect(0, 0, right, bottom);
41 for (int x = 0; x <= right; x ++) {
160 r.right = r.left + size;
167 r.right = r.left + size;
174 r.right = r.left + size;
181 r.right = r.left + size;
186 r.right -= max;
/haiku/src/add-ons/kernel/drivers/network/ether/usb_asix/
H A DDriver.cpp93 int right = B_COUNT_OF(gSupportedDevices); local
94 while ((right - left) > 1) {
95 int i = (left + right) / 2;
96 ((gSupportedDevices[i].Key() < id) ? left : right) = i;
99 if (gSupportedDevices[right].Key() == id) {
100 switch (gSupportedDevices[right].fType) {
102 return new AX88172Device(device, gSupportedDevices[right]);
106 return new AX88772Device(device, gSupportedDevices[right]);
108 return new AX88178Device(device, gSupportedDevices[right]);
111 static_cast<int>(gSupportedDevices[right]
[all...]
/haiku/src/add-ons/media/media-add-ons/radeon/
H A DCapture.h52 void SetClip(int left, int top, int right, int bottom);
56 void SetVBIClip(int left, int top, int right, int bottom);
/haiku/src/apps/icon-o-matic/generic/gui/
H A DSwatchView.cpp89 BPoint(r.right, r.top), kDottedBig);
91 // right/bottom
100 StrokeLine(BPoint(r.right, r.top + 1),
101 BPoint(r.right, r.bottom), kDottedBig);
102 StrokeLine(BPoint(r.right - 1, r.bottom),
245 AddLine(BPoint(r.left + 1, r.top), BPoint(r.right, r.top), leftTop);
246 AddLine(BPoint(r.right, r.top + 1), BPoint(r.right, r.bottom),
248 AddLine(BPoint(r.right - 1, r.bottom), BPoint(r.left, r.bottom),
/haiku/src/bin/rc/tests/
H A Dbuiltin.rdef17 float right,
/haiku/src/kits/interface/
H A DGridLayoutBuilder.cpp103 BGridLayoutBuilder::SetInsets(float left, float top, float right, float bottom) argument
105 fLayout->SetInsets(left, top, right, bottom);
H A DSplitLayoutBuilder.cpp86 BSplitLayoutBuilder::SetInsets(float left, float top, float right, float bottom) argument
88 fView->SetInsets(left, top, right, bottom);
H A DControlLook.cpp80 dest.left = dest.right = points[0].x;
84 dest.right = std::max(dest.right, points[i].x);
89 dest.right = ceilf(dest.right);
113 float left, top, right, bottom; local
114 GetBackgroundInsets(backgroundType, flags, left, top, right, bottom);
118 _right += right;
H A DRegion.cpp135 fBounds.right - 1, fBounds.bottom - 1);
143 fBounds.right - 1, fBounds.bottom - 1 };
159 return BRect(r.left, r.top, r.right - 1, r.bottom - 1);
179 return (clipping_rect){ r.left, r.top, r.right - 1, r.bottom - 1 };
250 i, rect->left, rect->top, rect->right - 1, rect->bottom - 1);
325 clipping.right++;
362 clipping.right++;
492 (int)ceilf(rect.right), (int)ceilf(rect.bottom) };
500 (int)ceilf(rect.right) + 1, (int)ceilf(rect.bottom) + 1 };
508 rect.right
[all...]
/haiku/src/tests/servers/app/benchmark/
H A DRandomLineTest.cpp58 a.x = random_number_between(fViewBounds.left, fViewBounds.right);
61 b.x = random_number_between(fViewBounds.left, fViewBounds.right);
/haiku/src/servers/app/drawing/Painter/bitmap_painter/
H A DDrawBitmapNoScale.h35 const int32 right = (int32)destinationRect.right; local
41 || right - offset.x >= (int32)srcBuffer.width()
49 right - offset.x, bottom - offset.y,
63 fRect.right = min_c(baseRenderer.xmax(), right);
64 if (fRect.left <= fRect.right) {
76 srcHandle, fRect.right - fRect.left + 1);
H A DBitmapPainter.cpp46 // It has the right size, but put it at B_ORIGIN
69 fBitmapBounds.right, fBitmapBounds.bottom);
72 sourceRect.right, sourceRect.bottom);
75 destinationRect.right, destinationRect.bottom);
204 // the destination rect with the right scale
215 if (sourceRect.right > fBitmapBounds.right) {
216 float diff = sourceRect.right - fBitmapBounds.right;
217 fDestinationRect.right
[all...]
/haiku/src/apps/deskbar/
H A DCalendarMenuWindow.cpp60 const float x = (updateRect.right - stringWidth) / 2.0f;
141 float right = screen.right; local
144 BRect rightTop(right / 2.0, screen.top, right, bottom / 2.0);
145 BRect rightBottom(right / 2.0, bottom / 2.0, right + 1.0, bottom + 1.0);
146 BRect leftBottom(screen.left, bottom / 2.0, right / 2.0, bottom + 1.0);
/haiku/src/apps/pulse/
H A DProgressBar.cpp157 StrokeLine(BPoint(frame.left, frame.top), BPoint(frame.right, frame.top));
158 StrokeLine(BPoint(frame.left, frame.top + 1), BPoint(frame.right,
166 StrokeLine(BPoint(frame.right-1, frame.top + 2),
167 BPoint(frame.right - 1, frame.bottom));
168 StrokeLine(BPoint(frame.right, frame.top + 1),
169 BPoint(frame.right, frame.bottom));
171 BPoint(frame.right - 1, frame.bottom - 1));
173 BPoint(frame.right, frame.bottom));
/haiku/src/apps/cortex/DormantNodeView/
H A DDormantNodeListItem.cpp109 r.right = r.left + B_MINI_ICON - 1.0;
119 r.right = r.left + Width();
200 r.right = r.left + B_MINI_ICON + 2 * M_ICON_H_MARGIN;
201 r.right += font->StringWidth(m_info.name);
204 r.right = font->StringWidth(m_info.name);
205 r.right += B_MINI_ICON + 2 * M_ICON_H_MARGIN + 5.0;
239 r.right = r.left + B_MINI_ICON - 1.0;
246 r.right = r.left + Width();
/haiku/src/tools/translation/inspector/
H A DInfoWindow.cpp43 rctframe.right -= B_V_SCROLL_BAR_WIDTH;
79 rcttext.right = rcttext.left + (width - B_V_SCROLL_BAR_WIDTH);
/haiku/src/tests/add-ons/print/pdf/bezierbounds/
H A DBezierBounds.cpp40 bounds.right = max_c(bounds.right, points->x);
/haiku/src/apps/processcontroller/
H A DUtilities.cpp160 frame.right = frame.left + width;
164 if (frame.right > screen.right)
165 window->MoveBy(screen.right-frame.right, 0);
185 rect.left = frame.right - kMargin - kBarWidth;
186 rect.right = frame.right - kMargin;
/haiku/headers/libs/alm/
H A DArea.h60 void SetRight(BReference<XTab> right);
75 void GetInsets(float* left, float* top, float* right,
84 void SetInsets(float left, float top, float right,
88 void SetRightInset(float right);
107 XTab* left, YTab* top, XTab* right,
/haiku/src/apps/icon-o-matic/generic/gui/popup_control/
H A DPopupControl.cpp102 frame.right = frame.left + dest.Width();
112 if (frame.right > dest.right)
113 hOffset = dest.right - frame.right;
/haiku/src/apps/showimage/
H A DSelectionBox.cpp88 bounds.right = where.x;
131 // rotate to right
151 view->StrokeLine(BPoint(r.left, r.top), BPoint(r.right, r.top),
153 view->StrokeLine(BPoint(r.right, r.top + 1), BPoint(r.right, r.bottom - 1),
155 view->StrokeLine(BPoint(r.left, r.bottom), BPoint(r.right, r.bottom),
/haiku/src/apps/resedit/
H A DResFields.cpp52 drawrect.right = drawrect.left +
67 stringrect.right -= 10;
68 stringrect.left = stringrect.right - parent->StringWidth(out.String());
69 if (stringrect.left < drawrect.right + 5)
70 stringrect.left = drawrect.right + 5;
/haiku/headers/private/shared/
H A DVariant.h42 inline BVariant(float left, float top, float right,
65 inline void SetTo(float left, float top, float right,
135 void _SetTo(float left, float top, float right,
165 float right; member in struct:BVariant::__anon1170::__anon1171
249 _SetTo(value.left, value.top, value.right, value.bottom);
253 BVariant::BVariant(float left, float top, float right, float bottom) argument
255 _SetTo(left, top, right, bottom);
399 _SetTo(value.left, value.top, value.right, value.bottom);
404 BVariant::SetTo(float left, float top, float right, float bottom) argument
407 _SetTo(left, top, right, botto
[all...]

Completed in 264 milliseconds

1234567891011>>