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

/macosx-10.10.1/ruby-106/ruby/ext/curses/
H A Drain.rb28 xpos = {}
33 xpos[i] = (c * ranf).to_i + 2
45 setpos(ypos[i], xpos[i]); addstr("o")
48 setpos(ypos[i], xpos[i]); addstr("O")
51 setpos(ypos[i] - 1, xpos[i]); addstr("-")
52 setpos(ypos[i], xpos[i] - 1); addstr("|.|")
53 setpos(ypos[i] + 1, xpos[i]); addstr("-")
56 setpos(ypos[i] - 2, xpos[i]); addstr("-")
57 setpos(ypos[i] - 1, xpos[i] - 1); addstr("/ \\")
58 setpos(ypos[i], xpos[
[all...]
/macosx-10.10.1/ruby-106/ruby/ext/tk/sample/demos-en/
H A Dpuzzle.rb89 $xpos = {}
94 $xpos[num] = (i % 4) * 0.25
104 }.place('relx'=>$xpos[num], 'rely'=>$ypos[num],
107 $xpos['space'] = 0.75
119 && ($xpos[num] >= ($xpos['space'] - 0.26)) \
120 && ($xpos[num] <= ($xpos['space'] + 0.26))) \
121 || (($xpos[num] >= ($xpos['spac
[all...]
/macosx-10.10.1/ruby-106/ruby/ext/tk/sample/demos-jp/
H A Dpuzzle.rb91 $xpos = {}
96 $xpos[num] = (i % 4) * 0.25
106 }.place('relx'=>$xpos[num], 'rely'=>$ypos[num],
109 $xpos['space'] = 0.75
116 && ($xpos[num] >= ($xpos['space'] - 0.26)) \
117 && ($xpos[num] <= ($xpos['space'] + 0.26))) \
118 || (($xpos[num] >= ($xpos['spac
[all...]
/macosx-10.10.1/tcl-105/tk/tk/library/demos/
H A Dpuzzle.tcl20 global xpos ypos
23 && ($xpos($num) >= ($xpos(space) - .26))
24 && ($xpos($num) <= ($xpos(space) + .26)))
25 || (($xpos($num) >= ($xpos(space) - .01))
26 && ($xpos($num) <= ($xpos(space) + .01))
29 set tmp $xpos(spac
[all...]
/macosx-10.10.1/tcl-105/tk84/tk/library/demos/
H A Dpuzzle.tcl18 global xpos ypos
21 && ($xpos($num) >= ($xpos(space) - .26))
22 && ($xpos($num) <= ($xpos(space) + .26)))
23 || (($xpos($num) >= ($xpos(space) - .01))
24 && ($xpos($num) <= ($xpos(space) + .01))
27 set tmp $xpos(spac
[all...]
/macosx-10.10.1/top-100.1.2/
H A Dgeneric.c119 int yheight, xwidth, xpos; local
136 xpos = ((xwidth - xoffset) / 2) - (slen / 2);
138 if(xpos < 0) {
143 xpos = 0;
148 if((slen + xpos) >= xwidth) {
150 n = xwidth - xpos - xoffset;
154 xpos = 0;
158 mvwaddnstr(s->window, yoffset, xpos + xoffset, string, n);
162 xpos = xwidth - slen - xoffset;
164 if(xpos < xoffse
[all...]
/macosx-10.10.1/ncurses-44/ncurses/test/
H A Dworm.c93 short *xpos; member in struct:worm
240 if ((x = w->xpos[h = w->head]) < 0) {
241 wmove(win, y = w->ypos[h] = last_y, x = w->xpos[h] = 0);
256 if (w->xpos[w->head = h] >= 0) {
258 x1 = w->xpos[h];
308 w->xpos[h] = x;
516 w->xpos = ip;
594 free(w->xpos);
H A Ddemo_panels.c102 int xpos)
106 wprintw(win, "%s for panel %d now %d,%d%s", text, which, ypos, xpos, also);
107 wmove(stdscr, ypos, xpos);
114 int *xpos,
190 *xpos = x1;
98 show_position(NCURSES_CONST char *text, NCURSES_CONST char *also, int which, int ypos, int xpos) argument
111 get_position(NCURSES_CONST char *text, NCURSES_CONST char *also, int which, int *xpos, int *ypos) argument
/macosx-10.10.1/OpenSSL098-52/src/apps/
H A Dengine.c207 int xpos = 0; local
253 if(xpos == 0)
255 xpos = BIO_puts(bio_out, indent);
258 xpos += BIO_printf(bio_out, ", ");
262 if((xpos > (int)strlen(indent)) &&
263 (xpos + (int)strlen(name) > line_wrap))
266 xpos = BIO_puts(bio_out, indent);
268 xpos += BIO_printf(bio_out, "%s", name);
279 xpos = 0;
288 if(xpos >
[all...]
/macosx-10.10.1/ruby-106/ruby/ext/tk/sample/
H A Dtktree.rb51 def labelat(xpos, ypos)
52 tk_call('::tktree::delitem', @path, xpos, ypos)
H A Dtktree.tcl171 proc ::tktree::buildlayer {win layer xpos} {
186 set centerX [expr $imgwidth + $xpos + 7]
187 set rightX [expr $xpos + 7]
188 set textX [expr ($imgwidth * 2) + $xpos + 10]
190 set centerX [expr $xpos + 10]
200 $win create line $xpos $cfg($win,y) $rightX $cfg($win,y) -fill $cfg($win,linecolor)
219 set ocimg [$win create image $xpos [expr $cfg($win,y) - $yincr] -image [eval list \$::tktree::img$img]]
225 $win lower [$win create line $xpos [expr $ystart - 7] $xpos $yend -fill $cfg($win,linecolor)]
242 set xpos
[all...]
/macosx-10.10.1/emacs-93/emacs/src/
H A Dsunfns.c452 int button, xpos, ypos;
465 xpos = CtoSX (WINDOW_LEFT_EDGE_COL (XWINDOW (window))
473 xpos += XINT (XCDR (Pair));
482 event_set_x (event, xpos);
445 int button, xpos, ypos; variable
H A Dw32menu.c657 int xpos = 0, ypos = 0;
723 xpos = 0;
731 xpos = WINDOW_LEFT_EDGE_X (XWINDOW (window));
739 xpos += XINT (x);
840 selection = w32_menu_show (f, xpos, ypos, for_click,
650 int xpos = 0, ypos = 0; variable
H A Dmacmenu.c702 int xpos = 0, ypos = 0;
770 xpos = 0;
778 xpos = WINDOW_LEFT_EDGE_X (XWINDOW (window));
786 xpos += XINT (x);
876 selection = mac_menu_show (f, xpos, ypos, for_click,
695 int xpos = 0, ypos = 0; variable
H A Dxmenu.c830 int xpos = 0, ypos = 0;
928 xpos = 0;
936 xpos = WINDOW_LEFT_EDGE_X (XWINDOW (window));
944 xpos += XINT (x);
1036 selection = xmenu_show (f, xpos, ypos, for_click,
822 int xpos = 0, ypos = 0; variable
H A Dxterm.c8759 int xpos = f->output_data.x->widget->core.x;
8762 f->output_data.x->widget->core.x = xpos;
8731 int xpos = f->output_data.x->widget->core.x; local
/macosx-10.10.1/tcl-105/tcl_ext/tkimg/tkimg/tiff/
H A DtiffJpeg.c914 int clumpoffset, ci, xpos, ypos; local
962 for (xpos = 0; xpos < hsamp; xpos++)
963 outptr[xpos] = *inptr++;
1332 int clumpoffset, ci, xpos, ypos; local
1369 for (xpos = 0; xpos < hsamp; xpos++)
1370 *outptr++ = inptr[xpos];
[all...]
/macosx-10.10.1/tcl-105/tcl_ext/tkimg/tkimg/compat/libtiff/libtiff/
H A Dtif_jpeg.c1042 int xpos; local
1046 for (xpos = 0; xpos < hsamp; xpos++)
1047 outptr[xpos] = *inptr++;
1459 int clumpoffset, ci, xpos, ypos; local
1505 for (xpos = 0; xpos < hsamp; xpos++)
1506 *outptr++ = inptr[xpos];
[all...]
/macosx-10.10.1/tcl-105/tcl_ext/tkimg/tkimg/compat/libjpeg/
H A Djccoefct.c150 JDIMENSION ypos, xpos; local
174 xpos = MCU_col_num * compptr->MCU_sample_width;
183 ypos, xpos, (JDIMENSION) blockcnt);
/macosx-10.10.1/tcl-105/tcl_ext/tkimg/tkimg/gif/
H A Dgif.c752 int xpos = 0, ypos = 0, pass = 0, i;
809 for (xpos = 0; xpos < len; ) {
920 xpos++;
748 int xpos = 0, ypos = 0, pass = 0, i; local
/macosx-10.10.1/tcl-105/tk/tk/generic/
H A DtkImgGIF.c871 int xpos = 0, ypos = 0, pass = 0, i;
937 for (xpos = 0; xpos < len; ) {
1070 xpos++;
862 int xpos = 0, ypos = 0, pass = 0, i; local
/macosx-10.10.1/tcl-105/tk84/tk/generic/
H A DtkImgGIF.c815 int xpos = 0, ypos = 0, pass = 0, i;
878 for (xpos = 0; xpos < len; ) {
1000 xpos++;
810 int xpos = 0, ypos = 0, pass = 0, i; local
/macosx-10.10.1/bind9-45.101/bind9/lib/dns/
H A Djournal.c329 unsigned int xpos; /*%< Current position in it */ member in struct:dns_journal::__anon6457
1577 j->it.xpos = 0; /* ...and haven't used any of it. */
1599 if (j->it.xpos == j->it.xsize) {
1620 j->it.xpos = 0;
1685 j->it.xpos += sizeof(journal_rawrrhdr_t) + rrhdr.size;
/macosx-10.10.1/tcl-105/tk/tk/generic/ttk/
H A DttkTreeview.c1359 int xpos = tv->tree.treeArea.x - tv->tree.xscroll.first; local
1363 int next_xpos = xpos + column->width;
1364 if (xpos <= x && x <= next_xpos + HALO) {
1369 xpos = next_xpos;
1473 int xpos = 0, i = FirstColumn(tv); local
1478 xpos += tv->tree.displayColumns[i]->width;
1484 bbox.x += xpos;
/macosx-10.10.1/vim-55/src/
H A Dgui_x11.c1765 Dimension xpos, ypos; local
1768 XtNx, &xpos,
1771 *x = xpos;

Completed in 423 milliseconds