Home
last modified time | relevance | path

Searched refs:nextc (Results 1 – 13 of 13) sorted by relevance

/titanic_50/usr/src/cmd/fm/eversholt/common/
H A Desclex.c293 int nextc; in yylex() local
441 if ((nextc = getc(Fp)) == EOF) in yylex()
443 else if (nextc == '*') { in yylex()
461 (void) ungetc(nextc, Fp); in yylex()
496 if ((nextc = getc(Fp)) == '&') in yylex()
499 (void) ungetc(nextc, Fp); in yylex()
508 if ((nextc = getc(Fp)) == '|') in yylex()
511 (void) ungetc(nextc, Fp); in yylex()
520 if ((nextc = getc(Fp)) == '=') in yylex()
523 (void) ungetc(nextc, Fp); in yylex()
[all …]
/titanic_50/usr/src/cmd/projects/
H A Dprojects.c204 char *nextc; in print_projent() local
235 nextc = projent->pj_attr; in print_projent()
236 if (nextc == NULL) { in print_projent()
240 nextsemi = strchr(nextc, ';'); in print_projent()
243 (void) fprintf(stdout, "%s\n", nextc); in print_projent()
246 nextc = nextsemi + 1; in print_projent()
247 nextsemi = strchr(nextc, ';'); in print_projent()
250 (void) fprintf(stdout, "\t %s\n", nextc); in print_projent()
/titanic_50/usr/src/ucbcmd/tr/
H A Dtr.c144 (void)nextc(s); in next()
145 s->max = nextc(s); in next()
156 return(s->last = nextc(s)); in next()
160 nextc(struct string *s) in nextc() function
/titanic_50/usr/src/psm/stand/boot/sparc/common/
H A Dboot_plat.c376 char nextc; in is_netdev() local
378 nextc = options[SEARCHSTRLEN]; in is_netdev()
379 if ((nextc == ',') || (nextc == 0)) in is_netdev()
/titanic_50/usr/src/cmd/captoinfo/
H A Dotermcap.c407 nextc: in tdecode()
414 goto nextc; in tdecode()
/titanic_50/usr/src/ucblib/libtermcap/
H A Dtermcap.c365 nextc: in tdecode()
372 goto nextc; in tdecode()
/titanic_50/usr/src/cmd/tip/
H A Dremcap.c422 nextc: in tdecode()
429 goto nextc; in tdecode()
/titanic_50/usr/src/tools/cscope-fast/
H A Dfind.c1078 char *cp, nextc = '\0'; in putsource() local
1088 while (*cp != '\n' || nextc != '\n') { in putsource()
1089 nextc = *cp; in putsource()
/titanic_50/usr/src/lib/libshell/common/sh/
H A Dlex.c2304 int nextc; member
2345 if(ap->nextc) in alias_exceptf()
2351 *ap->buf = ap->nextc; in alias_exceptf()
2352 ap->nextc = 0; in alias_exceptf()
2380 if((ap->nextc=fcget())==0) in setupalias()
2381 ap->nextc = ' '; in setupalias()
2384 ap->nextc = 0; in setupalias()
/titanic_50/usr/src/cmd/awk_xpg4/
H A Dawk2.c731 nextc: in xprintf()
859 goto nextc; in xprintf()
/titanic_50/usr/src/uts/common/fs/nfs/
H A Dnfs_auth.c1494 struct auth_cache_clnt *nextc; in exi_cache_trim() local
1562 for (c = avl_first(tree); c != NULL; c = nextc) { in exi_cache_trim()
1563 nextc = AVL_NEXT(tree, c); in exi_cache_trim()
/titanic_50/usr/src/lib/libshell/common/edit/
H A Dvi.c1703 int nextc; in mvcursor() local
1710 nextc = virtual[tcur_virt]; in mvcursor()
1711 count = strchr(paren_chars,nextc)-paren_chars; in mvcursor()
1725 else if(virtual[tcur_virt]==nextc) in mvcursor()
/titanic_50/usr/src/lib/libtecla/common/
H A Dgetline.c4164 char nextc = cptr[1]; in gl_print_string() local
4165 if(gl_print_char(gl, *cptr, nextc ? nextc : pad)) in gl_print_string()