HomeSort by relevance Sort by last modified time
    Searched refs:STRINGLIB_ISDECIMAL (Results 1 - 4 of 4) sorted by null

  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/stringlib/
stringdefs.h 16 #define STRINGLIB_ISDECIMAL(x) ((x >= '0') && (x <= '9'))
17 #define STRINGLIB_TODECIMAL(x) (STRINGLIB_ISDECIMAL(x) ? (x - '0') : -1)
unicodedefs.h 16 #define STRINGLIB_ISDECIMAL Py_UNICODE_ISDECIMAL
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/stringlib/
stringdefs.h 16 #define STRINGLIB_ISDECIMAL(x) ((x >= '0') && (x <= '9'))
17 #define STRINGLIB_TODECIMAL(x) (STRINGLIB_ISDECIMAL(x) ? (x - '0') : -1)
unicodedefs.h 16 #define STRINGLIB_ISDECIMAL Py_UNICODE_ISDECIMAL

Completed in 47 milliseconds