Searched defs:isdigit (Results 1 - 9 of 9) sorted by path

/device/linaro/bootloader/arm-trusted-firmware/include/stdlib/sys/
H A Dctype.h50 #define isdigit(c) ((c) >= '0' && (c) <= '9') macro
51 #define isxdigit(c) (isdigit(c) \
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Include/
H A Dbytes_methods.h53 #undef isdigit macro
54 #define isdigit(c) undefined_isdigit(c) macro
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/
H A Dsre_parse.py224 def isdigit(char): function
232 if not isident(char) and not isdigit(char):
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Include/
H A Dbytes_methods.h53 #undef isdigit macro
54 #define isdigit(c) undefined_isdigit(c) macro
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
H A DUserString.py94 def isdigit(self): return self.data.isdigit() member in class:UserString
H A Dsre_parse.py213 def isdigit(char): function
221 if not isident(char) and not isdigit(char):
/device/linaro/bootloader/edk2/CryptoPkg/Library/BaseCryptLib/SysCall/
H A DCrtWrapper.c154 int isdigit (int c) function
/device/linaro/bootloader/edk2/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
/device/linaro/bootloader/edk2/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

Completed in 206 milliseconds