Home
last modified time | relevance | path

Searched refs:ksh_isdigit (Results 1 – 12 of 12) sorted by relevance

/external/mksh/src/
Dvar.c250 if (ksh_isdigit(c)) { in global()
533 } else if (Flag(FPOSIX) && ksh_isdigit(s[0]) && in getint()
570 if (ksh_isdigit(c)) in getint()
780 if (!ksh_isdigit(val[i])) in typeset()
825 if (ksh_isdigit(qval[0])) { in typeset()
Dlex.c447 } else if (ksh_isdigit(c) || in yylex()
918 if (!ksh_isdigit(dp[c2 + 1])) in yylex()
1593 else if (ksh_isdigit(c)) in get_brace_var()
1632 if (!ksh_isdigit(c)) in get_brace_var()
Dsyn.c1107 while (ksh_isdigit(*s)) { in parse_usec()
1129 while (ksh_isdigit(*s)) { in parse_usec()
1136 while (ksh_isdigit(*s)) in parse_usec()
Dshf.c847 if (ksh_isdigit(c)) { in shf_vfprintf()
851 while (c = *fmt++, ksh_isdigit(c)) { in shf_vfprintf()
Dmisc.c548 if (!ksh_isdigit(c)) in getn()
1089 if (ksh_isdigit(argv[go->optind - 1][go->p])) { in ksh_getopt()
1095 if (argv[go->optind] && ksh_isdigit(argv[go->optind][0])) { in ksh_getopt()
Dfuncs.c1350 if ((p = wp[1]) && *p == '-' && (ksh_isdigit(p[1]) || in c_kill()
1696 if (ksh_isdigit(*cp)) { in c_umask()
3578 if (!rval && !ksh_isdigit(v[0])) { in set_ulimit()
Dexpr.c682 } else if (ksh_isdigit(c)) { in exprtoken()
Dhistrap.c1124 if (ksh_isdigit(*cs)) in gettrap()
Dedit.c2993 while (c >= 0 && ksh_isdigit(c)) { in x_set_arg()
3728 if (ksh_isdigit(ch)) in vi_hook()
3754 if (ksh_isdigit(ch)) in vi_hook()
Djobs.c1655 if (ksh_isdigit(*cp) && getn(cp, &job)) { in j_lookup()
Dmain.c1473 while (ksh_isdigit(*name)) { in check_fd()
Dsh.h990 #define ksh_isdigit(c) (((c) >= '0') && ((c) <= '9')) macro