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

1234567891011>>

/macosx-10.10/bash-94.1.2/bash-3.2/examples/scripts/
H A Dcenter9 width=${COLUMNS:-80}
20 printf "%*s\n" $(( (width+${#REPLY})/2 )) "$REPLY"
/macosx-10.10/WebCore-7600.1.25/html/
H A DTextMetrics.idl28 readonly attribute unrestricted float width;
H A DHTMLPreElement.idl22 // FIXME: DOM spec says that width should be of type DOMString
24 [Reflect] attribute long width;
/macosx-10.10/OpenSSL098-52/src/util/
H A Dtab_num.pl4 $width=40;
12 $n=$width-$i;
/macosx-10.10/ruby-106/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.10/apr-32/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.10/CommonCrypto-60061/libcn/
H A Dreverse_poly.c29 reverse_poly(uint64_t poly, size_t width) argument
31 uint64_t retval = reflect(poly, width);
/macosx-10.10/WebCore-7600.1.25/platform/image-decoders/cairo/
H A DImageDecoderCairo.cpp37 CAIRO_FORMAT_ARGB32, width(), height(), width() * sizeof(PixelData)));
/macosx-10.10/WebCore-7600.1.25/platform/
H A DLengthSize.h34 LengthSize(Length width, Length height) argument
35 : m_width(WTF::move(width))
45 void setWidth(Length width) { m_width = WTF::move(width); } argument
46 const Length& width() const { return m_width; } function in struct:WebCore::LengthSize
53 return LengthSize(m_width.blend(from.width(), progress), m_height.blend(from.height(), progress));
/macosx-10.10/WebCore-7600.1.25/platform/graphics/
H A DIntSize.h64 IntSize(int width, int height) : m_width(width), m_height(height) { } argument
67 int width() const { return m_width; } function in class:WebCore::IntSize
70 void setWidth(int width) { m_width = width; } argument
78 void expand(int width, int height) argument
80 m_width += width;
84 void contract(int width, int height) argument
86 m_width -= width;
118 if (m_width < minimumSize.width())
[all...]
H A DLayoutSize.h50 LayoutSize(const IntSize& size) : m_width(size.width()), m_height(size.height()) { }
51 LayoutSize(LayoutUnit width, LayoutUnit height) : m_width(width), m_height(height) { } argument
53 explicit LayoutSize(const FloatSize& size) : m_width(size.width()), m_height(size.height()) { }
55 LayoutUnit width() const { return m_width; } function in class:WebCore::LayoutSize
58 void setWidth(LayoutUnit width) { m_width = width; } argument
66 void expand(LayoutUnit width, LayoutUnit height) argument
68 m_width += width;
72 void shrink(LayoutUnit width, LayoutUni argument
[all...]
H A DRoundedRect.cpp51 if (!m_topLeft.width() || !m_topLeft.height())
54 if (!m_topRight.width() || !m_topRight.height())
57 if (!m_bottomLeft.width() || !m_bottomLeft.height())
60 if (!m_bottomRight.width() || !m_bottomRight.height())
66 if (m_topLeft.width() > 0 && m_topLeft.height() > 0) {
67 m_topLeft.setWidth(std::max<LayoutUnit>(0, m_topLeft.width() + leftWidth));
70 if (m_topRight.width() > 0 && m_topRight.height() > 0) {
71 m_topRight.setWidth(std::max<LayoutUnit>(0, m_topRight.width() + rightWidth));
74 if (m_bottomLeft.width() > 0 && m_bottomLeft.height() > 0) {
75 m_bottomLeft.setWidth(std::max<LayoutUnit>(0, m_bottomLeft.width()
137 RoundedRect(const LayoutUnit& x, const LayoutUnit& y, const LayoutUnit& width, const LayoutUnit& height) argument
[all...]
H A DFloatRoundedRect.cpp43 FloatRoundedRect::FloatRoundedRect(float x, float y, float width, float height) argument
44 : m_rect(x, y, width, height)
77 if (!m_topLeft.width() || !m_topLeft.height())
80 if (!m_topRight.width() || !m_topRight.height())
83 if (!m_bottomLeft.width() || !m_bottomLeft.height())
86 if (!m_bottomRight.width() || !m_bottomRight.height())
92 if (m_topLeft.width() > 0 && m_topLeft.height() > 0) {
93 m_topLeft.setWidth(std::max<float>(0, m_topLeft.width() + leftWidth));
96 if (m_topRight.width() > 0 && m_topRight.height() > 0) {
97 m_topRight.setWidth(std::max<float>(0, m_topRight.width()
[all...]
H A DIntSize.cpp36 out.printf("(%d x %d)", width(), height());
40 : m_width(clampToInteger(s.width()))
/macosx-10.10/tcl-105/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.10/dtrace-147/test/tst/common/aggs/
H A Dtst.aggpackbanner.ksh16 let width=8
20 banner $3 | awk -v line=$1 -v pos=$2 -v width=$width '{ \
25 line, NR, i + (pos * width));
/macosx-10.10/ruby-106/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.10/WebKit2-7600.1.25/UIProcess/API/efl/
H A DSnapshotImageGL.cpp38 PassRefPtr<cairo_surface_t> getImageSurfaceFromFrameBuffer(int x, int y, int width, int height) argument
40 RefPtr<cairo_surface_t> newSurface = adoptRef(cairo_image_surface_create(CAIRO_FORMAT_ARGB32, width, height));
49 glReadPixels(x, y, width, height, format, GL_UNSIGNED_BYTE, data);
53 int totalBytes = width * height * 4;
63 for (int j = 0; j < width; ++j) {
64 unsigned tmp = buf[i * width + j];
65 buf[i * width + j] = buf[(height - i - 1) * width + j];
66 buf[(height - i - 1) * width + j] = tmp;
H A DSnapshotImageGL.h31 PassRefPtr<cairo_surface_t> getImageSurfaceFromFrameBuffer(int x, int y, int width, int height);
/macosx-10.10/Chess-310.6/Sources/
H A DMBCStretchyTextCell.mm55 cellFrame.size.width += 100;
58 cellFrame.size.width += 6;
/macosx-10.10/groff-38/groff/src/include/
H A Dpaper.h24 double width; // in PS points member in struct:paper
/macosx-10.10/tcl-105/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.10/Libc-1044.1.2/stdlib/FreeBSD/
H A Dlsearch.c22 void *lsearch(const void *key, void *base, size_t *nelp, size_t width, argument
26 return (lwork(key, base, nelp, width, compar, 1));
29 void *lfind(const void *key, const void *base, size_t *nelp, size_t width, argument
33 return (lwork(key, base, nelp, width, compar, 0));
37 lwork(const void *key, const void *base, size_t *nelp, size_t width, argument
47 for (endp = (uint8_t *)(ep + width * *nelp); ep < endp; ep += width) {
60 memcpy(endp, key, width);
/macosx-10.10/WebCore-7600.1.25/Modules/plugins/
H A DQuickTimePluginReplacement.css30 width: 100%;
/macosx-10.10/WebCore-7600.1.25/platform/graphics/cairo/
H A DFloatRectCairo.cpp35 , m_size(r.width, r.height)
41 cairo_rectangle_t r = { x(), y(), width(), height() };

Completed in 554 milliseconds

1234567891011>>