Searched refs:wid (Results 1 - 25 of 53) sorted by relevance

123

/macosx-10.10/postfix-255/postfix/src/util/
H A Dformat_tv.c71 int wid; local
84 wid = pow10[sig_dig];
91 for (n = 1; sec >= n && n <= wid / 10; n *= 10)
93 ures = (MILLION / wid) * n;
95 while (usec >= wid * ures)
/macosx-10.10/tcl-105/tcl_ext/tkimg/tkimg/compat/libtiff/libtiff/
H A Dtif_fax3.h195 #define LOOKUP8(wid,tab,eoflab) do { \
197 NeedBits8(wid,eoflab); \
198 TabEnt = tab + GetBits(wid); \
207 #define LOOKUP16(wid,tab,eoflab) do { \
209 NeedBits16(wid,eoflab); \
210 TabEnt = tab + GetBits(wid); \
227 #define LOOKUP8(wid,tab,eoflab) do { \
228 NeedBits8(wid,eoflab); \
229 TabEnt = tab + GetBits(wid); \
232 #define LOOKUP16(wid,ta
[all...]
/macosx-10.10/file-46/file/src/
H A Dfile.c347 size_t j, wid, nw; local
348 for (wid = 0, j = (size_t)optind; j < (size_t)argc; j++) {
350 if (nw > wid)
351 wid = nw;
361 e |= process(magic, argv[optind], wid);
396 int wid = 0, cwid; local
401 wid = 1;
412 if (cwid > wid)
413 wid = cwid;
421 e |= process(ms, buf, wid);
434 process(struct magic_set *ms, const char *inname, int wid) argument
[all...]
/macosx-10.10/cxxfilt-11/cxxfilt/include/opcode/
H A Dm88k.h357 #define UEXT(src,off,wid) \
358 ((((unsigned int)(src)) >> (off)) & ((1 << (wid)) - 1))
360 #define SEXT(src,off,wid) \
361 (((((int)(src))<<(32 - ((off) + (wid)))) >>(32 - (wid))) )
363 #define MAKE(src,off,wid) \
364 ((((unsigned int)(src)) & ((1 << (wid)) - 1)) << (off))
/macosx-10.10/tcl-105/tcl_ext/incrtcl/iwidgets/generic/
H A Dscrolledwidget.itk64 protected method _scrollWidget {wid first last}
315 # PROTECTED METHOD: _scrollWidget wid first last
321 itcl::body iwidgets::Scrolledwidget::_scrollWidget {wid first last} {
322 $wid set $first $last
324 if {$wid == $itk_component(vertsb)} {
344 } elseif {$wid == $itk_component(horizsb)} {
H A Dtabnotebook.itk145 protected method _canvasReconfigure { wid hgt }
146 protected method _pageReconfigure { pageName page wid hgt }
149 private method _redrawBorder { wid hgt }
900 itcl::body iwidgets::Tabnotebook::_canvasReconfigure { wid hgt } {
903 $itk_component(tabset) configure -width $wid
908 set _canvasWidth $wid
911 _redrawBorder $wid $hgt
921 itcl::body iwidgets::Tabnotebook::_redrawBorder { wid hgt } {
936 $wid \
948 [expr {floor($wid
[all...]
H A Dhierarchy.itk1510 set wid "$itk_component(list).uicon[incr _ucounter]"
1513 eval label $wid -image $image -background $bg
1515 label $wid -image $image -background $bg
1520 bind $wid <ButtonPress-1> \
1522 bind $wid <Double-1> \
1524 bind $wid <ButtonPress-3> \
1525 [itcl::code $this _imagePost $child $wid $type %x %y]
1526 $itk_component(list) window create insert -window $wid
/macosx-10.10/groff-38/groff/src/preproc/pic/
H A Doutput.h39 void set_desired_width_height(double wid, double ht);
H A Dmain.cpp271 double wid, ht; local
272 switch (sscanf(&start_line[0], "%lf %lf", &wid, &ht)) {
279 ht = wid = 0.0;
282 out->set_desired_width_height(wid, ht);
/macosx-10.10/tcl-105/tcl_ext/tklib/tklib/examples/menubar/
H A Ddemo.tcl29 variable wid
31 variable wid
35 variable wid
36 set wid 0
153 variable wid
156 set w ".top${wid}"
157 incr wid
159 Gui new ${wid} ${w} ${mbar}
169 constructor { wid w menubar } {
317 wm geometry ${wtop} 300x300+[expr ${wid}*2
[all...]
/macosx-10.10/cxxfilt-11/cxxfilt/binutils/
H A Dbucomm.c329 int oldt = t, wid;
331 wid = LONGEST_ARCH + strlen (bfd_target_vector[t]->name) + 1;
333 while (wid < columns && bfd_target_vector[t] != NULL)
337 newwid = wid + strlen (bfd_target_vector[t]->name) + 1;
340 wid = newwid;
326 int oldt = t, wid; local
/macosx-10.10/groff-38/groff/src/devices/xditview/
H A Ddraw.c154 /* `wid' is in device units */
156 DoCharacter (DviWidget dw, int c, int wid) argument
235 if (wid != 0) {
237 dw->dvi.text_device_width += wid;
278 int wid = 0; local
284 if (!FindCharWidth (dw, buf, &wid))
290 DoCharacter (dw, c, wid);
292 (void) FakeCharacter (dw, buf, wid);
294 return wid;
300 int FakeCharacter (DviWidget dw, char *buf, int wid) argument
345 int wid; local
[all...]
/macosx-10.10/ruby-106/ruby/ext/tk/sample/tcltklib/
H A Dsample1.rb155 wid = []
158 wid.push(TclTkWidget.new(ip, t1, button, "-text close -command", c))
160 wid.push(TclTkWidget.new(ip, t1, button, "-text label -command", c))
162 wid.push(TclTkWidget.new(ip, t1, button, "-text button -command", c))
164 wid.push(TclTkWidget.new(ip, t1, button, "-text checkbutton -command", c))
166 wid.push(TclTkWidget.new(ip, t1, button, "-text radiobutton -command", c))
168 wid.push(TclTkWidget.new(ip, t1, button, "-text scale -command", c))
170 wid.push(TclTkWidget.new(ip, t1, button, "-text entry -command", c))
172 wid.push(TclTkWidget.new(ip, t1, button, "-text text -command", c))
174 wid
[all...]
/macosx-10.10/vim-55/src/
H A Dgui_x11.c626 XClearArea(gui.dpy, gui.wid, 0, 0, new_x, 0, False);
628 XClearArea(gui.dpy, gui.wid, 0, 0, 0, FILL_Y(0), False);
630 XClearArea(gui.dpy, gui.wid, FILL_X((int)Columns), 0, 0, 0, False);
632 XClearArea(gui.dpy, gui.wid, 0, FILL_Y((int)Rows), 0, 0, False);
1623 gui.wid = gui_x11_get_wid();
2490 Pixmap blank_pixmap = XCreatePixmap(gui.dpy, gui.wid, 1, 1, 1);
2515 XDrawPoint(gui.dpy, gui.wid, gui.text_gc, i,
2609 XDrawString16(gui.dpy, gui.wid, gui.text_gc, TEXT_X(col),
2613 XDrawString(gui.dpy, gui.wid, gui.text_gc, TEXT_X(col),
2623 XFillRectangle(gui.dpy, gui.wid, gu
[all...]
H A Dgui_xmebw.c77 extern void _XmPrimitiveEnter(Widget wid,
80 extern void _XmPrimitiveLeave(Widget wid,
84 extern void _XmCalcLabelDimensions(Widget wid);
735 Enter(Widget wid, argument
740 XmEnhancedButtonWidget eb = (XmEnhancedButtonWidget) wid;
749 XmDisplay dpy = (XmDisplay) XmGetXmDisplay(XtDisplay(wid));
765 ((XmManagerWidget) XtParent(wid))->manager.active_child = wid;
814 (*expose) (wid, event, (Region) NULL);
824 Leave(Widget wid, argument
[all...]
H A Dgui.h357 Window wid; /* Window id of text area */ member in struct:Gui
449 WindowPtr wid; /* Window id of text area */ member in struct:Gui
/macosx-10.10/tcl-105/tcl_ext/tklib/tklib/modules/controlwidget/
H A Drdial.tcl41 # rdial::create w ?-width wid? ?-height hgt? ?-value floatval?
113 set wid $options(-width)
119 $win.c configure -width $wid -height $hgt
133 $win.c configure -width $hgt -height $wid
274 set wid $options(-width)
283 $win.c create rectangle 0 0 $wid $hgt -fill $dbg
297 $win.c create rectangle 0 0 $hgt $wid -fill $dbg
/macosx-10.10/zsh-61/zsh/Src/Zle/
H A Dzleparameter.c44 char *t = (char *) zhalloc(13 + strlen(w->u.comp.wid) +
48 strcat(t, w->u.comp.wid);
H A Dzle_thingy.c260 zsfree(w->u.comp.wid);
517 quotedzputs(w->u.comp.wid, stdout);
528 nicezputs(w->u.comp.wid, stdout);
614 w->u.comp.wid = ztrdup(args[1]);
/macosx-10.10/groff-38/groff/src/utils/xtotroff/
H A Dxtotroff.c113 int wid; local
184 wid = charWidth(fi, c);
186 fprintf(out, "%s\t%d", name ? name : "---", wid);
189 param[2] = 0; /* charRBearing (fi, c) - wid */
/macosx-10.10/IOKitUser-1050.1.21/graphics.subproj/
H A DIOAccelSurfaceControl.h35 IOReturn IOAccelCreateSurface( io_service_t service, UInt32 wid, eIOAccelSurfaceModeBits modebits, IOAccelConnect *connect );
/macosx-10.10/ruby-106/ruby/ext/tk/lib/
H A Dtcltk.rb36 # TclTk.dcb(ca, wid, W): call TclTk.deletecallbackkey() for each callbacks
40 # wid: top-level widget(TclTkWidget)
42 def TclTk.dcb(ca, wid, w)
43 if wid.to_s() == w
/macosx-10.10/emacs-93/emacs/lisp/calc/
H A Dcalc-keypd.el356 (wid (length name))
357 (pad (- cwid (/ wid 2))))
358 (insert (make-string (/ (- cwid wid) 2) 32)
360 (make-string (/ (- cwid wid -1) 2) 32)
/macosx-10.10/emacs-93/emacs/src/
H A Dgtkutil.h161 extern int xg_get_scroll_id_for_window P_ ((Display *dpy, Window wid));
/macosx-10.10/tcl-105/tcl_ext/snack/snack/demos/tcl/
H A Dformant.tcl55 proc vok4Create {w {wid 200} {hei 200}} {
57 frame $w -width $wid -height $hei
88 proc vok4Config {w {wid -1} {hei -1}} {
91 if {$wid==-1} {
92 set wid $a(width)
95 set a(width) $wid
99 set a(x1) [expr $wid-$a(xm)]

Completed in 388 milliseconds

123