Searched refs:width (Results 101 - 125 of 2946) sorted by relevance

1234567891011>>

/macosx-10.10/WebCore-7600.1.25/platform/efl/
H A DPlatformScreenEfl.cpp92 int width = 800; local
94 ecore_x_screen_size_get(ecore_x_default_screen_get(), &width, &height); local
95 return FloatRect(0, 0, width, height);
/macosx-10.10/WebCore-7600.1.25/platform/graphics/gpu/
H A DTilingData.cpp81 ASSERT(m_maxTextureSize.width() - 2 * m_borderTexels);
82 int x = (srcPos - m_borderTexels) / (m_maxTextureSize.width() - 2 * m_borderTexels);
101 int width = tileSizeX(i); local
103 ASSERT(x >= 0 && y >= 0 && width >= 0 && height >= 0);
104 ASSERT(x <= m_totalSize.width() && y <= m_totalSize.height());
105 return IntRect(x, y, width, height);
160 return m_totalSize.width();
162 return m_maxTextureSize.width() - m_borderTexels;
164 return m_maxTextureSize.width() - 2 * m_borderTexels;
166 return m_totalSize.width()
[all...]
/macosx-10.10/WebCore-7600.1.25/platform/win/
H A DBitmapInfo.h53 unsigned width() const { return abs(bmiHeader.biWidth); } function in struct:WebCore::BitmapInfo
55 IntSize size() const { return IntSize(width(), height()); }
56 unsigned bytesPerLine() const { return (width() * bmiHeader.biBitCount + 7) / 8; }
/macosx-10.10/WebCore-7600.1.25/rendering/shapes/
H A DRectangleShape.h59 float rx() const { return m_radii.width(); }
63 float width() const { return m_bounds.width(); } function in class:WebCore::RectangleShape
/macosx-10.10/WebCore-7600.1.25/svg/graphics/filters/
H A DSVGFilter.cpp42 value *= m_targetBoundingBox.width();
43 return Filter::applyHorizontalScale(value) * m_absoluteFilterRegion.width() / m_filterRegion.width();
/macosx-10.10/bless-103/test/
H A Dtestcgtext.c69 rect.size.width = 500;
93 rect.size.width = 10;
109 printf("[%f,%f] (%f,%f)\n", rect.origin.x, rect.origin.y, rect.size.width, rect.size.height);
129 uint16_t width, uint16_t height, uint16_t *newwidth) {
138 bitmapBytesPerRow = width*1;
145 width,
201 if(newwidth) { *newwidth = (int)rect.size.width + 4; }
202 printf("[%f,%f] (%f,%f)\n", rect.origin.x, rect.origin.y, rect.size.width, rect.size.height);
238 uint16_t width = 40; local
254 bitmapData = calloc(width*heigh
128 makeLabelOfSize(const char *label, unsigned char *bitmapData, uint16_t width, uint16_t height, uint16_t *newwidth) argument
[all...]
/macosx-10.10/ruby-106/ruby/ext/curses/
H A Dmouse.rb8 width = message.length + 6
9 win = Window.new(5, width,
10 (lines - 5) / 2, (cols - width) / 2)
/macosx-10.10/tcl-105/tk/tk/xlib/
H A Dxdraw.c75 unsigned int width,
81 rectangle.width = width;
67 XFillRectangle( Display *display, Drawable d, GC gc, int x, int y, unsigned int width, unsigned int height) argument
/macosx-10.10/WebCore-7600.1.25/page/
H A DViewportConfiguration.cpp137 // We want a scale small enough to fit the document width-wise.
139 double width = m_contentSize.width() > 0 ? m_contentSize.width() : layoutWidth(); local
141 if (width > 0)
142 initialScale = minimumLayoutSize.width() / width;
161 double contentWidth = m_contentSize.width();
162 if (contentWidth > 0 && contentWidth * minimumScale < minimumLayoutSize.width())
163 minimumScale = minimumLayoutSize.width() / contentWidt
[all...]
/macosx-10.10/WebCore-7600.1.25/platform/graphics/ios/
H A DIconIOS.mm65 float width = CGImageGetWidth(m_cgImage.get());
67 FloatSize size(width, height);
68 FloatRect srcRect(0, 0, width, height);
/macosx-10.10/WebKit2-7600.1.25/UIProcess/API/efl/tests/
H A Dtest_ewk2_window_features.cpp58 int x, y, width, height; local
59 ewk_window_features_geometry_get(windowFeatures, &x, &y, &width, &height);
63 EXPECT_EQ(0, width);
79 int x, y, width, height; local
80 ewk_window_features_geometry_get(windowFeatures, &x, &y, &width, &height);
84 EXPECT_EQ(400, width);
107 const char windowHTML[] = "<html><body onLoad=\"window.open('', '', 'left=100,top=150,width=400,height=400,location=no,menubar=no,status=yes,toolbar=no,scrollbars=yes,resizable=yes,fullscreen=no');\"></body></html>";
/macosx-10.10/llvmCore-3425.0.34/lib/Support/
H A DLocaleXlocale.inc50 int width = l->mbswidth(s);
51 assert(width>=0);
52 return width;
/macosx-10.10/tcl-105/tk/tk/library/demos/
H A Dhscale.tcl30 canvas $w.frame.canvas -width 50 -height 50 -bd 0 -highlightthickness 0
39 proc setWidth {w width} {
40 incr width 21
41 set x2 [expr {$width - 30}]
45 $w coords poly 20 15 20 35 $x2 35 $x2 45 $width 25 $x2 5 $x2 15 20 15
46 $w coords line 20 15 20 35 $x2 35 $x2 45 $width 25 $x2 5 $x2 15 20 15
/macosx-10.10/WebCore-7600.1.25/dom/
H A DClientRect.idl34 readonly attribute unrestricted float width;
/macosx-10.10/WebCore-7600.1.25/html/
H A DHTMLTableColElement.idl27 [Reflect] attribute DOMString width;
/macosx-10.10/WebCore-7600.1.25/platform/graphics/mac/
H A DFloatRectMac.mm41 return NSMakeRect(x(), y(), width(), height());
H A DFloatSizeMac.mm35 FloatSize::FloatSize(const NSSize& s) : m_width(s.width), m_height(s.height)
H A DIntSizeMac.mm34 IntSize::IntSize(const NSSize& s) : m_width(static_cast<int>(s.width)), m_height(static_cast<int>(s.height))
/macosx-10.10/WebCore-7600.1.25/platform/graphics/texmap/
H A DTextureMapperBackingStore.cpp43 if (tileRect.width() + tileRect.x() >= totalRect.width())
/macosx-10.10/WebCore-7600.1.25/rendering/style/
H A DBorderData.h52 if (!m_topLeft.width().isZero())
54 if (!m_topRight.width().isZero())
56 if (!m_bottomLeft.width().isZero())
58 if (!m_bottomRight.width().isZero())
67 return m_left.width();
74 return m_right.width();
81 return m_top.width();
88 return m_bottom.width();
/macosx-10.10/WebCore-7600.1.25/svg/
H A DSVGFilterPrimitiveStandardAttributes.idl33 readonly attribute SVGAnimatedLength width;
H A DSVGImageElement.idl29 readonly attribute SVGAnimatedLength width;
H A DSVGRectElement.idl30 readonly attribute SVGAnimatedLength width;
/macosx-10.10/cups-408/cups/cups/
H A Dpage.c23 * ppdPageWidth() - Get the page width for the given size.
125 size->width = (float)w;
150 size->name, size->width, size->length));
164 size->name, size->width, size->length));
180 size->name, size->width, size->length));
212 float width, /* Min/max width */ local
251 * Figure out the current minimum width and length...
254 width = ppd->custom_min[0];
285 sscanf(attr->value, "%f%f", &width,
[all...]
/macosx-10.10/ruby-106/ruby/ext/tk/sample/demos-en/
H A Dbutton.rb52 width 10
61 width 10
70 width 10
79 width 10

Completed in 322 milliseconds

1234567891011>>