Searched refs:height (Results 126 - 150 of 1081) sorted by relevance

1234567891011>>

/haiku-fatelf/src/apps/processcontroller/
H A DThreadBarMenuItem.h32 virtual void GetContentSize(float* width, float* height);
/haiku-fatelf/src/apps/pulse/
H A DMiniPulseView.h26 void FrameResized(float width, float height);
/haiku-fatelf/src/preferences/mail/
H A DCenterContainer.cpp34 void CenterContainer::FrameResized(float width,float height) argument
40 void CenterContainer::GetPreferredSize(float *width, float *height) argument
48 if (height)
49 *height = fHeight;
/haiku-fatelf/src/servers/app/drawing/
H A DMallocBuffer.h13 uint32 height);
/haiku-fatelf/src/tests/apps/miniterminal/
H A DViewBuffer.h7 typedef void (*resize_callback)(int32 width, int32 height, void *data);
16 status_t GetSize(int32 *width, int32 *height);
23 void FillGlyph(int32 x, int32 y, int32 width, int32 height, uint8 glyph, uint8 attr);
31 void Blit(int32 srcx, int32 srcy, int32 width, int32 height, int32 destx, int32 desty);
/haiku-fatelf/src/tools/translation/inspector/
H A DActiveTranslatorsWindow.h43 void FrameResized(float width, float height);
/haiku-fatelf/src/add-ons/print/drivers/pcl6/
H A DPCL6.h42 int x, int y, int width, int height, int deltaRowSize);
43 void _StartRasterGraphics(int x, int y, int width, int height,
47 int dataSize, int rowSize, int height,
/haiku-fatelf/src/add-ons/print/drivers/pdf/source/
H A DBookmark.h30 Outline(BPoint start, float height, const char* text, Definition* definition) : fStart(start), fHeight(height), fText(text), fDefinition(definition) { } argument
56 void AddBookmark(BPoint start, float height, const char* text, BFont* font);
/haiku-fatelf/src/bin/less/
H A Dscrsize.c72 win_attributes.height -= hints.base_height;
76 win_attributes.height -= hints.min_height;
79 *p_height = win_attributes.height / hints.height_inc;
/haiku-fatelf/src/libs/pdflib/bind/pdflib/python/
H A Dquickreference.py15 height = 770.0 variable
48 PDF_begin_page(p, width, height)
63 width/maxcol*col, (row + 1) * height/maxrow, optlist)
/haiku-fatelf/src/add-ons/accelerants/vesa/
H A Dhooks.cpp57 uint16 height)
59 debug_printf("allocate_overlay_buffer(width %u, height %u, colorSpace %u)\n",
60 width, height, colorSpace);
68 buffer->height = height;
104 constraints->view.height.min = 4;
106 constraints->view.height.max = buffer->height;
115 constraints->window.height.min = 2;
116 constraints->window.height
56 vesa_allocate_overlay_buffer(color_space colorSpace, uint16 width, uint16 height) argument
167 vesa_set_cursor_shape(uint16 width, uint16 height, uint16 hotX, uint16 hotY, const uint8* andMask, const uint8* xorMask) argument
175 vesa_set_cursor_bitmap(uint16 width, uint16 height, uint16 hotX, uint16 hotY, color_space colorSpace, uint16 bytesPerRow, const uint8* bitmapData) argument
[all...]
/haiku-fatelf/src/documentation/docbook-xsl/slides/browser/
H A DxbStyle-css.js166 function cssStyleSetClipHeight(height)
170 rect.setHeight(height);
416 var height = this.getEffectiveValue('height');
418 if (typeof(height) == 'number')
421 return height;
424 if (height == '' || height == 'auto' || height.indexOf('%') != -1)
428 height
[all...]
/haiku-fatelf/src/kits/interface/
H A DToolTipManager.cpp42 virtual void FrameResized(float width, float height);
108 ToolTipView::FrameResized(float width, float height) argument
194 if (size.height > where.y - screenFrame.top
196 size.height = where.y - offset.y - screenFrame.top;
197 } else if (size.height > screenFrame.bottom - where.y
199 size.height = screenFrame.bottom - where.y - offset.y;
245 location.y = where.y - size.height - offset.y;
253 location.y -= size.height / 2 - offset.y;
256 else if (location.y + size.height > screenFrame.bottom)
257 location.y = screenFrame.bottom - size.height;
[all...]
/haiku-fatelf/src/system/boot/arch/arm/
H A Darch_framebuffer_omap3.cpp50 status_t SetVideoMode(int width, int height, int depth);
63 short width, height; member in struct:video_mode
251 && h <= modes[i].height)
260 setreg(DISPC, DISPC_SIZE_LCD, (m->width - 1) | ((m->height - 1) << 16));
278 omap_attach_framebuffer(addr_t data, int width, int height, int depth) argument
281 uint32 gsize = ((height - 1) << 16) | (width - 1);
283 dprintf("omap3: attach bitmap (%d,%d) to screen\n", width, height);
341 gKernelArgs.frame_buffer.height = 768;
345 * gKernelArgs.frame_buffer.height
349 gKernelArgs.frame_buffer.height, gKernelArg
356 SetVideoMode(int width, int height, int depth) argument
[all...]
/haiku-fatelf/src/add-ons/accelerants/3dfx/
H A D3dfx_overlay.cpp57 if (window->height > buffer->height)
78 // Subtract 1 from height to eliminate junk on last line of image.
80 int32 dudy = ((buffer->height - 1) << 20) / window->height;
86 int32 y2 = y1 + window->height - 1;
/haiku-fatelf/src/add-ons/accelerants/common/
H A Dcompute_display_timing.cpp140 compute_display_timing(uint32 width, uint32 height, float refresh, argument
143 if (width < 320 || height < 200 || width > 65536 || height > 65536
162 float verticalLines = interlaced ? (double)height / 2.0 : (double)height;
/haiku-fatelf/src/add-ons/translators/webp/libwebp/enc/
H A Dpicture.c26 const int height = picture->height; local
28 const int uv_height = (height + 1) / 2;
29 const uint64_t y_size = (uint64_t)width * height;
65 for (y = 0; y < dst->height; ++y) {
68 for (y = 0; y < (dst->height + 1) / 2; ++y) {
78 int left, int top, int width, int height) {
83 if (width <= 0 || height <= 0) return 0;
85 if (top < 0 || ((top + height + 1) & ~1) > pic->height) retur
77 WebPPictureCrop(WebPPicture* const pic, int left, int top, int width, int height) argument
267 Encode(const uint8_t* rgb, int width, int height, int stride, Importer import, float quality_factor, uint8_t** output) argument
[all...]
/haiku-fatelf/src/apps/webwatch/
H A DWatchView.cpp102 font_height height; // center the text horizontally local
103 GetFontHeight(&height); // and vertically in the Deskbar
107 float y = height.ascent
108 + (rect.Height() - (height.ascent + height.descent))/2;
/haiku-fatelf/src/tests/kits/interface/flatten_picture/
H A DTestResultItem.cpp103 float height = 0.0; local
112 height = fBitmapSize.Height();
116 height += 4;
121 if (height > Height())
122 SetHeight(height);
/haiku-fatelf/src/add-ons/accelerants/ati/
H A Doverlay.cpp48 AllocateOverlayBuffer(color_space colorSpace, uint16 width, uint16 height) argument
52 TRACE("AllocateOverlayBuffer() width %u, height %u, colorSpace 0x%lx\n",
53 width, height, colorSpace);
58 if (height > 2048 || width > 768
83 uint32 buffSize = (width * bytesPerPixel * height + 0x3ff) & ~0x3ff;
144 ovBuff->height = height;
222 constraints->view.height.min = 4;
224 constraints->view.height.max = buffer->height;
[all...]
/haiku-fatelf/src/add-ons/print/drivers/pcl5/
H A DPCL5.cpp103 int height = rc.bottom - rc.top + 1; local
110 if (y + height > pageHeight)
111 height = pageHeight - y;
113 rc.bottom = height - 1;
115 DBGMSG(("height = %d\n", height));
130 int height = rc.bottom - rc.top + 1; local
137 DBGMSG(("height = %d\n", height));
160 _StartRasterGraphics(width, height);
255 _StartRasterGraphics(int width, int height) argument
[all...]
/haiku-fatelf/src/apps/deskbar/
H A DCalendarMenuWindow.cpp102 float width, height; local
103 fMonthLabel->GetPreferredSize(&width, &height);
106 .Add(_SetupButton("-", kMonthDownMessage, height), 0, 0)
108 .Add(_SetupButton("+", kMonthUpMessage, height), 2, 0)
110 .Add(_SetupButton("-", kYearDownMessage, height), 4, 0)
112 .Add(_SetupButton("+", kYearUpMessage, height), 6, 0)
153 where.y -= (size.height + 4.0);
156 where.y -= (size.height + 4.0);
244 CalendarMenuWindow::_SetupButton(const char* label, uint32 what, float height) argument
247 button->SetExplicitMinSize(BSize(height, heigh
[all...]
H A DBarMenuBar.cpp81 TBarMenuBar::SmartResize(float width, float height) argument
83 if (width == -1.0f && height == -1.0f) {
86 height = frame.Height();
88 ResizeTo(width, height);
93 fDeskbarMenuItem->SetWidthHeight(width - kSepItemWidth, height);
97 fDeskbarMenuItem->SetWidthHeight(width / count, height);
99 fAppListMenuItem->SetWidthHeight(width / count, height);
/haiku-fatelf/src/add-ons/accelerants/matrox/engine/
H A Dmga_bes.c131 /* height < 2 is not allowed */
142 /* height < 2 is not allowed */
143 if (si->overlay.ow.height < 2)
150 if ((si->overlay.ow.v_start + si->overlay.ow.height - 1) > (crtc_vend - 1))
157 if ((si->overlay.ow.v_start + si->overlay.ow.height - 1) < (crtc_vstart + 1))
159 /* height < 2 is not allowed */
165 temp2 = ((uint16)(si->overlay.ow.v_start + si->overlay.ow.height - crtc_vstart - 1)) & 0x7ff;
281 if ((si->overlay.ow.v_start + si->overlay.ow.height - 1) < (crtc_vstart + 1))
284 * (integer part of ('total height - 2' of dest. picture in pixels * inverse scaling factor)) *
286 moi->v1srcstv = (si->overlay.ow.height
[all...]
/haiku-fatelf/src/libs/glut/
H A DglutInit.cpp174 int flags, x, y, width, height; local
176 /* Fix bogus "{width|height} may be used before set"
179 height = 0;
182 (unsigned int *) &width, (unsigned int *) &height);
191 height windows */
192 if (height > 0)
193 gState.initHeight = height;
262 void glutInitWindowSize(int width, int height) { argument
264 gState.initHeight = height;

Completed in 272 milliseconds

1234567891011>>