Searched refs:isalnum (Results 1 - 25 of 28) sorted by relevance

12

/haiku/src/apps/haikudepot/server/
H A DJwtTokenHelper.cpp74 return isalnum(ch)
/haiku/src/system/libroot/posix/locale/
H A Dctype.cpp11 #undef isalnum macro
44 isalnum(int c) function
/haiku/src/add-ons/kernel/partitioning_systems/atari/
H A Datari.cpp111 if (!isalnum(p->id[0]))
113 if (!isalnum(p->id[1]))
115 if (!isalnum(p->id[2]))
179 if (!isalnum(p->id[0]))
181 if (!isalnum(p->id[1]))
183 if (!isalnum(p->id[2]))
/haiku/src/add-ons/input_server/methods/pen/
H A DDumpMessage.cpp17 if (isalnum(c))
232 if ( isalnum(field_code & 0x0ff) &&
233 isalnum((field_code >> 8) & 0x0ff) &&
234 isalnum((field_code >> 16) & 0x0ff) &&
235 isalnum((field_code >> 24) & 0x0ff))
/haiku/headers/posix/
H A Dctype.h16 int isalnum(int);
86 #define isalnum(c) __isctype((c), _ISalnum) macro
/haiku/src/tests/servers/app/code_to_name/
H A Dcode_to_name.cpp37 while (isalnum(line[0]) || line[0] == '_') {
/haiku/src/apps/terminal/
H A DPatternEvaluator.cpp83 while (pattern[0] != '\0' && !isalnum(pattern[0])) {
/haiku/src/system/libroot/posix/glibc/ctype/
H A Dctype.h96 __exctype (isalnum); variable
155 # define isalnum(c) __isctype((c), _ISalnum) macro
/haiku/src/kits/package/
H A DUser.cpp125 if (!isalnum(name[0]) && name[0] != '_')
H A DPackageInfoStringBuilder.h232 if (isalnum(*it) || *it == '.' || *it == '-' || *it == '_'
/haiku/src/tools/
H A Dexec.c133 || isalnum(val[nameLen])) {
/haiku/src/kits/storage/mime/
H A DTextSnifferAddon.cpp245 isalnum((unsigned char)tp[0]) &&
247 isalnum((unsigned char)tp[1]) &&
/haiku/src/bin/pc/
H A Dpc.c1078 while(**str && (isalnum(**str) || **str == '_'))
1094 while (isalnum(**str) || **str == '_') /* skip over any remaining junk */
/haiku/src/kits/support/
H A DUrl.cpp957 return isalnum(c) || c == '+' || c == '.' || c == '-';
1412 else if (!isalnum(c) && c != '+' && c != '-' && c != '.')
1423 return isalnum(c) || c == '-' || c == '.' || c == '_' || c == '~';
1461 return ((uint8) c) > 127 || isalnum(c) || c == '-' || c == '_' || c == '.'
/haiku/src/preferences/time/
H A DNetworkTimeView.cpp573 if (!(isalnum(c) || c == '.' || c == '-' || c == '_'))
/haiku/src/tools/gensyscalls/
H A Dgensyscalls.cpp643 while (*type == '_' || isalnum(*type))
/haiku/src/bin/pcmcia-cs/
H A Dcardctl.c593 if (!isalnum(new[i])) break;
/haiku/src/system/libroot/posix/glibc/regex/
H A Dregex_internal.h477 #define IS_WORD_CHAR(ch) (isalnum (ch) || (ch) == '_')
H A Dregcomp.c939 if (isalnum (ch) || ch == '_')
3521 BUILD_CHARCLASS_LOOP (isalnum);
/haiku/src/apps/deskbar/
H A DResourceSet.cpp564 while ((isalnum(*in) || *in == '_')
/haiku/src/apps/mail/
H A DContent.cpp243 if (!strncasecmp(a, (char *)newlineTags[i], length) && !isalnum(a[length])) {
302 while (urlPos >= startIndex && (isalnum(string.ByteAt(urlPos - 1))
2131 if (isalnum(text[pos]) || isspace(text[pos]))
/haiku/src/bin/rc/
H A Ddecompile.cpp142 if (name[t] != '_' && !isalnum(name[t]))
/haiku/src/bin/network/ftpd/
H A Dftpcmd.y1452 && !isalnum(cbuf[cpos + 3])) {
/haiku/src/system/libroot/stubbed/
H A Dlibroot_stubs.c1927 void isalnum() {} function
H A Dlibroot_stubs_legacy.c1894 void isalnum() {} function

Completed in 475 milliseconds

12