Searched refs:isdigit (Results 1 - 25 of 96) sorted by path

1234

/haiku/src/add-ons/kernel/debugger/demangle/
H A Dgcc2.cpp194 while (isdigit(arg[0]))
199 if (arg[0] == '_' && (!numberLeft || isdigit(arg[1]))) {
263 } else if (isdigit(mangled[0]))
277 if (!isdigit(mangled[0]))
293 return arg[0] == 'Q' || isdigit(arg[0]);
316 if (_arg[0] != 'Q' && !isdigit(_arg[0]))
474 if (!isdigit(namespaceStart[0]))
529 if (!isdigit(namespaceStart[0]))
/haiku/src/add-ons/kernel/file_systems/nfs4/
H A DInode.cpp539 if (owner != NULL && isdigit(owner[0]))
549 if (group != NULL && isdigit(group[0]))
/haiku/src/add-ons/kernel/network/ppp/shared/libppp/
H A DPPPManager.cpp473 else if (!strncmp(name, "ppp", 3) && strlen(name) > 3 && isdigit(name[3]))
475 else if (isdigit(name[0]))
/haiku/src/apps/aboutsystem/
H A DUtilities.cpp444 while (string[start] != '\0' && !isdigit(string[start]))
452 while (string[end] != '\0' && isdigit(string[end]))
/haiku/src/apps/debugger/user_interface/gui/inspector_window/
H A DMemoryView.cpp404 if (isdigit(bytes[0]))
/haiku/src/apps/debugger/user_interface/gui/team_window/
H A DSourceView.cpp1741 if (!isalpha(line[end]) && !isdigit(line[end]))
1746 if (!isalpha(line[start - 1]) && !isdigit(line[start - 1]))
/haiku/src/apps/terminal/
H A DPatternEvaluator.cpp91 if (isdigit(*pattern)) {
/haiku/src/apps/workspaces/
H A DWorkspaces.cpp1066 } else if (isdigit(*argv[i])) {
/haiku/src/bin/addattr/
H A DaddAttr.cpp106 || (isdigit(value[0]) && int64value == 1))
110 || (isdigit(value[0]) && int64value == 0))
/haiku/src/bin/
H A Dfdinfo.cpp133 if (isdigit(argv[1][0]))
H A Dshutdown.cpp46 if (isdigit(arg[0])) {
48 } else if (argv && isdigit(argv[0])) {
/haiku/src/bin/network/telnetd/
H A Dtelnetd.c705 if (!isdigit(remote_hostname[0]) && strlen(remote_hostname) > utmp_len)
/haiku/src/bin/pc/
H A Dpc.c863 else if (isdigit(**str)) /* a regular number */
/haiku/src/bin/screenmode/
H A Dscreenmode.cpp220 } else if (isdigit(argv[i][0]) && i + 1 == argc) {
/haiku/src/bin/unzip/
H A Dbeos.c493 while (isdigit((uch)(*pp)))
H A Dtimezone.c262 while ((c = *strp) != '\0' && !isdigit(c) && c != ',' && c != '-' &&
277 if (strp == NULL || !isdigit(c = *strp))
285 } while (isdigit(c));
373 } else if (isdigit(*strp)) {
/haiku/src/build/libshared/
H A DNaturalCompare.cpp44 while (!isdigit(source[pos]) && !isspace(source[pos])
62 while (isdigit(source[pos])) {
98 else if (isdigit(stringA[indexA]) || isspace(stringA[indexA]))
105 else if (isdigit(stringB[indexB]) || isspace(stringB[indexB]))
/haiku/src/kits/debugger/source_language/c_family/
H A DCLanguageTokenizer.cpp113 if (decimal || isdigit(*fCurrentChar)) {
122 while (isdigit(*fCurrentChar)) {
135 while (isdigit(*fCurrentChar)) {
168 || isdigit(*fCurrentChar) || *fCurrentChar == '_')) {
434 return isdigit(c) || (c >= 'a' && c <= 'f') || (c >= 'A' && c <= 'F');
/haiku/src/kits/tracker/
H A DTrackerString.cpp203 || (isdigit(start) && isdigit(stop))) {
/haiku/src/libs/bsd/
H A Dunvis.c85 #define xtod(c) (isdigit(c) ? (c - '0') : ((tolower(c) - 'a') + 10))
86 #define XTOD(c) (isdigit(c) ? (c - '0') : ((c - 'A') + 10))
410 if (isxdigit(uc) && (isdigit(uc) || isupper(uc))) {
418 if (isxdigit(uc) && (isdigit(uc) || isupper(uc))) {
479 if (!isdigit(uc))
/haiku/src/libs/mapm/
H A Dmapm_fpf.c173 if (isdigit((int)ch))
/haiku/src/preferences/filetypes/
H A DAttributeWindow.cpp187 if (!isdigit(i))
/haiku/src/system/kernel/lib/
H A Dkernel_vsprintf.cpp104 while (isdigit(**s))
314 if (isdigit(*format))
331 if (isdigit(*format))
/haiku/src/system/libnetwork/netresolv/inet/
H A Dinet_cidr_pton.c103 while (ch = *src++, (isascii(ch) && isdigit(ch))) {
112 } while ((ch = *src++) != '\0' && isascii(ch) && isdigit(ch));
H A Dinet_net_pton.c113 } else if (isascii((u_char)ch) && isdigit((u_char)ch)) {
125 isascii((u_char)ch) && isdigit((u_char)ch));
134 if (!isascii((u_char)ch) || !isdigit((u_char)ch))
142 isdigit((u_char)(src[0])) && dst > odst) {
154 && isdigit((u_char)ch));

Completed in 211 milliseconds

1234