Searched refs:isalpha (Results 1 - 25 of 70) sorted by relevance

123

/ast/src/lib/libast/tm/
H A Dtmword.c38 * if all isalpha() chars in s match then 1 is returned
56 if (!isalpha(c) || c != *t && (islower(c) ? toupper(c) : tolower(c)) != *t)
62 if (!isalpha(c))
76 while (isalpha(c = *s++) && (c == *t || (islower(c) ? toupper(c) : tolower(c)) == *t)) t++;
77 if (!*t && !isalpha(c))
H A Dtmxdate.c277 if ((*s == 'P' || *s == 'p') && (!isalpha(*(s + 1)) || (*(s + 1) == 'T' || *(s + 1) == 't') && !isalpha(*(s + 2))))
808 else if (f == -1 && isalpha(*t) && tmlex(t, &t, tm_info.format + TM_ORDINAL, TM_ORDINALS - TM_ORDINAL, NiL, 0) >= 0)
1089 if (isalpha(*s))
1096 if (isalpha(*s))
1100 if (isalpha(*s))
1104 if (isalpha(*s))
1108 if (isalpha(*s))
1112 if (isalpha(*s))
1578 if (isalpha(*
[all...]
/ast/src/lib/libpp/
H A Dppsym.c48 if (*s++ == '-' && *s++ == 'D' && isalpha(*s))
H A Dppargs.c340 if (isalpha(*s) || *s == '_')
427 if (isalpha(opt_info.arg[0]) || opt_info.arg[0] == '_' || opt_info.arg[0] == '$')
/ast/src/cmd/ksh93/include/
H A Dlexstates.h88 # undef isalpha macro
89 # define isalpha(x) iswalpha(x) macro
110 # define isaname(c) ((c)>0x7f?isalpha(c): sh_lexstates[ST_NAME][(c)]==0)
111 # define isaletter(c) ((c)>0x7f?isalpha(c): sh_lexstates[ST_DOL][(c)]==S_ALP && (c)!='.')
/ast/src/lib/libast/misc/
H A Doptesc.c56 if (isalpha(c) && *s == '(' && isdigit(*(s + 1)) && *(s + 2) == ')')
/ast/src/lib/libast/string/
H A Dccmapid.c151 if (sub[1] > n && !isalpha(c))
H A Dfmtfmt.c167 if (!q && isalpha(c))
H A Dstrelapsed.c147 while (isalpha(*s))
H A Dstrpsearch.c39 * return a pointer to the isalpha() identifier matching
89 else if (!isalpha(*t))
/ast/src/cmd/msgcc/
H A Dmsgcvt.c140 if (c != '#' && !isalpha(c))
533 } while (!isalpha(c) || (!islower(c) || c == 'h' || c == 'l') && isalpha(*s));
/ast/src/cmd/tests/
H A Dopt.c118 } while (!isalpha(c) || (!islower(c) || c == 'h' || c == 'l') && (t < e) && isalpha(*s));
/ast/src/cmd/3d/
H A Dstrmatch.c87 #undef isalpha macro
88 #define isalpha(x) iswalpha(x) macro
506 if (isalpha(sc))
576 else if (isalpha(*oldp) && isalpha(*olds) && tolower(*oldp) == tolower(*olds) || sc == mbgetchar(oldp))
/ast/src/lib/libast/astsa/
H A Dstrmatch.c386 if (isalpha(sc))
438 else if (isalpha(*oldp) && isalpha(*olds) && tolower(*oldp) == tolower(*olds) || sc == mbgetchar(oldp))
/ast/src/lib/libdss/
H A Dcxattr.c187 if (!cx || !isalpha(*s))
/ast/src/cmd/cs/
H A Dtst-old.c101 if (isalpha(dat[0]) && (dat[1] == 0 || isdigit(dat[1]))) switch (dat[0])
H A Dtst.c94 if (isalpha(dat[0]) && (dat[1] == 0 || isdigit(dat[1]))) switch (dat[0])
/ast/src/lib/libcoshell/
H A Dcowait.c348 for (s = e; isalpha(*s) || isspace(*s); s++);
352 for (s = e; isalpha(*s) || isspace(*s); s++);
/ast/src/cmd/std/
H A Dpss-ps.c289 if (*s == '_' || isalpha(*s) && isdigit(*(s + 1)) || isdigit(*s) && isalpha(*(s + 1)))
/ast/src/lib/libcmd/
H A Dtail.c390 if (t > s && isalpha(*(t - 1)))
459 else if (opt_info.arg && isalpha(*opt_info.arg))
475 if (n != 'n' && s && isalpha(*s))
/ast/src/cmd/ksh93/bltins/
H A Dcd_pwd.c148 if(*stakptr(PATH_OFFSET+1)==':' && isalpha(*stakptr(PATH_OFFSET)))
H A Dgetopts.c184 else if (opt_info.arg && opt_info.num > 0 && isalpha((char)opt_info.num) && !isdigit(opt_info.arg[0]) && opt_info.arg[0] != '-' && opt_info.arg[0] != '+')
/ast/src/cmd/mam/
H A Dmamold.c156 if (isalpha(*s) || *s == '_')
/ast/src/cmd/at/
H A Dat.c365 if (!isalpha(*e))
/ast/src/cmd/coshell/
H A Dmisc.c204 if (s && (isalpha(*s) || *s == '_'))
268 else if (isalpha(*cp) || *cp == '_')

Completed in 93 milliseconds

123