Searched refs:width (Results 51 - 75 of 1334) sorted by relevance

1234567891011>>

/haiku-fatelf/src/libs/ncurses/ncurses/trace/
H A Dlib_tracedmp.c51 int i, j, n, width; local
53 /* compute narrowest possible display width */
54 for (width = i = 0; i <= win->_maxy; ++i) {
64 if (n > width)
65 width = n;
67 if (width < win->_maxx)
68 ++width;
69 if (++width + 1 > (int) used) {
70 used = 2 * (width + 1);
83 for (j = 0; j < width;
[all...]
/haiku-fatelf/src/apps/cortex/ParameterView/
H A DParameterContainerView.cpp118 float width,
122 BView::FrameResized(width, height);
130 // fprintf(stderr, "m: %.1f,%.1f c: %.1f,%.1f)\n", width, height, b.Width(),b.Height());
137 if(width > m_boundsRect.Width()) {
139 m_boundsRect.right, m_boundsRect.top, m_boundsRect.left+width, m_boundsRect.bottom));
171 float width = Bounds().Width() - B_V_SCROLL_BAR_WIDTH; local
174 D_INTERNAL((" -> dataRect.Width() = %f scrollView.Width() = %f\n", m_dataRect.Width(), width));
175 if (width > m_dataRect.Width()) {
182 m_hScroll->SetRange(m_dataRect.left, m_dataRect.right - width);
183 m_hScroll->SetProportion(width / m_dataRec
117 FrameResized( float width, float height) argument
[all...]
/haiku-fatelf/src/apps/expander/
H A DDirectoryFilePanel.cpp80 float width = be_plain_font->StringWidth( local
82 rect.left = width > 75 ? rect.right - width : rect.right - 75;
115 // maximum width is dictated by the window's size limits
123 float width, height; local
124 fCurrentButton->GetPreferredSize(&width, &height);
125 if (width > maxWidth)
126 width = maxWidth;
127 fCurrentButton->ResizeTo(width, oldBounds.Height());
128 fCurrentButton->MoveBy(oldBounds.Width() - width,
[all...]
/haiku-fatelf/src/libs/print/libgutenprint/src/foomatic/
H A Dprinter_margins.c49 int width, height, bottom, left, top, right; local
82 width = papersize->width;
87 stp_get_media_size(pv, &width, &height);
92 if (right > width)
93 right = width;
104 right = width - right;
106 width = 0;
118 printf(" 'width' => '%d',", width);
[all...]
/haiku-fatelf/src/system/libroot/posix/stdio/
H A Dvfscanf.c99 register size_t width; /* field width, or 0 */ local
131 width = 0;
172 width = width * 10 + c - '0';
310 if (width == 0)
311 width = 1;
315 if ((n = fp->_r) < width) {
317 width -= n;
325 sum += width;
[all...]
/haiku-fatelf/src/tests/kits/interface/flatten_picture/
H A DTestResultItem.cpp102 float width = 0.0; local
105 width += font->StringWidth(fName.String());
106 width += distance;
107 width += font->StringWidth(fErrorMessage.String());
109 width += 3 * distance;
110 width += 3 * fBitmapSize.Width();
115 width += 4;
118 if (width > Width())
119 SetWidth(width);
/haiku-fatelf/src/apps/deskbar/
H A DTeamMenuItem.h55 float width = -1.0f, float height = -1.0f,
57 TTeamMenuItem(float width = -1.0f, float height = -1.0f,
63 void SetOverrideWidth(float width);
81 void GetContentSize(float* width, float* height);
89 float width = -1.0f, float height = -1.0f,
/haiku-fatelf/src/system/boot/platform/generic/
H A Dvideo_blit.cpp29 blit32(addr_t frameBuffer, const uint8 *data, uint16 width, argument
38 for (int32 x = 0; x < width; x++) {
52 blit24(addr_t frameBuffer, const uint8 *data, uint16 width, argument
61 for (int32 x = 0; x < width; x++) {
76 blit16(addr_t frameBuffer, const uint8 *data, uint16 width, argument
85 for (int32 x = 0; x < width; x++) {
101 blit15(addr_t frameBuffer, const uint8 *data, uint16 width, argument
110 for (int32 x = 0; x < width; x++) {
126 blit8(addr_t frameBuffer, const uint8 *data, uint16 width, argument
137 &data[i * imageWidth], width);
143 blit4(addr_t frameBuffer, const uint8 *data, uint16 width, uint16 height, uint16 imageWidth, uint16 left, uint16 top) argument
155 video_blit_image(addr_t frameBuffer, const uint8 *data, uint16 width, uint16 height, uint16 imageWidth, uint16 left, uint16 top) argument
[all...]
/haiku-fatelf/headers/private/kernel/
H A Dframe_buffer_console.h22 int32 width; member in struct:frame_buffer_boot_info
34 status_t frame_buffer_update(addr_t baseAddress, int32 width, int32 height,
39 status_t _user_frame_buffer_update(addr_t baseAddress, int32 width,
/haiku-fatelf/src/apps/networkstatus/
H A DWirelessNetworkMenuItem.cpp50 WirelessNetworkMenuItem::GetContentSize(float* width, float* height) argument
52 BMenuItem::GetContentSize(width, height);
53 *width += *height + 4;
/haiku-fatelf/src/apps/serialconnect/
H A DTermView.h21 void FrameResized(float width, float height);
22 void GetPreferredSize(float* width, float* height);
30 BRect GlyphsToPixels(const int width, const int height) const;
/haiku-fatelf/src/apps/terminal/
H A DTerminalBuffer.h19 status_t Init(int32 width, int32 height,
31 virtual status_t ResizeTo(int32 width, int32 height);
32 virtual status_t ResizeTo(int32 width, int32 height,
/haiku-fatelf/src/kits/interface/
H A DSpaceLayoutItem.cpp25 size.width = BControlLook::ComposeSpacing(size.width);
77 BSpaceLayoutItem::CreateHorizontalStrut(float width) argument
80 BSize(width, -1),
81 BSize(width, B_SIZE_UNLIMITED),
82 BSize(width, -1),
130 fMinSize.width = size.width;
142 fMaxSize.width = size.width;
[all...]
/haiku-fatelf/src/kits/tracker/
H A DOverrideAlert.h59 button_width width = B_WIDTH_AS_USUAL,
65 button_width width, button_spacing spacing,
71 static BPoint OverPosition(float width, float height);
/haiku-fatelf/headers/libs/agg/
H A Dagg_rendering_buffer_dynarow.h62 rendering_buffer_dynarow(unsigned width, unsigned height, argument
65 m_width(width),
74 void init(unsigned width, unsigned height, unsigned byte_width) argument
81 if(width && height)
83 m_width = width;
92 unsigned width() const { return m_width; } function in class:agg::rendering_buffer_dynarow
/haiku-fatelf/src/apps/cortex/InfoView/
H A DInfoWindow.cpp74 float width,
99 float width,
113 float width, height; local
114 FindView("InfoView")->GetPreferredSize(&width, &height);
115 width += B_V_SCROLL_BAR_WIDTH;
116 ResizeTo(width, height);
73 FrameResized( float width, float height) argument
97 Zoom( BPoint origin, float width, float height) argument
/haiku-fatelf/headers/private/kernel/boot/platform/generic/
H A Dvideo.h19 uint16 width, uint16 height, uint16 imageWidth,
24 uint16 width, uint16 height, uint16 imageWidth,
/haiku-fatelf/src/apps/debuganalyzer/gui/table/
H A DTableColumn.cpp11 TableColumn::TableColumn(int32 modelIndex, float width, float minWidth, argument
15 fWidth(width),
/haiku-fatelf/src/apps/icon-o-matic/generic/gui/
H A DGroup.h23 virtual void FrameResized(float width, float height);
24 virtual void GetPreferredSize(float* width, float* height);
/haiku-fatelf/src/apps/pairs/
H A DPairsWindow.h24 void SetGameSize(int width, int height);
27 void _MakeGameView(int width, int height);
/haiku-fatelf/src/documentation/docbook-xsl/extensions/xalan2/com/nwalsh/xalan/
H A DImageIntrinsics.java38 int width = -1; field in class:ImageIntrinsics
47 width = image.getWidth(this);
49 while (!imageFailed && (width == -1 || depth == -1)) {
55 width = image.getWidth(this);
111 if (width >= 0) {
112 return width;
139 width = corners[2] - corners[0];
144 int x, int y, int width, int height) {
150 // I really only care about the width and height, but if I return false as
143 imageUpdate(Image img, int infoflags, int x, int y, int width, int height) argument
/haiku-fatelf/src/documentation/docbook-xsl/extensions/xalan27/src/com/nwalsh/xalan/
H A DImageIntrinsics.java38 int width = -1; field in class:ImageIntrinsics
47 width = image.getWidth(this);
49 while (!imageFailed && (width == -1 || depth == -1)) {
55 width = image.getWidth(this);
111 if (width >= 0) {
112 return width;
139 width = corners[2] - corners[0];
144 int x, int y, int width, int height) {
150 // I really only care about the width and height, but if I return false as
143 imageUpdate(Image img, int infoflags, int x, int y, int width, int height) argument
/haiku-fatelf/src/libs/pdflib/libs/pdflib/
H A Dp_template.c25 PDF_begin_template(PDF *p, float width, float height) argument
32 (void *) p, width, height))
37 if (width <= 0)
38 pdc_error(p->pdc, PDC_E_ILLARG_POSITIVE, "width", 0, 0, 0);
53 image->width = width;
57 p->width = width;
80 pdc_printf(p->out, "/BBox[0 0 %f %f]\n", p->width, p->height);
/haiku-fatelf/src/tests/kits/opengl/demos/gears/
H A Dgears.c42 width - width of gear
49 gear(GLfloat inner_radius, GLfloat outer_radius, GLfloat width, argument
71 glVertex3f(r0 * cos(angle), r0 * sin(angle), width * 0.5);
72 glVertex3f(r1 * cos(angle), r1 * sin(angle), width * 0.5);
74 glVertex3f(r0 * cos(angle), r0 * sin(angle), width * 0.5);
75 glVertex3f(r1 * cos(angle + 3 * da), r1 * sin(angle + 3 * da), width * 0.5);
86 glVertex3f(r1 * cos(angle), r1 * sin(angle), width * 0.5);
87 glVertex3f(r2 * cos(angle + da), r2 * sin(angle + da), width * 0.5);
88 glVertex3f(r2 * cos(angle + 2 * da), r2 * sin(angle + 2 * da), width * 0.
317 reshape(int width, int height) argument
[all...]
/haiku-fatelf/src/add-ons/opengl/swpipe/
H A Dbitmap_wrapper.h25 Bitmap* create_bitmap(int32 width, int32 height, color_space colorSpace);
28 void get_bitmap_size(const Bitmap* bitmap, int32* width, int32* height);

Completed in 192 milliseconds

1234567891011>>