/illumos-gate/usr/src/cmd/troff/nroff.d/ |
H A D | n6.c | 132 getch(); in setabs() 135 getch(); in setabs() 177 i = cbits(getch()); in setps() 182 else if (i <= 3 && ischar(j = cbits(ch = getch())) && in setps() 187 getch(); in setps() 188 getch(); in setps() 190 j = cbits(getch()); in setps() 194 getch(); in setps() 195 getch(); in setps() 207 getch(); in setht() [all …]
|
/illumos-gate/usr/src/cmd/troff/ |
H A D | n9.c | 77 if (!ismot(i = getch())) in setz() 91 if (ismot(c = getch())) in setline() 103 if ((cbits(c = getch())) == delim) { in setline() 145 while ((i = cbits(getch())) != c && (i != '\n')) in eat() 158 if (ismot(i = getch())) in setov() 161 for (k = 0; (k < NOV) && ((j = cbits(i = getch())) != delim) && in setov() 208 if (ismot(i = getch())) in setbra() 219 while (((k = cbits(i = getch())) != delim) && (k != '\n') && in setbra() 254 if (ismot(c = getch())) in setvline() 266 if ((cbits(c = getch())) == delim) { in setvline() [all …]
|
H A D | n4.c | 434 ii = getch(); in atoi0() 495 if (cbits(ii = getch()) != '=') in atoi0() 509 if (cbits(ii = getch()) == '=') in atoi0() 525 if (cbits(ii = getch()) == '=') in atoi0() 556 if (cbits(i = getch()) == '(') in ckph() 580 ii = getch(); 584 ii = getch(); 589 ii = getch(); 599 ii = getch(); 605 ii = getch(); [all …]
|
H A D | n5.c | 69 switch (i = cbits(getch())) { in casead() 152 if (skip() || ismot(i = getch()) || cbits(i) == ' ' || cbits(i) == '\n') { 509 if ((tmbuf[i++] = getch()) == '\n') 695 if ((cbits(i = getch())) == '!') { 707 i = getch(); 738 while ((cbits(i = getch())) == ' ') 808 while ((j = cbits(i = getch()))!=delim && j!='\n' && sp<&string[1280-1]) 828 while ((j = cbits(i = getch())) != delim && j != '\n') { 1025 while ((i = cbits(k=getch())) != '\n') { in casetr() 1028 if (ismot(k = getch())) in casetr() [all …]
|
H A D | n3.c | 338 while (cbits(i = getch()) == ' ') in skip() 370 i = cbits(ii = getch()); in copyb() 421 if (cbits(i = getch()) != '"') in copys() 423 while (cbits(i = getch()) != '\n') in copys() 803 if (cbits(i = getch()) == '"') in collect() 808 i = getch(); in collect() 813 && (cbits(i = getch()) != '"')) { in collect() 846 i = cbits(getch()) - '0'; in seta() 932 if (ismot(delim = getch())) { in casetl() 941 while (cbits(i = getch()) != '\n') { in casetl()
|
H A D | n1.c | 282 i = getch(); in main() 289 pchar(i = getch()); in main() 298 while ((j = cbits(i = getch())) == ' ' || j == '\t') in main() 732 getch() in getch() function 988 if (ismot(c = getch())) in setxon() 993 while ((k = cbits(c = getch())) != delim && k != '\n' && i < xbuf+NC-1) { in setxon() 1261 getch(); in flushi() 1276 j = cbits(i = getch()); 1325 if (((j = cbits(i = getch())) <= ' ') || (j > 0176)) 1328 if (((j = cbits(i = getch())) <= ' ') || (j > 0176)) [all …]
|
H A D | n8.c | 148 if (ismot(t = getch())) in casehw()
|
H A D | n7.c | 56 #define GETCH getch 1064 i = getch();
|
/illumos-gate/usr/src/cmd/troff/troff.d/ |
H A D | t6.c | 278 getch(); in setabs() 281 getch(); in setabs() 387 i = cbits(getch()); in setps() 392 else if (i <= 3 && ischar(j = cbits(ch = getch())) && in setps() 399 j = cbits(getch()) - '0'; in setps() 400 j = 10 * j + cbits(getch()) - '0'; in setps() 404 j = cbits(getch()); in setps() 408 j = cbits(getch()) - '0'; in setps() 409 j = 10 * j + cbits(getch()) - '0'; in setps() 426 getch(); in setht() [all …]
|
/illumos-gate/usr/src/tools/ndrgen/ |
H A D | ndr_lex.c | 155 static int getch(FILE *fp); 192 getch(FILE *fp) in getch() function 210 c = getch(fp); in yylex() 228 while ((c = getch(fp)) != EOF && c != '\n') in yylex() 264 c = getch(fp); in yylex() 287 c = getch(fp); in yylex() 292 c = getch(fp); in yylex() 300 c = getch(fp); in yylex() 307 c = getch(fp); in yylex() 310 c = getch(fp); in yylex() [all …]
|
/illumos-gate/usr/src/cmd/bc/ |
H A D | bc.y | 654 c = getch(); in yylex() 657 c = getch(); in yylex() 659 (void) getch(); in yylex() 664 peekc = getch(); in yylex() 731 while ((ch = getch()) >= 'a' && ch <= 'z') in yylex() 753 switch ((peekc = getch())) { in yylex() 814 if ((peekc = getch()) == '=') { in yylex() 820 while ((getch() != '*') || ((peekc = getch()) != '/')) in yylex() 830 while ((c = getch()) != '"') { in yylex() 850 peekc = getch(); in cpeek() [all …]
|
/illumos-gate/usr/src/lib/libxcurses2/src/libc/xcurses/ |
H A D | getch.c | 47 #undef getch 50 getch(void) in getch() function
|
/illumos-gate/usr/src/lib/libxcurses/src/libc/xcurses/ |
H A D | getch.c | 44 #undef getch 47 getch() in getch() function
|
/illumos-gate/usr/src/cmd/unpack/ |
H A D | unpack.c | 82 static int getch(); 510 if ((i = getch()) == 0377) in expand() 566 getch() in getch() function 593 c = getch(); in getwdsize() 594 d = getch(); in getwdsize()
|
/illumos-gate/usr/src/cmd/sh/ |
H A D | macro.c | 39 static int getch(); 51 while ((c = getch(endch, trimflag)) != endch && c) in copyto() 165 int getch(endch, trimflag) in getch() function 586 while (c = (getch(DQUOTE, 0))) /* read characters from here document in subst()
|
/illumos-gate/usr/src/lib/libcurses/screen/ |
H A D | _getch.c | 47 getch(void) in getch() function
|
/illumos-gate/usr/src/cmd/abi/spectrans/spec2trace/ |
H A D | parseproto.y | 624 static int getch(void); 768 switch (c = getch()) { in yylex() 799 c = getch(); in yylex() 817 } while (isdigit(c = getch())); in yylex() 834 getch(void) { in getch() function 858 while (isspace(c = getch())) in skipwhitespace() 871 switch (c = getch()) { in skipcomment() 887 int ch = getch(); in lookahead()
|
/illumos-gate/usr/src/ucblib/libcurses/ |
H A D | Makefile.com | 46 getch.o \
|
/illumos-gate/usr/src/tools/cscope-fast/ |
H A D | input.c | 79 c = getch(); /* get a character from the terminal */ in mygetch()
|
/illumos-gate/usr/src/cmd/scadm/sparc/mpxu/common/ |
H A D | modem_setup.c | 120 while ((Input = getch()) == ERR) in ADM_Process_modem_setup()
|
/illumos-gate/usr/src/man/man3xcurses/ |
H A D | Makefile | 69 getch.3xcurses \ 558 mvgetch.3xcurses := LINKSRC = getch.3xcurses 559 mvwgetch.3xcurses := LINKSRC = getch.3xcurses 560 wgetch.3xcurses := LINKSRC = getch.3xcurses
|
/illumos-gate/usr/src/grub/grub-0.97/grub/ |
H A D | asmstub.c | 662 c = getch (); in console_checkkey() 693 c = getch (); in console_getkey()
|
/illumos-gate/usr/src/lib/libxcurses2/ |
H A D | Makefile.com | 43 attron.o getch.o newpad.o tigetfla.o wget_wch.o \
|
/illumos-gate/usr/src/lib/libxcurses/ |
H A D | Makefile.com | 45 attron.o getch.o newpad.o tigetfla.o wget_wch.o \
|
/illumos-gate/usr/src/lib/libxcurses/src/ |
H A D | mapfile-vers | 119 getch;
|