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

  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/Dxe/EfiUiLib/
EfiUiLib.c 24 #define IS_DIGIT(Ch) (((Ch) >= L'0') && ((Ch) <= L'9'))
65 if (!IS_DIGIT (String[i])) {
  /external/pcre/dist2/src/
pcre2_compile.c 188 #define IS_DIGIT(x) ((x) >= CHAR_0 && (x) <= CHAR_9)
    [all...]
  /external/valgrind/coregrind/m_demangle/
cp-demangle.c 216 #define IS_DIGIT(c) ((c) >= '0' && (c) <= '9')
    [all...]
  /toolchain/binutils/binutils-2.25/libiberty/
cp-demangle.c 201 #define IS_DIGIT(c) ((c) >= '0' && (c) <= '9')
    [all...]
  /external/libxml2/
uri.c 77 #ifdef IS_DIGIT
78 #undef IS_DIGIT
83 #define IS_DIGIT(x) (((x) >= '0') && ((x) <= '9'))
89 #define IS_ALPHANUM(x) (IS_ALPHA(x) || IS_DIGIT(x))
    [all...]
pattern.c 834 while ((IS_LETTER(val)) || (IS_DIGIT(val)) ||
872 while ((IS_LETTER(val)) || (IS_DIGIT(val)) ||
    [all...]
tree.c 410 while (IS_LETTER(c) || IS_DIGIT(c) || (c == '.') ||
497 while (IS_LETTER(c) || IS_DIGIT(c) || (c == '.') ||
510 while (IS_LETTER(c) || IS_DIGIT(c) || (c == '.') ||
581 while (IS_LETTER(c) || IS_DIGIT(c) || (c == '.') || (c == ':') ||
648 if (!(IS_LETTER(c) || IS_DIGIT(c) || (c == '.') || (c == ':') ||
653 while (IS_LETTER(c) || IS_DIGIT(c) || (c == '.') || (c == ':') ||
    [all...]
catalog.c     [all...]
parser.c     [all...]
xpath.c     [all...]
valid.c     [all...]
xmlregexp.c     [all...]
  /external/libxml2/include/libxml/
parserInternals.h 156 * IS_DIGIT:
163 #define IS_DIGIT(c) xmlIsDigitQ(c)
169 * Behaves like IS_DIGIT but with a single byte argument

Completed in 1395 milliseconds