Searched refs:isdigit (Results 51 - 75 of 96) sorted by path

1234

/haiku/src/apps/haikudepot/build/scripts/
H A Dustache.py529 if name.isdigit() else
/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/apps/poorman/libhttpd/
H A Dlibhttpd.c2216 if ( isdigit( (int) cp_dash[1] ) )
4239 while ( isdigit( *str ) )
/haiku/src/apps/pulse/
H A DConfigView.cpp147 if (!isdigit(c))
/haiku/src/bin/bfs_tools/
H A Drecover.cpp766 if (argv[1] && isdigit((argv[1])[0])) {
772 if (argv[1] && isdigit((argv[1])[0])) {
/haiku/src/bin/
H A Dchop.c98 if (!isdigit(*num))
H A Dhd.c65 if (!isdigit(*num))
/haiku/src/bin/debug/strace/
H A Dstrace.cpp205 if (!isdigit(str[i]))
/haiku/src/bin/locale/
H A Dcollectcatkeys.cpp120 } else if (lookForID && (isdigit(*in) || *in == '-' || *in == '+')) {
/haiku/src/bin/makebootable/platform/bios_ia32/
H A Dmakebootable.cpp423 if (!isdigit(fileName[k])) {
483 if (!isdigit(fileName[k])) {
/haiku/src/bin/network/ftpd/
H A Dftpcmd.y389 if (!isdigit(*p))
395 if (!isdigit(*p))
1425 if (isdigit(cbuf[cpos])) {
1427 while (isdigit(cbuf[++cpos]))
1440 if (isdigit(cbuf[cpos])) {
1442 while (isdigit(cbuf[++cpos]))
H A Dftpd.c2388 if (atstart && isdigit(c))
/haiku/src/build/libbe/support/
H A DArchivable.cpp199 while (isdigit(*name))
223 if (!isdigit(*name))
241 if (!isdigit(*name))
/haiku/src/build/libgnuregex/
H A Dregex.c141 #define ISDIGIT(c) (isascii (c) && isdigit (c))
/haiku/src/kits/network/libnetapi/
H A DNetworkAddress.cpp44 if (isdigit(hex))
/haiku/src/kits/shared/
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');
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 == '+') {
/haiku/src/kits/support/
H A DArchivable.cpp84 if (!isdigit(*++name))
96 if (!isdigit(name[0]))
/haiku/src/kits/tracker/
H A DFSUtils.cpp2509 while ((p > name) && isdigit(*p))
/haiku/src/preferences/filetypes/
H A DApplicationTypeWindow.cpp712 if (!isdigit(i))
/haiku/src/system/kernel/debug/
H A Ddebug_parser.cpp235 if (isdigit(*fCurrentChar)) {
243 && (isdigit(*fCurrentChar)
253 while (*fCurrentChar != 0 && isdigit(*fCurrentChar))
269 || isdigit(*fCurrentChar))) {
/haiku/src/system/kernel/
H A Delf.cpp419 if (isdigit(argv[1][0])) {
/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/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++)

Completed in 302 milliseconds

1234