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

1234

/vbox/src/VBox/ExtPacks/VBoxDTrace/onnv/cmd/dtrace/test/tst/common/java_api/
H A Dtst.ProbeDescription.ksh40 java -cp test.jar TestProbeDescription isdigit entry
41 java -cp test.jar TestProbeDescription genunix isdigit entry
42 java -cp test.jar TestProbeDescription fbt genunix isdigit entry
43 java -cp test.jar TestProbeDescription fbt:genunix:isdigit:entry
/vbox/src/VBox/Devices/PC/ipxe/src/include/
H A Dctype.h11 #define isdigit(c) ((c) >= '0' && (c) <= '9') macro
14 #define isxdigit(c) (isdigit(c) || ((c) >= 'A' && (c) <= 'F') || ((c) >= 'a' && (c) <= 'f'))
/vbox/src/VBox/Devices/EFI/Firmware/StdLib/BsdSocketLib/
H A Dinet_net_pton.c170 } else if (isascii(ch) && isdigit(ch)) {
182 isascii(ch) && isdigit(ch));
191 if (!isascii(ch) || !isdigit(ch))
198 if (ch == '/' && isascii(src[0]) && isdigit(src[0]) && dst > odst) {
207 } while ((ch = *src++) != '\0' && isascii(ch) && isdigit(ch));
H A Dres_debug.c599 while (isdigit(*cp))
604 if (isdigit(*cp)) {
606 if (isdigit(*cp)) {
641 while (isdigit(*cp))
647 if (!(isdigit(*cp)))
650 while (isdigit(*cp))
656 if (!(isdigit(*cp)))
659 while (isdigit(*cp))
664 if (isdigit(*cp)) {
666 if (isdigit(*c
[all...]
H A Dns_ttl.c140 if (isdigit(ch)) {
/vbox/src/VBox/Devices/PC/ipxe/src/core/
H A Dgetkey.c75 if ( isdigit ( character ) ) {
/vbox/src/VBox/Devices/EFI/Firmware/StdLib/Include/
H A Dctype.h35 /** The isalnum function tests for any character for which isalpha or isdigit
47 alphabetic characters for which none of iscntrl, isdigit, ispunct, or
78 /** The isdigit function tests for any decimal-digit character.
85 int isdigit(int c);
98 isdigit, ispunct, or isspace is true. In the "C" locale, islower returns
145 isdigit, ispunct, or isspace is true. In the "C" locale, isupper returns
227 #define isdigit(c) (__isCClass( (int)c, (_CD))) macro
/vbox/src/VBox/GuestHost/OpenGL/util/
H A Durl.c17 if (!isdigit( (int) *s))
22 while (*s && isdigit ( (int) *s))
/vbox/src/VBox/Devices/Network/slirp/libalias/
H A Dalias_ftp.c105 # define isdigit(ch) RT_C_IS_DIGIT(ch) macro
349 if (isdigit(ch)) {
359 if (isdigit(ch))
369 if (isdigit(ch))
434 if (isdigit(ch)) {
444 if (isdigit(ch))
453 if (isdigit(ch)) {
460 if (isdigit(ch))
512 if (isdigit(ch)) {
522 if (isdigit(c
[all...]
H A Dalias_irc.c302 while (i < dlen && isdigit(sptr[i])) {
329 while (i < dlen && isdigit(sptr[i])) {
/vbox/src/VBox/Devices/Network/lwip-new/src/core/ipv4/
H A Dip4_addr.c116 #define isdigit(c) in_range(c, '0', '9') macro
117 #define isxdigit(c) (isdigit(c) || in_range(c, 'a', 'f') || in_range(c, 'A', 'F'))
167 if (!isdigit(c))
180 if (isdigit(c)) {
/vbox/src/VBox/Devices/EFI/Firmware/StdLib/LibC/NetUtil/
H A Dinet_addr.c141 * 0x=hex, 0=octal, isdigit=decimal.
143 if (!isdigit((unsigned char)c))
156 if (isascii(c) && isdigit((unsigned char)c)) {
H A Dinet_network.c83 if (isdigit(c)) {
/vbox/src/VBox/Devices/Network/lwip-new/src/core/ipv6/
H A Dip6_addr.c56 #define isdigit(c) in_range(c, '0', '9') macro
57 #define isxdigit(c) (isdigit(c) || in_range(c, 'a', 'f') || in_range(c, 'A', 'F'))
125 (isdigit(*s) ? *s - '0' :
/vbox/src/VBox/Devices/EFI/Firmware/StdLib/LibC/Ctype/
H A DCClass.c39 /** The isalnum function tests for any character for which isalpha or isdigit
57 alphabetic characters for which none of iscntrl, isdigit, ispunct, or
89 /** The isdigit function tests for any decimal-digit character.
97 isdigit( function
121 isdigit, ispunct, or isspace is true. In the "C" locale, islower returns
192 isdigit, ispunct, or isspace is true. In the "C" locale, isupper returns
/vbox/src/VBox/Devices/EFI/Firmware/StdLib/LibC/Stdio/
H A Dgettemp.c166 if (isdigit((unsigned char)*trv))
/vbox/src/VBox/Devices/EFI/Firmware/StdLib/LibC/StdLib/
H A Dstrtoimax.c130 if (isdigit(c))
H A Dstrtoumax.c106 if (isdigit(c))
/vbox/src/VBox/Devices/Graphics/shaderlib/wine/include/msvcrt/
H A Dctype.h43 int __cdecl isdigit(int);
/vbox/src/VBox/Devices/Network/lwip/src/core/
H A Dinet.c338 #define isdigit(c) in_range(c, '0', '9') macro
339 #define isxdigit(c) (isdigit(c) || in_range(c, 'a', 'f') || in_range(c, 'A', 'F'))
382 if (!isdigit(c))
395 if (isdigit(c)) {
/vbox/src/VBox/Additions/WINNT/Graphics/Wine/include/msvcrt/
H A Dctype.h53 int __cdecl isdigit(int);
/vbox/src/VBox/Additions/WINNT/Graphics/Wine/libWine/
H A Dstring.c329 while (isdigit(*format)) width = width * 10 + *format++ - '0';
334 while (isdigit(*format)) max = max * 10 + *format++ - '0';
408 while (isdigit(*iter))
424 while (isdigit(*iter))
/vbox/src/VBox/Devices/EFI/Firmware/StdLib/LibC/Locale/
H A Diswctype_sb.c90 return isdigit((int)c);
/vbox/src/libs/xpcom18a4/nsprpub/pr/src/io/
H A Dprscanf.c354 while (WITHIN_WIDTH(state) && isdigit(ch)) {
362 while (WITHIN_WIDTH(state) && isdigit(ch)) {
384 while (WITHIN_WIDTH(state) && isdigit(ch)) {
591 for (state->width = 0; isdigit(*cPtr); cPtr++) {
/vbox/src/VBox/ValidationKit/common/
H A Dutils.py731 if sDir.isdigit():
750 if len(sLine) < 7 or not sLine[0].isdigit():
835 while offPid > 1 and sFirstLine[offPid - 1].isdigit():
1043 if sNumber.isdigit():
1047 if i < len(asParts) and not asParts[i].isdigit():
1133 if sNumber.isdigit():
1137 if i < len(asParts) and not asParts[i].isdigit():

Completed in 1104 milliseconds

1234