Searched refs:width (Results 201 - 225 of 2946) sorted by relevance

1234567891011>>

/macosx-10.10/emacs-93/emacs/lisp/mh-e/
H A Dmh-scan.el180 "This regular expression finds the message number width in a scan format.
188 "This is a format string for width of the message number in a scan format.
300 (defvar mh-scan-cmd-note-width 1
310 (defvar mh-scan-destination-width 1
324 (defvar mh-scan-date-width 5
328 (defvar mh-scan-date-flag-width 1
333 (defvar mh-scan-from-mbox-width 17
338 (defvar mh-scan-from-mbox-sep-width 2
343 (+ mh-scan-cmd-note-width)
347 (+ mh-scan-cmd-note-width
[all...]
/macosx-10.10/ruby-106/ruby/lib/rexml/formatters/
H A Dpretty.rb14 # The width of a page. Used for formatting text
15 attr_accessor :width
33 @width = 80
55 # is less than the specified width, then try to print everything on
65 if string.length < @width
91 s = wrap(s, @width - @level)
128 def wrap(string, width)
130 while string.length > width and place = string.rindex(' ', width)
/macosx-10.10/WebInspectorUI-7600.1.17/UserInterface/Views/
H A DBreakpointActionView.css36 width: 16px;
59 width: 100%;
67 width: 100%;
78 width: 336px; /* NOTE: Fixed value, manually tuned to .edit-breakpoint-popover-content.wide width */
83 width: 336px; /* NOTE: Fixed value, manually tuned to .edit-breakpoint-popover-content.wide width */
H A DGradientSlider.css33 width: 238px;
41 width: 100%;
54 width: 100%;
62 width: 20px;
94 width: 10px;
/macosx-10.10/ruby-106/ruby/ext/tk/sample/demos-jp/
H A Dspin.rb48 TkButton.new(f, :text=>'���������', :width=>15, :command=>proc{
53 TkButton.new(f, :text=>'���������������', :width=>15, :command=>proc{
64 TkSpinbox.new(base_frame, :from=>1, :to=>10, :width=>10, :validate=>:key,
69 :format=>'%05.2f', :width=>10),
70 TkSpinbox.new(base_frame, :values=>australianCities, :width=>10)
/macosx-10.10/ruby-106/ruby/ext/tk/sample/tkextlib/vu/
H A DcanvSticker2.rb37 c = TkCanvas.new(:width=>500, :height=>500, :bg=>'aquamarine3').pack
56 width 0
78 width 0
84 txt[:width] = 0 # horizontal
89 txt[:width] = 1 # top down
/macosx-10.10/tcl-105/tcl_ext/tcllib/tcllib/modules/doctools2base/
H A Dtext.tcl153 upvar 1 $wvar width
154 set width 0
155 #puts @!$width
162 if {$l <= $width} continue
163 set width $l
169 if {$l <= $width} continue
170 set width $l
173 #puts stdout @=$width
178 upvar $wvar width
179 return [format %${width}
[all...]
/macosx-10.10/WebCore-7600.1.25/platform/graphics/wince/
H A DImageBufferWinCE.cpp41 virtual IntSize size() const { return IntSize(m_data->m_bitmap->width(), m_data->m_bitmap->height()); }
130 RefPtr<Uint8ClampedArray> imageData = Uint8ClampedArray::createUninitialized(rect.width() * rect.height() * 4);
136 IntRect sourceRect(0, 0, bitmap->width(), bitmap->height());
143 src += (sourceRect.y() * bitmap->width() + sourceRect.x()) * 4;
144 dst += ((sourceRect.y() - rect.y()) * rect.width() + sourceRect.x() - rect.x()) * 4;
145 int bytesToCopy = sourceRect.width() * 4;
146 int srcSkip = (bitmap->width() - sourceRect.width()) * 4;
147 int dstSkip = (rect.width() - sourceRect.width()) *
[all...]
/macosx-10.10/WebCore-7600.1.25/platform/gtk/
H A DWidgetBackingStoreGtkX11.cpp46 scaledSize.width(), scaledSize.height(), gdk_visual_get_depth(visual));
50 GDK_VISUAL_XVISUAL(visual), scaledSize.width(), scaledSize.height()));
83 targetRect.x() - scaledScrollOffset.width(), targetRect.y() - scaledScrollOffset.height(),
84 targetRect.width(), targetRect.height(),
88 targetRect.width(), targetRect.height());
H A DGtkVersioning.c60 int width,
68 && cairo_image_surface_get_width(surface) >= width
73 width,
88 int srcX, int srcY, int width, int height)
99 for (x = 0; x < width; x++) {
122 int width, int height)
131 for (x = 0; x < width; x++) {
147 * @width: Width in pixels of region to get
164 int width, int height)
172 g_return_val_if_fail(width >
58 gdk_cairo_surface_coerce_to_image(cairo_surface_t* surface, cairo_content_t content, int width, int height) argument
86 convert_alpha(guchar * destData, int destStride, guchar * srcData, int srcStride, int srcX, int srcY, int width, int height) argument
120 convert_no_alpha(guchar * destData, int destStride, guchar * srcData, int srcStride, int srcX, int srcY, int width, int height) argument
162 gdk_pixbuf_get_from_surface(cairo_surface_t * surface, int srcX, int srcY, int width, int height) argument
193 width, height); local
200 width, height); local
[all...]
/macosx-10.10/curl-83.1.2/curl/src/
H A Dtool_cb_prg.c87 barwidth = bar->width - 7;
120 /* TODO: get terminal width through ansi escapes or something similar.
121 try to update width when xterm is resized... - 19990617 larsa */
125 * we're using our own way to determine screen width */
131 bar->width = (int)num;
133 bar->width = 79;
137 bar->width = 79;
140 * We use this emx library call to get the screen width, and subtract
146 bar->width = scr_size[0] - 1;
/macosx-10.10/ruby-106/ruby/ext/tk/sample/tkextlib/tcllib/
H A Dplotdemos1.rb8 c1 = TkCanvas.new(:background=>'white', :width=>400, :height=>200)
9 c2 = TkCanvas.new(:background=>'white', :width=>400, :height=>200)
10 c3 = TkCanvas.new(:background=>'white', :width=>400, :height=>200)
14 hc1 = TkCanvas.new(h, :background=>'white', :width=>400, :height=>200)
15 hc2 = TkCanvas.new(h, :background=>'white', :width=>400, :height=>200)
19 vc1 = TkCanvas.new(v, :background=>'white', :width=>400, :height=>200)
20 vc2 = TkCanvas.new(v, :background=>'white', :width=>400, :height=>200)
21 vc3 = TkCanvas.new(v, :background=>'white', :width=>400, :height=>200)
133 zc1 = TkCanvas.new(z, :background=>'white', :width=>400, :height=>300)
134 zc2 = TkCanvas.new(z, :background=>'white', :width
[all...]
/macosx-10.10/tcl-105/tk/tk/unix/
H A DtkUnix.c139 unsigned width, unsigned height,
153 for (x1 = 0; x1 < width; x1 = end) {
158 while ((x1 < width) && !*lineDataPtr) {
168 while ((end < width) && *lineDataPtr) {
175 rect.width = end - x1;
132 TkpBuildRegionFromAlphaData( TkRegion region, unsigned x, unsigned y, unsigned width, unsigned height, unsigned char *dataPtr, unsigned pixelStride, unsigned lineStride) argument
H A DtkUnixScale.c113 int x, y, width, height, shadowWidth;
124 drawnAreaPtr->width = scalePtr->vertTroughX + scalePtr->width
129 drawnAreaPtr->x, drawnAreaPtr->y, drawnAreaPtr->width,
189 scalePtr->width + 2*scalePtr->borderWidth,
195 (unsigned) scalePtr->width,
203 width = scalePtr->width;
211 Tk_Draw3DRectangle(tkwin, drawable, sliderBorder, x, y, width,
215 width
110 int x, y, width, height, shadowWidth; local
266 int y, width, length; local
322 int x, y, width, height, shadowWidth; local
482 int x, y, length, width; local
[all...]
/macosx-10.10/tcl-105/tk84/tk/win/
H A DtkWinRegion.c92 rect_return->width = (short) (rect.right - rect.left);
146 rectangle->x + rectangle->width, rectangle->y + rectangle->height);
172 TkRectInRegion(r, x, y, width, height)
176 unsigned int width;
183 rect.right = x+width;
/macosx-10.10/adv_cmds-158/ps/
H A Dprint.c92 (void)printf("%-*s", v->width, vent->header);
94 (void)printf("%*s", v->width, vent->header);
360 left = termwidth - (totwidth - v->width);
362 /* already wrapped, just use std * width */
363 left = v->width;
371 (void)printf("%-*.*s", v->width, v->width, s);
409 (void)printf("%-*s", v->width, KI_PROC(k)->p_comm);
432 (void)printf("%-*s", v->width, (s = getname(KI_EPROC(k)->e_ucred.cr_uid), *s) ? s : "-");
485 (void)printf("%-*s", v->width, bu
[all...]
/macosx-10.10/WebCore-7600.1.25/platform/graphics/
H A DFloatRoundedRect.h87 FloatRoundedRect(float x, float y, float width, float height);
107 return FloatRect(m_rect.x(), m_rect.y(), m_radii.topLeft().width(), m_radii.topLeft().height());
111 return FloatRect(m_rect.maxX() - m_radii.topRight().width(), m_rect.y(), m_radii.topRight().width(), m_radii.topRight().height());
115 return FloatRect(m_rect.x(), m_rect.maxY() - m_radii.bottomLeft().height(), m_radii.bottomLeft().width(), m_radii.bottomLeft().height());
119 return FloatRect(m_rect.maxX() - m_radii.bottomRight().width(), m_rect.maxY() - m_radii.bottomRight().height(), m_radii.bottomRight().width(), m_radii.bottomRight().height());
149 radiiSum = radii.topLeft().width() + radii.topRight().width(); // Casts to avoid integer overflow.
150 if (radiiSum > rect.width())
[all...]
/macosx-10.10/pyobjc-45/2.5/pyobjc/pyobjc-framework-Quartz/Examples/Core Graphics/CGRotation/
H A DCGImageUtils.py108 def IISaveImage(image, url, width, height):
111 # If there is no image, no destination, or the width/height is 0, then fail early.
112 assert (image is not None) and (url is not None) and (width != 0.0) and (height != 0.0)
121 imageData = objc.allocateBuffer(int(4 * width * height))
126 width, # width
129 4 * width, # bytes per pixel times number of pixels wide
136 IIDrawImageTransformed(image, bitmapContext, CGRectMake(0.0, 0.0, width, height))
205 imageRect.size.width = CGImageGetWidth(image.fImageRef);
214 # For orientations 1-4, the images are unrotated, so the width an
[all...]
/macosx-10.10/pyobjc-45/2.6/pyobjc/pyobjc-framework-Quartz/Examples/Core Graphics/CGRotation/
H A DCGImageUtils.py108 def IISaveImage(image, url, width, height):
111 # If there is no image, no destination, or the width/height is 0, then fail early.
112 assert (image is not None) and (url is not None) and (width != 0.0) and (height != 0.0)
121 imageData = objc.allocateBuffer(int(4 * width * height))
126 width, # width
129 4 * width, # bytes per pixel times number of pixels wide
136 IIDrawImageTransformed(image, bitmapContext, CGRectMake(0.0, 0.0, width, height))
205 imageRect.size.width = CGImageGetWidth(image.fImageRef);
214 # For orientations 1-4, the images are unrotated, so the width an
[all...]
/macosx-10.10/pyobjc-45/pyobjc/pyobjc-framework-Quartz-2.5.1/Examples/Core Graphics/CGRotation/
H A DCGImageUtils.py108 def IISaveImage(image, url, width, height):
111 # If there is no image, no destination, or the width/height is 0, then fail early.
112 assert (image is not None) and (url is not None) and (width != 0.0) and (height != 0.0)
121 imageData = objc.allocateBuffer(int(4 * width * height))
126 width, # width
129 4 * width, # bytes per pixel times number of pixels wide
136 IIDrawImageTransformed(image, bitmapContext, CGRectMake(0.0, 0.0, width, height))
205 imageRect.size.width = CGImageGetWidth(image.fImageRef);
214 # For orientations 1-4, the images are unrotated, so the width an
[all...]
/macosx-10.10/tcl-105/tk/tk/win/
H A DtkWinButton.c63 * Cached information about the boxes bitmap, and the default border width for
192 int width = GetSystemMetrics(SM_CXEDGE);
193 if (width > 0) {
194 sprintf(tkDefButtonBorderWidth, "%d", width);
336 int width = 0, height = 0, haveImage = 0, haveText = 0, drawRing = 0;
414 * Compute width of default ring and offset for pushed buttons.
447 Tk_SizeOfImage(butPtr->image, &width, &height);
450 Tk_SizeOfBitmap(butPtr->display, butPtr->bitmap, &width, &height);
453 imageWidth = width;
474 fullWidth = (width > butPt
190 int width = GetSystemMetrics(SM_CXEDGE); local
330 int width = 0, height = 0, haveImage = 0, haveText = 0, drawRing = 0; local
818 int width = 0, height = 0; /* Width and height of button */ local
[all...]
/macosx-10.10/dcerpc-61/www/content/css/blueprint/
H A Dscreen.css56 table {margin-bottom:1.4em;width:100%;}
77 .container {width:950px;margin:0 auto;}
81 .span-1 {width:30px;}
82 .span-2 {width:70px;}
83 .span-3 {width:110px;}
84 .span-4 {width:150px;}
85 .span-5 {width:190px;}
86 .span-6 {width:230px;}
87 .span-7 {width:270px;}
88 .span-8 {width
[all...]
/macosx-10.10/tcl-105/tcl_ext/tkimg/tkimg/bmp/
H A Dbmp.c45 Tk_PhotoHandle imageHandle, int destX, int destY, int width,
94 destX, destY, width, height, srcX, srcY)
101 int width, height;
110 width, height, srcX, srcY);
115 destX, destY, width, height, srcX, srcY)
121 int width, height;
128 width, height, srcX, srcY);
311 width, height, srcX, srcY)
316 int width, height;
348 /* printf("reading %d-bit BMP %dx%d\n", numBits, width, heigh
[all...]
/macosx-10.10/tcl-105/tk84/tk/unix/
H A DtkUnixScale.c115 int x, y, width, height, shadowWidth;
126 drawnAreaPtr->width = scalePtr->vertTroughX + scalePtr->width
131 drawnAreaPtr->x, drawnAreaPtr->y, drawnAreaPtr->width,
190 scalePtr->width + 2*scalePtr->borderWidth,
196 (unsigned) scalePtr->width,
204 width = scalePtr->width;
212 Tk_Draw3DRectangle(tkwin, drawable, sliderBorder, x, y, width,
216 width
112 int x, y, width, height, shadowWidth; local
267 int y, width, length; local
324 int x, y, width, height, shadowWidth; local
483 int x, y, length, width; local
[all...]
/macosx-10.10/tcl-105/tk/tk/generic/ttk/
H A DttkLayout.c23 Ttk_MakeBox(int x, int y, int width, int height) argument
26 b.x = x; b.y = y; b.width = width; b.height = height;
33 return box.x <= x && x < box.x + box.width
44 result[2] = Tcl_NewIntObj(box.width);
52 * Carve out a parcel of the specified height (resp width)
66 parcel = Ttk_MakeBox(cavity->x, cavity->y, cavity->width, height);
78 cavity->width, height);
81 static Ttk_Box packLeft(Ttk_Box *cavity, int width) argument
84 width
91 packRight(Ttk_Box *cavity, int width) argument
111 Ttk_PackBox(Ttk_Box *cavity, int width, int height, Ttk_Side side) argument
155 Ttk_StickBox(Ttk_Box parcel, int width, int height, unsigned sticky) argument
236 Ttk_AnchorBox(Ttk_Box parcel, int width, int height, Tk_Anchor anchor) argument
245 Ttk_PlaceBox( Ttk_Box *cavity, int width, int height, Ttk_Side side, unsigned sticky) argument
257 Ttk_PositionBox(Ttk_Box *cavity, int width, int height, Ttk_PositionSpec flags) argument
995 int width, height, restWidth, restHeight; local
1070 int width, height; local
[all...]

Completed in 200 milliseconds

1234567891011>>