Home
last modified time | relevance | path

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

/external/mksh/src/
Dvar.c240 if (ksh_isdigit(c)) { in global()
241 for (c = 0; ksh_isdigit(*n); n++) in global()
497 if (Flag(FPOSIX) && arith && s[0] == '0' && ksh_isdigit(s[1]) && in getint()
529 } else if (ksh_isdigit(c)) in getint()
730 if (!ksh_isdigit(val[i])) in typeset()
Dlex.c460 } else if (ksh_isdigit(c) || in yylex()
922 if (!ksh_isdigit(dp[c2 + 1])) in yylex()
1596 else if (ksh_isdigit(c)) in get_brace_var()
1635 if (!ksh_isdigit(c)) in get_brace_var()
Dsyn.c1075 while (ksh_isdigit(*s)) { in parse_usec()
1096 while (ksh_isdigit(*s)) { in parse_usec()
1103 while (ksh_isdigit(*s)) in parse_usec()
Dshf.c852 if (ksh_isdigit(c)) { in shf_vfprintf()
856 while (c = *fmt++, ksh_isdigit(c)) { in shf_vfprintf()
Dmisc.c552 if (!ksh_isdigit(c)) in getn()
1093 if (ksh_isdigit(argv[go->optind - 1][go->p])) { in ksh_getopt()
1099 if (argv[go->optind] && ksh_isdigit(argv[go->optind][0])) { in ksh_getopt()
Dfuncs.c1306 if ((p = wp[1]) && *p == '-' && (ksh_isdigit(p[1]) || in c_kill()
1636 if (ksh_isdigit(*cp)) { in c_umask()
3606 if (!rval && !ksh_isdigit(v[0])) { in set_ulimit()
Dexpr.c681 } else if (ksh_isdigit(c)) { in exprtoken()
Dhistrap.c1080 if (ksh_isdigit(*cs)) { in gettrap()
Dedit.c2982 while (c >= 0 && ksh_isdigit(c)) { in x_set_arg()
3689 if (ksh_isdigit(ch)) in vi_hook()
3715 if (ksh_isdigit(ch)) in vi_hook()
Dmain.c1506 for (fd = 0; ksh_isdigit(*name); ++name) in check_fd()
Djobs.c1579 if (ksh_isdigit(*cp)) { in j_lookup()
Dsh.h296 #define ksh_isdigit(c) (((c) >= '0') && ((c) <= '9')) macro