Searched refs:isalnum (Results 26 - 50 of 153) sorted by relevance

1234567

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/contrib/src/stc/scintilla/src/
H A DLexAU3.cxx71 return (ch < 0x80) && (isalnum(ch) || ch == '_');
76 return (ch < 0x80) && (isalnum(ch) || ch == '_' || ch == '@' || ch == '#' || ch == '$' || ch == '.');
80 if (isascii(ch) && isalnum(ch))
H A DLexBaan.cxx25 return (ch < 0x80) && (isalnum(ch) || ch == '.' || ch == '_' || ch == '$' || ch == ':');
29 return (ch < 0x80) && (isalnum(ch) || ch == '_');
H A DLexCLW.cxx59 return(isalnum(iChar) || iChar == '_' || iChar == ':');
384 if (!isalnum(scDoc.ch)) {
H A DLexEScript.cxx25 return (ch < 0x80) && (isalnum(ch) || ch == '.' || ch == '_');
29 return (ch < 0x80) && (isalnum(ch) || ch == '_');
H A DLexLua.cxx28 (isalnum(ch) || ch == '.' || ch == '_');
46 if (ch >= 0x80 || isalnum(ch)) {
H A DLexSpecman.cxx26 return (ch < 0x80) && (isalnum(ch) || ch == '.' || ch == '_' || ch == '\'');
30 return (ch < 0x80) && (isalnum(ch) || ch == '_' || ch == '\'');
34 return (ch < 0x80) && (isalnum(ch) || ch == '_' || ch == '`');
H A DLexAPDL.cxx26 return (ch < 0x80 && (isalnum(ch) || ch == '_'));
H A DLexBash.cxx94 return !isalnum(ch) && ch != '$' && ch != '_';
98 return isalnum(ch) || ch == '_';
341 && !isalnum((chNext2 = styler.SafeGetCharAt(i+2)))) {
494 if (isalnum(ch) || ch == '_' || ch == '-' || ch == '+' || ch == '!') {
H A DLexCrontab.cxx166 if( isalnum(ch) || (ch == '_') || (ch == '-') || (ch == '/') ||
H A DLexSQL.cxx24 return (ch < 0x80) && (isalnum(ch) || ch == '.' || ch == '_');
H A DLexPerl.cxx72 return !isalnum(ch) && ch != '#' && ch != '$' &&
78 return isalnum(ch) || ch == '_';
341 (chNext != '_' && !isalnum(chNext)) ||
701 && !isalnum((chNext2 = styler.SafeGetCharAt(i+2)))) {
751 } else if (isalnum(ch)) {
898 if (isalnum(ch) || ch == '_') {
1031 else if (isalnum(ch)) {
H A DLexPython.cxx86 return (ch < 0x80) && (isalnum(ch) || ch == '.' || ch == '_');
90 return (ch < 0x80) && (isalnum(ch) || ch == '_');
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/ncftp-3.2.5/source/libncftp/
H A Du_pathcat.c34 if ((! isalnum(c)) && (c != '_'))
45 if ((! isalnum(c)) && (c != '_'))
H A Dlglob.c30 (isalnum((int) pattern[1]) || IsLocalPathDelim(pattern[1]) || (pattern[1] == '\0'))) {
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/crypto/
H A Dalgboss.c114 for (p = name; isalnum(*p) || *p == '-' || *p == '_'; p++)
130 for (; isalnum(*p) || *p == '-' || *p == '_'; p++)
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/scripts/basic/
H A Dfixdep.c242 if (!(isalnum(*q) || *q == '_'))
323 do p--; while (!isalnum(*p));
H A Ddocproc.c220 while (isalnum(*p) || *p == '_')
232 while (isalnum(*e) || *e == '_')
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/tools/perf/util/
H A Dutil.h208 #undef isalnum macro
227 #define isalnum(x) sane_istest(x,GIT_ALPHA | GIT_DIGIT) macro
/netgear-R7000-V1.0.7.12_1.2.5/src/router/busybox-1.x/scripts/basic/
H A Ddocproc.c187 while (isalnum(*p) || *p == '_')
199 while (isalnum(*e) || *e == '_')
H A Dfixdep.c254 if (!(isalnum(*q) || *q == '_'))
328 do p--; while (!isalnum(*p));
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/gettext-0.17/gettext-tools/libgrep/
H A Dm-fgrep.c38 #define ISALNUM(C) (IN_CTYPE_DOMAIN (C) && isalnum (C))
/netgear-R7000-V1.0.7.12_1.2.5/src/router/busybox-1.x/findutils/
H A Dgrep.c185 if (!isalnum(c) && c != '_') {
187 if (!c || (!isalnum(c) && c != '_'))
/netgear-R7000-V1.0.7.12_1.2.5/src/router/busybox-1.x/libbb/
H A Dlineedit.c994 if (isalnum(command[cursor]) || command[cursor] == '_') {
996 && (isalnum(command[cursor+1]) || command[cursor+1] == '_'))
1031 if (isalnum(command[cursor]) || command[cursor] == '_') {
1033 && (isalnum(command[cursor+1]) || command[cursor+1] == '_')
1062 if (isalnum(command[cursor]) || command[cursor] == '_') {
1064 && (isalnum(command[cursor-1]) || command[cursor-1] == '_')
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/sound/core/
H A Dinit.c505 while (*spos != '\0' && !isalnum(*spos))
510 if (isalnum(*spos))
598 if (!isalnum(c) && c != '_' && c != '-')
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/netatalk-2.2.5/bin/ad/
H A Dad_ls.c363 if (isalnum(type[i]))
370 if (isalnum(creator[i]))

Completed in 236 milliseconds

1234567