Searched refs:ksh_isdigit (Results 1 – 12 of 12) sorted by relevance
250 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()
447 } 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()
1107 while (ksh_isdigit(*s)) { in parse_usec()1129 while (ksh_isdigit(*s)) { in parse_usec()1136 while (ksh_isdigit(*s)) in parse_usec()
847 if (ksh_isdigit(c)) { in shf_vfprintf()851 while (c = *fmt++, ksh_isdigit(c)) { in shf_vfprintf()
548 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()
1350 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()
682 } else if (ksh_isdigit(c)) { in exprtoken()
1124 if (ksh_isdigit(*cs)) in gettrap()
2993 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()
1655 if (ksh_isdigit(*cp) && getn(cp, &job)) { in j_lookup()
1473 while (ksh_isdigit(*name)) { in check_fd()
990 #define ksh_isdigit(c) (((c) >= '0') && ((c) <= '9')) macro