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

1234

/haiku/src/add-ons/kernel/file_systems/websearchfs/
H A Dstring_utils.c97 isdigit(p[2]) &&
98 isdigit(p[3])) {
105 isdigit(p[2]) &&
106 isdigit(p[3]) &&
107 isdigit(p[4])) {
/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/system/kernel/util/
H A Dinet_addr.c111 * 0x=hex, 0=octal, isdigit=decimal.
113 if (!isdigit((unsigned char)c))
126 if (isascii(c) && isdigit((unsigned char)c)) {
/haiku/src/system/libroot/posix/musl/time/
H A Dstrptime.c26 if (isdigit(*f)) {
175 if (!isdigit(*s)) return 0;
177 for (i=1; i<=min+range && isdigit(*s); i*=10)
190 if (!isdigit(*s)) return 0;
191 for (*dest=i=0; i<w && isdigit(*s); i++)
/haiku/src/system/libnetwork/musl/network/
H A Dinet_aton.c18 if (z==s || (*z && *z != '.') || !isdigit(*s))
H A Dinet_pton.c27 for (v=j=0; j<3 && isdigit(s[j]); j++)
/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/system/libroot/posix/locale/
H A Dctype.cpp16 #undef isdigit macro
92 isdigit(int c) function
/haiku/src/build/libbe/support/
H A DArchivable.cpp199 while (isdigit(*name))
223 if (!isdigit(*name))
241 if (!isdigit(*name))
/haiku/src/apps/mediaplayer/playlist/
H A DPlaylistFileReader.cpp24 using std::isdigit;
153 if (isdigit(line[equalIndex - 1])) {
157 while (isdigit(line[trackIndex - 1]))
/haiku/src/bin/
H A Dshutdown.cpp46 if (isdigit(arg[0])) {
48 } else if (argv && isdigit(argv[0])) {
/haiku/headers/posix/
H A Dctype.h21 int isdigit(int);
90 #define isdigit(c) __isctype((c), _ISdigit) macro
/haiku/src/apps/terminal/
H A DPatternEvaluator.cpp91 if (isdigit(*pattern)) {
/haiku/src/system/libnetwork/netresolv/resolv/
H A Dres_debug.c800 while (isdigit((unsigned char)*cp))
805 if (isdigit((unsigned char)*cp)) {
807 if (isdigit((unsigned char)*cp)) {
838 while (isdigit((unsigned char)*cp))
844 if (!(isdigit((unsigned char)*cp)))
847 while (isdigit((unsigned char)*cp))
853 if (!(isdigit((unsigned char)*cp)))
856 while (isdigit((unsigned char)*cp))
861 if (isdigit((unsigned char)*cp)) {
863 if (isdigit((unsigne
[all...]
/haiku/src/add-ons/kernel/file_systems/ntfs/libntfs/
H A Drealpath.c94 if (p && strncmp(p, "/dm-", 4) == 0 && isdigit(*(p + 4))) {
/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/system/libnetwork/netresolv/inet/
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));
/haiku/src/system/libroot/posix/glibc/misc/
H A Defgcvt_r.c111 while (i < n && isdigit (buf[i]))
123 while (i < n && !isdigit (buf[i]));
/haiku/src/bin/addattr/
H A DaddAttr.cpp106 || (isdigit(value[0]) && int64value == 1))
110 || (isdigit(value[0]) && int64value == 0))
/haiku/src/system/libroot/posix/glibc/ctype/
H A Dctype.h99 __exctype (isdigit); variable
158 # define isdigit(c) __isctype((c), _ISdigit) macro
/haiku/src/kits/shared/
H A DJson.cpp826 if (isdigit(value[offset]) && value[offset] != '0') {
827 while (offset < len && isdigit(value[offset]))
842 while (offset < len && isdigit(value[offset]))
855 while (offset < len && isdigit(value[offset]))
882 if (isdigit(c) || c == '.' || c == '-' || c == 'e' || c == 'E' || c == '+') {
H A DExpressionParser.cpp139 if (*fCurrentChar == fDecimalSeparator[0] || isdigit(*fCurrentChar)) {
148 while (isdigit(*fCurrentChar) ||
174 while (isdigit(*fCurrentChar)) {
192 if (!isdigit(*fCurrentChar)) {
197 while (isdigit(*fCurrentChar)) {
220 || isdigit(*fCurrentChar))) {
297 return isdigit(c) || (c >= 'a' && c <= 'f') || (c >= 'A' && c <= 'F');
/haiku/src/system/kernel/lib/
H A Dkernel_vsprintf.cpp104 while (isdigit(**s))
314 if (isdigit(*format))
331 if (isdigit(*format))
/haiku/src/system/libroot/posix/glibc/stdio-common/
H A Dprintf-parse.c35 # define ISDIGIT(Ch) isdigit (Ch)

Completed in 814 milliseconds

1234