Searched refs:width (Results 1 - 25 of 2981) sorted by relevance

1234567891011>>

/macosx-10.9.5/bash-92/bash-3.2/examples/scripts/
H A Dcenter9 width=${COLUMNS:-80}
20 printf "%*s\n" $(( (width+${#REPLY})/2 )) "$REPLY"
/macosx-10.9.5/WebCore-7537.78.1/html/
H A DTextMetrics.idl28 readonly attribute float width;
H A DHTMLPreElement.idl22 // FIXME: DOM spec says that width should be of type DOMString
24 [Reflect] attribute long width;
/macosx-10.9.5/ruby-104/ruby/test/rss/
H A Dtest_accessor.rb42 image_item.width = nil
43 assert_nil(image_item.width)
45 width = 10
46 image_item.width = width
47 assert_equal(width, image_item.width)
49 width = 10.0
50 image_item.width = width
[all...]
/macosx-10.9.5/apache-786.1/httpd/srclib/apr/misc/netware/
H A Drand.c26 static int NXSeedRandomInternal( size_t width, void *seed ) argument
37 if (width > 3)
43 while ((width -= 4) > 3);
46 if (width > 0)
52 while (width > 0)
53 *p++ = u.y[width--];
/macosx-10.9.5/apr-30/apr/apr/misc/netware/
H A Drand.c26 static int NXSeedRandomInternal( size_t width, void *seed ) argument
37 if (width > 3)
43 while ((width -= 4) > 3);
46 if (width > 0)
52 while (width > 0)
53 *p++ = u.y[width--];
/macosx-10.9.5/CommonCrypto-60049/libcn/
H A Dreverse_poly.c29 reverse_poly(uint64_t poly, size_t width) argument
31 uint64_t retval = reflect(poly, width);
/macosx-10.9.5/WebCore-7537.78.1/platform/graphics/qt/
H A DFloatSizeQt.cpp29 : m_width(size.width())
36 return QSizeF(width(), height());
H A DIntSizeQt.cpp37 : m_width(r.width())
44 return QSize(width(), height());
H A DLayoutSizeQt.cpp30 : m_width(size.width())
36 : m_width(size.width())
43 return QSizeF(width(), height());
H A DFloatRectQt.cpp37 , m_size(r.width()
44 return QRectF(x(), y(), width(), height());
51 if (width() < 0) {
52 normalizedRect.setX(x() + width());
53 normalizedRect.setWidth(-width());
H A DLayoutRectQt.cpp30 , m_size(r.width(), r.height())
36 , m_size(r.width(), r.height())
42 return QRectF(x(), y(), width(), height());
/macosx-10.9.5/WebCore-7537.78.1/platform/image-decoders/cairo/
H A DImageDecoderCairo.cpp37 CAIRO_FORMAT_ARGB32, width(), height(), width() * sizeof(PixelData)));
/macosx-10.9.5/WebCore-7537.78.1/platform/
H A DLengthSize.h34 LengthSize(Length width, Length height) argument
35 : m_width(width)
45 void setWidth(Length width) { m_width = width; } argument
46 Length width() const { return m_width; } function in struct:WebCore::LengthSize
/macosx-10.9.5/WebCore-7537.78.1/platform/graphics/blackberry/
H A DFloatRectBlackBerry.cpp28 , m_size(rect.width(), rect.height())
34 return BlackBerry::Platform::FloatRect(x(), y(), width(), height());
41 if (width() < 0) {
42 normalizedRect.setX(x() + width());
43 normalizedRect.setWidth(-width());
/macosx-10.9.5/WebCore-7537.78.1/platform/graphics/
H A DLayoutSize.h53 LayoutSize(const IntSize& size) : m_width(size.width()), m_height(size.height()) { }
54 LayoutSize(LayoutUnit width, LayoutUnit height) : m_width(width), m_height(height) { } argument
56 explicit LayoutSize(const FloatSize& size) : m_width(size.width()), m_height(size.height()) { }
58 LayoutUnit width() const { return m_width; } function in class:WebCore::LayoutSize
61 void setWidth(LayoutUnit width) { m_width = width; } argument
69 void expand(LayoutUnit width, LayoutUnit height) argument
71 m_width += width;
75 void shrink(LayoutUnit width, LayoutUni argument
[all...]
H A DFloatSize.cpp40 FloatSize::FloatSize(const IntSize& size) : m_width(size.width()), m_height(size.height())
44 FloatSize::FloatSize(const LayoutSize& size) : m_width(size.width()), m_height(size.height())
63 FloatSize FloatSize::narrowPrecision(double width, double height) argument
65 return FloatSize(narrowPrecisionToFloat(width), narrowPrecisionToFloat(height));
H A DIntSize.h61 IntSize(int width, int height) : m_width(width), m_height(height) { } argument
63 int width() const { return m_width; } function in class:WebCore::IntSize
66 void setWidth(int width) { m_width = width; } argument
74 void expand(int width, int height) argument
76 m_width += width;
110 if (m_width < minimumSize.width())
111 m_width = minimumSize.width();
162 a.setWidth(a.width()
[all...]
/macosx-10.9.5/WebCore-7537.78.1/page/
H A DScreen.cpp57 unsigned Screen::width() const function in class:WebCore::Screen
61 long width = static_cast<long>(screenRect(m_frame->view()).width()); local
62 InspectorInstrumentation::applyScreenWidthOverride(m_frame, &width);
63 return static_cast<unsigned>(width);
105 return static_cast<unsigned>(screenAvailableRect(m_frame->view()).width());
/macosx-10.9.5/tcl-102/tk84/tk/xlib/
H A Dximage.c40 XCreateBitmapFromData(display, d, data, width, height)
44 unsigned int width;
51 pix = Tk_GetPixmap(display, d, (int) width, (int) height, 1);
56 ximage = XCreateImage(display, NULL, 1, XYBitmap, 0, (char*) data, width,
57 height, 8, (width + 7) / 8);
60 TkPutImage(NULL, 0, display, pix, gc, ximage, 0, 0, 0, 0, width, height);
/macosx-10.9.5/ruby-104/ruby/ext/curses/
H A Dhello.rb7 width = message.length + 6
8 win = Window.new(5, width,
9 (lines - 5) / 2, (cols - width) / 2)
/macosx-10.9.5/Chess-310.5/Sources/
H A DMBCStretchyTextCell.mm55 cellFrame.size.width += 100;
58 cellFrame.size.width += 6;
/macosx-10.9.5/groff-38/groff/src/include/
H A Dpaper.h24 double width; // in PS points member in struct:paper
/macosx-10.9.5/tcl-102/tcl_ext/snack/snack/demos/tcl/
H A DMinWave.tcl7 pack [canvas .c -width 400 -height 100]
11 .c create waveform 0 0 -sound s -width 400
/macosx-10.9.5/WebKit2-7537.78.2/UIProcess/API/efl/
H A DSnapshotImageGL.cpp41 PassRefPtr<cairo_surface_t> getImageSurfaceFromFrameBuffer(int x, int y, int width, int height) argument
43 RefPtr<cairo_surface_t> newSurface = adoptRef(cairo_image_surface_create(CAIRO_FORMAT_ARGB32, width, height));
52 glReadPixels(x, y, width, height, format, GL_UNSIGNED_BYTE, data);
56 int totalBytes = width * height * 4;
66 for (int j = 0; j < width; ++j) {
67 unsigned tmp = buf[i * width + j];
68 buf[i * width + j] = buf[(height - i - 1) * width + j];
69 buf[(height - i - 1) * width + j] = tmp;

Completed in 145 milliseconds

1234567891011>>