Home
last modified time | relevance | path

Searched refs:width (Results 1 – 25 of 874) sorted by relevance

12345678910>>...35

/AOO41X/main/odk/docs/
H A Dsdk_styles.css40 .table1 { width: 100%;
45 .table2 { width: 100%;
50 .table3 { width: 100%;
55 .table4 { width: 100%;
56 border-width: 2px;
62 .cell15 { width: 15%;
63 border-width: 2px;
70 .cell20 { width: 20%;
71 border-width: 2px;
78 .cell80 { width: 80%;
[all …]
/AOO41X/main/sdext/source/pdfimport/xpdfwrapper/
H A Dpdfioutdev_gpl.cxx158 void writePbm_(OutputBuffer& o_rOutputBuf, Stream* str, int width, int height, bool bWithLinefeed, … in writePbm_() argument
166 int nOutLen = snprintf(&o_rOutputBuf[3], WRITE_BUFFER_SIZE-10, "%d %d", width, height); in writePbm_()
173 const int size = height * ((width + 7) / 8); in writePbm_()
202 int width, in writePpm_() argument
213 int nOutLen = snprintf(&o_rOutputBuf[3], WRITE_BUFFER_SIZE-10, "%d %d", width, height); in writePpm_()
224 const int size = width*height*3 + header_size; in writePpm_()
238 width, in writePpm_()
246 for( int x=0; x<width; ++x) in writePpm_()
264 int width, in writePng_() argument
274 PngHelper::createPng( o_rOutputBuf, str, width, height, zeroColor, oneColor, bIsMask ); in writePng_()
[all …]
H A Dpnghelper.cxx163 void PngHelper::appendIHDR( OutputBuffer& o_rOutputBuf, int width, int height, int depth, int color… in appendIHDR() argument
166 append( width, o_rOutputBuf ); in appendIHDR()
184 int width, in createPng() argument
192 appendIHDR( o_rOutputBuf, width, height, 1, 3 ); in createPng()
218 int nLineSize = (width + 7)/8; in createPng()
243 int width, int height, GfxImageColorMap* colorMap, in createPng() argument
248 appendIHDR( o_rOutputBuf, width, height, 8, 6 ); // RGBA image in createPng()
256 width, in createPng()
263 aScanlines.reserve( width*height*4 + height ); in createPng()
269 for( int x=0; x<width; ++x) in createPng()
[all …]
/AOO41X/main/qadevOOo/tests/java/ifc/sheet/
H A D_XSheetCellCursor.java80 int width = addr.EndColumn - addr.StartColumn + 1 ; in _collapseToCurrentArray() local
84 (leftCol + width - 1) + "," + (topRow + height - 1) + ")" ); in _collapseToCurrentArray()
157 int width = 4, height = 4; in _collapseToCurrentRegion() local
171 if (cols != width || rows != height) { in _collapseToCurrentRegion()
174 + " call Region must have size " + width + "x" + height in _collapseToCurrentRegion()
183 leftCol + width, topRow + height).setValue(1); in _collapseToCurrentRegion()
200 if (cols == width + 1 && rows == height + 1) { in _collapseToCurrentRegion()
205 + " region must have size " + (width+1) + "x" in _collapseToCurrentRegion()
214 oObj.collapseToSize(width, height); in _collapseToCurrentRegion()
225 int width = 1, height = 1 ; in _collapseToMergedArea() local
[all …]
/AOO41X/main/canvas/source/cairo/
H A Dcairo_quartz_cairo.cxx83 QuartzSurface::QuartzSurface( NSView* pView, int x, int y, int width, int height ) : in QuartzSurface() argument
87 …as::cairo::Surface(NSView*, x:%d, y:%d, w:%d, h:%d): New Surface for window", x, y, width, height); in QuartzSurface()
93 if (width == 0 || height == 0) { in QuartzSurface()
94 width = [mpView bounds].size.width; in QuartzSurface()
96 … OSL_TRACE("Canvas::cairo::Surface(): BUG!! size is ZERO! fixing to %d x %d...", width, height); in QuartzSurface()
101 cairo_quartz_surface_create(CAIRO_FORMAT_ARGB32, width, height), in QuartzSurface()
117 QuartzSurface::QuartzSurface( CGContextRef rContext, int x, int y, int width, int height ) : in QuartzSurface() argument
121 …airo::Surface(CGContext:%p, x:%d, y:%d, w:%d, h:%d): New Surface.", rContext, x, y, width, height); in QuartzSurface()
128 mpSurface.reset(cairo_quartz_surface_create_for_cg_context(rContext, width, height), in QuartzSurface()
166 SurfaceSharedPtr QuartzSurface::getSimilar( Content aContent, int width, int height ) const in getSimilar() argument
[all …]
H A Dcairo_xlib_cairo.cxx143 X11Surface::X11Surface( const X11SysData& rSysData, int x, int y, int width, int height ) : in X11Surface() argument
150 width + x, height + y ), in X11Surface()
204 SurfaceSharedPtr X11Surface::getSimilar( Content aContent, int width, int height ) const in getSimilar() argument
229 width > 0 ? width : 1, height > 0 ? height : 1, in getSimilar()
243 pFormat, width, height ), in getSimilar()
251 … cairo_surface_create_similar( mpSurface.get(), aContent, width, height ), in getSimilar()
276 void X11Surface::Resize( int width, int height ) in Resize() argument
278 cairo_xlib_surface_set_size( mpSurface.get(), width, height ); in Resize()
320 int x, int y, int width, int height ) in createSurface() argument
324 x,y,width,height)); in createSurface()
[all …]
/AOO41X/main/vcl/unx/generic/gdi/
H A Dsalgdi3.cxx297 …y *pDisplay, Drawable drawable, Screen *pScreen, XRenderPictFormat *pFormat, int width, int height) in xlib_surface_create_with_xrender_format() argument
298 …mp_xlib_surface_create_with_xrender_format)(pDisplay, drawable, pScreen, pFormat, width, height); } in xlib_surface_create_with_xrender_format()
303 void rectangle(cairo_t *cr, double x, double y, double width, double height) in rectangle() argument
304 { (*mp_rectangle)(cr, x, y, width, height); } in rectangle()
709 if( aXRect.width+aXRect.x > nWidth ) aXRect.width = nWidth-aXRect.x; in DrawServerAAForcedString()
716 aXRect.width = nWidth; in DrawServerAAForcedString()
728 aXRect.x -= nScreenX, aXRect.width += nScreenX; in DrawServerAAForcedString()
729 if( nScreenX+aXRect.width > nScreenW ) in DrawServerAAForcedString()
730 aXRect.width = nScreenW-nScreenX; in DrawServerAAForcedString()
740 if( nXmax >= aXRect.x+aXRect.width ) nXmax = aXRect.x + aXRect.width - 1; in DrawServerAAForcedString()
[all …]
H A Dsalbmp.cxx503 int width = aAttribute.width; in SnapShot() local
511 width = width + x; in SnapShot()
515 if (x > aRootAttribute.width) in SnapShot()
517 width = 0; in SnapShot()
518 x = aRootAttribute.width; in SnapShot()
521 if (x + width > aRootAttribute.width) in SnapShot()
523 width = aRootAttribute.width - x; in SnapShot()
544 if ((width > 0) && (height > 0)) in SnapShot()
547 x, y, width, height, AllPlanes, ZPixmap ); in SnapShot()
568 if (pImage != NULL && pImage->width != 0 && pImage->height != 0 && pImage->depth != 0) in ImplCreateFromXImage()
[all …]
/AOO41X/main/vcl/unx/generic/fontmanager/
H A Dfontconfig.cxx680 width::type convertWidth(int width) in convertWidth() argument
682 if (width == FC_WIDTH_ULTRACONDENSED) in convertWidth()
683 return width::UltraCondensed; in convertWidth()
684 else if (width == FC_WIDTH_EXTRACONDENSED) in convertWidth()
685 return width::ExtraCondensed; in convertWidth()
686 else if (width == FC_WIDTH_CONDENSED) in convertWidth()
687 return width::Condensed; in convertWidth()
688 else if (width == FC_WIDTH_SEMICONDENSED) in convertWidth()
689 return width::SemiCondensed; in convertWidth()
690 else if (width == FC_WIDTH_SEMIEXPANDED) in convertWidth()
[all …]
H A Dfontmanager.cxx175 static width::type parseWidth( const ByteString& rWidth ) in parseWidth()
177 width::type eWidth = width::Unknown; in parseWidth()
180 eWidth = width::SemiExpanded; in parseWidth()
183 eWidth = width::Condensed; in parseWidth()
187 eWidth = width::UltraExpanded; in parseWidth()
190 eWidth = width::Expanded; in parseWidth()
192 eWidth = width::ExtraCondensed; in parseWidth()
194 eWidth = width::SemiCondensed; in parseWidth()
196 eWidth = width::UltraCondensed; in parseWidth()
198 eWidth = width::Normal; in parseWidth()
[all …]
/AOO41X/main/vigra/
H A Dvigra1.6.0.patch109 /** construct image of size width x height, use the specified allocator.
111 - BasicImage(int width, int height, Alloc const & alloc = Alloc())
123 - vigra_precondition((width >= 0) && (height >= 0),
124 - "BasicImage::BasicImage(int width, int height): "
127 "width and height must be >= 0.\n");
129 - resize(width, height, value_type());
159 /** construct image of size width*height and initialize every
164 - BasicImage(int width, int height, value_type const & d, Alloc const & alloc = Alloc())
176 - vigra_precondition((width >= 0) && (height >= 0),
177 - "BasicImage::BasicImage(int width, int height, value_type const & ): "
[all …]
/AOO41X/main/offapi/com/sun/star/awt/
H A DFontWidth.idl33 /** These values are used to specify the width of the characters of a font.
41 /** The width of the font is not specified/known.
47 /** The width of the font is condensed to 50%.
53 /** The width of the font is condensed to 60%.
59 /** The width of the font is condensed to 75%.
65 /** The width of the font is condensed to 90%.
71 /** The width of the font is normal.
77 /** The width of the font is expanded to 110%.
83 /** The width of the font is expanded to 150%.
89 /** The width of the font is expanded to 175%.
[all …]
/AOO41X/main/fpicker/source/aqua/
H A DControlHelper.cxx355 …trol description] UTF8String], frame.origin.x, frame.origin.y, frame.size.width, frame.size.height… in createUserPane()
358 int nControlWidth = frame.size.width; in createUserPane()
381 …d description] UTF8String], tfRect.origin.x, tfRect.origin.y, tfRect.size.width, tfRect.size.heigh… in createUserPane()
383 int tfWidth = tfRect.size.width; in createUserPane()
393 frame.size.width = nControlWidth; in createUserPane()
399 frame.size.width = nControlWidth; in createUserPane()
456 if (currentWidth < minRect.size.width) in createUserPane()
457 currentWidth = minRect.size.width; in createUserPane()
463 …e rect to {%f, %f, %f, %f}",upRect.origin.x, upRect.origin.y, upRect.size.width, upRect.size.heigh… in createUserPane()
818 … %f, %f}",userPaneRect.origin.x, userPaneRect.origin.y, userPaneRect.size.width, userPaneRect.size… in layoutControls()
[all …]
/AOO41X/main/toolkit/source/awt/
H A Dvclxgraphics.cxx400 void VCLXGraphics::drawRect( sal_Int32 x, sal_Int32 y, sal_Int32 width, sal_Int32 height ) throw(un… in drawRect() argument
407 mpOutputDevice->DrawRect( Rectangle( Point( x, y ), Size( width, height ) ) ); in drawRect()
411 void VCLXGraphics::drawRoundedRect( sal_Int32 x, sal_Int32 y, sal_Int32 width, sal_Int32 height, sa… in drawRoundedRect() argument
418 …mpOutputDevice->DrawRect( Rectangle( Point( x, y ), Size( width, height ) ), nHorzRound, nVertRoun… in drawRoundedRect()
460 void VCLXGraphics::drawEllipse( sal_Int32 x, sal_Int32 y, sal_Int32 width, sal_Int32 height ) throw… in drawEllipse() argument
467 mpOutputDevice->DrawEllipse( Rectangle( Point( x, y ), Size( width, height ) ) ); in drawEllipse()
471 void VCLXGraphics::drawArc( sal_Int32 x, sal_Int32 y, sal_Int32 width, sal_Int32 height, sal_Int32 … in drawArc() argument
478 …mpOutputDevice->DrawArc( Rectangle( Point( x, y ), Size( width, height ) ), Point( x1, y1 ), Point… in drawArc()
482 void VCLXGraphics::drawPie( sal_Int32 x, sal_Int32 y, sal_Int32 width, sal_Int32 height, sal_Int32 … in drawPie() argument
489 …mpOutputDevice->DrawPie( Rectangle( Point( x, y ), Size( width, height ) ), Point( x1, y1 ), Point… in drawPie()
[all …]
/AOO41X/main/vcl/inc/vcl/
H A Dfontmanager.hxx65 namespace width namespace
160 width::type m_eWidth;
172 m_eWidth( width::Unknown ), in FastPrintFontInfo()
199 short int width, height; member
201 CharacterMetric() : width( 0 ), height( 0 ) {} in CharacterMetric()
203 { return rOther.width == width && rOther.height == height; } in operator ==()
205 { return rOther.width != width || rOther.height != height; } in operator !=()
274 width::type m_eWidth;
358 width::type eWidth;
519 width::type getFontWidth( fontID nFontID ) const in getFontWidth()
[all …]
/AOO41X/main/vcl/aqua/source/gdi/
H A Dsalnativewidgets.cxx109 aHIRect.size.width = static_cast<float>(aRect.GetWidth()); in ImplGetHIRectFromRectangle()
542 rc.size.width += 2; in drawNativeControl()
557 rc.size.width += 2; in drawNativeControl()
643 rc.size.width -= FOCUS_RING_WIDTH; in drawNativeControl()
681 … case CTRL_RADIOBUTTON: if(rc.size.width >= BUTTON_HEIGHT) aInfo.kind = kThemeRadioButton; in drawNativeControl()
684 case CTRL_CHECKBOX: if(rc.size.width >= BUTTON_HEIGHT) aInfo.kind = kThemeCheckBox; in drawNativeControl()
720 CGFloat x = rc.origin.x + rc.size.width; in drawNativeControl()
771 aTrackInfo.max = static_cast<SInt32>(rc.size.width); in drawNativeControl()
775 aTrackInfo.bounds.size.width -= 2; // FIXME: magic for shadow in drawNativeControl()
834 rc.size.width += 2; in drawNativeControl()
[all …]
H A Daquaprintaccessoryview.mm299 Size aPixelSize( static_cast<long>(aViewFrame.size.width),
350 aPreviewFrame.size.width = 190;
362 aPreviewFrame.size.width -= 2*(aMargins.width+1);
571 nWidth = aCtrlRect.size.width;
576 nWidth += aSubRect.size.width;
577 nWidth += aSubRect.origin.x - (aCtrlRect.origin.x + aCtrlRect.size.width);
613 long nX = nLeftWidth - aCtrlRect.size.width;
617 … nX -= aSubRect.size.width + (aSubRect.origin.x - (aCtrlRect.origin.x + aCtrlRect.size.width));
618 aSubRect.origin.x = nLeftWidth - aSubRect.size.width;
666 aUnion.size.width += 20;
[all …]
H A Dsalprn.cxx152 dY = -aPaperSize.width; in SetupPrinterGraphics()
205 double width = aPaperSize.width, height = aPaperSize.height; in SetPrinterData() local
207 PaperInfo aInfo( PtTo10Mu( width ), PtTo10Mu( height ) ); in SetPrinterData()
212 io_pSetupData->mnPaperWidth = PtTo10Mu( width ); in SetPrinterData()
273 long width = 21000, height = 29700; in SetData() local
279 width = io_pSetupData->mnPaperWidth; in SetData()
286 width = aInfo.getWidth(); in SetData()
290 setPaperSize( width, height, mePageOrientation ); in SetData()
421 o_rPageWidth = static_cast<long>( double(aPaperSize.width) * fXScaling ); in GetPageInfo()
427 o_rOutWidth = static_cast<long>( aImageRect.size.width * fXScaling ); in GetPageInfo()
[all …]
/AOO41X/main/vcl/unx/kde4/
H A DKDESalGraphics.cxx218 aFrame.setFrameRect( QRect(0, 0, image->width(), image->height()) ); in lcl_drawFrame()
263 m_image = new QImage( widgetRect.width(), in drawNativeControl()
343 option.rect = QRect(0, 0, widgetRect.width(), widgetRect.height()); in drawNativeControl()
351 const int tw = widgetRect.width(); in drawNativeControl()
498 …XRectangle xRect = { widgetRect.left(), widgetRect.top(), widgetRect.width(), widgetRect.height() … in drawNativeControl()
504 if( xRect.width > 2*nFrameWidth && xRect.height > 2*nFrameWidth ) in drawNativeControl()
506 xRect.width -= 2*nFrameWidth; in drawNativeControl()
539 option.rect = QRect(0, 0, widgetRect.width(), widgetRect.height()); in drawNativeControl()
569 … gc, 0, 0, widgetRect.width(), widgetRect.height(), widgetRect.left(), widgetRect.top()); in drawNativeControl()
668 cbo.rect = QRect(0, 0, contentRect.width(), contentRect.height()); in getNativeControlRegion()
[all …]
H A DKDESalFrame.cxx126 aInfo.m_eWidth = psp::width::UltraCondensed; in toFont()
128 aInfo.m_eWidth = psp::width::ExtraCondensed; in toFont()
130 aInfo.m_eWidth = psp::width::Condensed; in toFont()
132 aInfo.m_eWidth = psp::width::SemiCondensed; in toFont()
134 aInfo.m_eWidth = psp::width::Normal; in toFont()
136 aInfo.m_eWidth = psp::width::SemiExpanded; in toFont()
138 aInfo.m_eWidth = psp::width::Expanded; in toFont()
140 aInfo.m_eWidth = psp::width::ExtraExpanded; in toFont()
142 aInfo.m_eWidth = psp::width::UltraExpanded; in toFont()
166 if( aInfo.m_eWidth != psp::width::Unknown ) in toFont()
/AOO41X/main/vcl/unx/kde/
H A Dsalnativewidgets-kde.cxx438 QPixmap qPixmap( pWidget->width(), pWidget->height() ); in drawStyledWidget()
440 QRect qRect( 0, 0, pWidget->width(), pWidget->height() ); in drawStyledWidget()
477 qWidgetPos.x(), qWidgetPos.y(), qRect.width(), qRect.height(), in drawStyledWidget()
761 pProgress->setProgress( nProgressWidth, qRect.width() ); in drawStyledWidget()
778 0, 0, qRect.width(), qRect.height(), in drawStyledWidget()
811 if ( qNormalSize.width() == qDefSize.width() ) in pushButton()
843 qRect.moveBy( ( qOldRect.width() - qRect.width() ) / 2, in radioButton()
872 qRect.moveBy( ( qOldRect.width() - qRect.width() ) / 2, in checkBox()
1262 if ( qRectAddLine.width() > qRectSubLine.width() ) in hitTestNativeControl()
1285 qRectAddLine.setWidth( qRectAddLine.width() / 2 ); in hitTestNativeControl()
[all …]
/AOO41X/test/testuno/source/fvt/uno/sw/page/
H A DCheckPage.java68 private int width = 0; field in CheckPage
76 …public CheckPage(boolean isLandscape, int width, int height, int topMargin, int bottomMargin, int … in CheckPage() argument
78 this.width = width; in CheckPage()
107 SWUtil.setDefaultPageStyleProperty(xComponent, widthProperty, Integer.valueOf(this.width)); in testPage()
150 …private void compare(String preDescription, boolean isLandScape, int width, int height, int top, i… in compare() argument
152 …ssert.assertEquals(preDescription + ":" + this.widthProperty,(double)this.width, (double)width, 2); in compare()
/AOO41X/main/accessibility/bridge/org/openoffice/accessibility/
H A DWindowsAccessBridgeAdapter.java243 int x = 0; int y = 0; int width = 0; int height = 0; field in WindowsAccessBridgeAdapter.PopupMenuProxy
274 if (p.x + d.width > x2) { in PopupMenuProxy()
275 x2 = p.x + d.width; in PopupMenuProxy()
286 width = x2 - x; in PopupMenuProxy()
405 (((d.width >= 0) && (p.x < d.width) && (d.height >= 0) && in contains()
409 if ((d.width >= 0) && (p.x < d.width) && (d.height >= 0) && in contains()
435 return new java.awt.Rectangle(x, y, width, height); in getBounds()
445 return new java.awt.Dimension(width, height); in getSize()
617 return new java.awt.Rectangle(p.x, p.y, d.width, d.height); in getBounds()
/AOO41X/main/oox/source/dump/
H A Ddffdumper.ini173 …0x0188=fill-blip-opt,fill-width,fill-height,fill-angle,fill-focus,fill-to-left,fill-to-top,fill-to…
180 …0x01C8=line-fill-width,line-fill-height,line-fill-dz-type,line-width,line-miter-limit,line-style,l…
181 …rt-arrow-head,line-end-arrow-head,line-start-arrow-width,line-start-arrow-length,line-end-arrow-wi…
215 …up-pos-rel-h,group-pos-v,group-pos-rel-v,group-rel-width-hr,group-align-hr,group-height-hr,group-w…
233 …0x0548=lline-fill-width,lline-fill-height,lline-fill-dz-type,lline-width,lline-miter-limit,lline-s…
234 …arrow-head,lline-end-arrow-head,lline-start-arrow-width,lline-start-arrow-length,lline-end-arrow-w…
240 …0x0588=tline-fill-width,tline-fill-height,tline-fill-dz-type,tline-width,tline-miter-limit,tline-s…
241 …arrow-head,tline-end-arrow-head,tline-start-arrow-width,tline-start-arrow-length,tline-end-arrow-w…
247 …0x05C8=rline-fill-width,rline-fill-height,rline-fill-dz-type,rline-width,rline-miter-limit,rline-s…
248 …arrow-head,rline-end-arrow-head,rline-start-arrow-width,rline-start-arrow-length,rline-end-arrow-w…
[all …]
/AOO41X/main/vcl/aqua/source/window/
H A Dsalframe.cxx154 maGeometry.nX = static_cast<int>(aVisibleRect.origin.x + aVisibleRect.size.width / 10); in initWindowAndView()
156 maGeometry.nWidth = static_cast<unsigned int>(aVisibleRect.size.width * 0.8); in initWindowAndView()
172 maGeometry.nWidth = static_cast<int>(aVisibleRect.size.width); in initWindowAndView()
593 aStateRect.size.width = float(pState->mnWidth); in SetWindowState()
678 pState->mnWidth = long(aStateRect.size.width); in GetWindowState()
766 … aNewContentRect.size.width += aNewContentRect.origin.x - aScreenRect.origin.x; in ShowFullScreen()
774 …if( aScreenRect.origin.x + aScreenRect.size.width > aNewContentRect.origin.x + aNewContentRect.siz… in ShowFullScreen()
775 …aNewContentRect.size.width = aScreenRect.origin.x + aScreenRect.size.width - aNewContentRect.origi… in ShowFullScreen()
781 if( aNewContentRect.size.width == 0 && aNewContentRect.size.height == 0 ) in ShowFullScreen()
1393 … nX = mpParent->maGeometry.nWidth - static_cast<long int>( aContentRect.size.width-1) - nX; in SetPosSize()
[all …]

12345678910>>...35