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

  /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
  /external/libxml2/
uri.c 76 #ifdef IS_DIGIT
77 #undef IS_DIGIT
82 #define IS_DIGIT(x) (((x) >= '0') && ((x) <= '9'))
88 #define IS_ALPHANUM(x) (IS_ALPHA(x) || IS_DIGIT(x))
    [all...]
  /external/pcre/dist/
pcre_compile.c 575 #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...]

Completed in 79 milliseconds