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

  /external/chromium_org/third_party/libxml/src/include/libxml/
parserInternals.h 123 * IS_DIGIT:
130 #define IS_DIGIT(c) xmlIsDigitQ(c)
136 * Behaves like IS_DIGIT but with a single byte argument
  /external/libxml2/include/libxml/
parserInternals.h 123 * IS_DIGIT:
130 #define IS_DIGIT(c) xmlIsDigitQ(c)
136 * Behaves like IS_DIGIT but with a single byte argument
  /external/chromium_org/third_party/libxml/src/
uri.c 45 #ifdef IS_DIGIT
46 #undef IS_DIGIT
51 #define IS_DIGIT(x) (((x) >= '0') && ((x) <= '9'))
57 #define IS_ALPHANUM(x) (IS_ALPHA(x) || IS_DIGIT(x))
    [all...]
  /external/libxml2/
uri.c 45 #ifdef IS_DIGIT
46 #undef IS_DIGIT
51 #define IS_DIGIT(x) (((x) >= '0') && ((x) <= '9'))
57 #define IS_ALPHANUM(x) (IS_ALPHA(x) || IS_DIGIT(x))
    [all...]
  /external/gcc-demangle/
cp-demangle.c 201 #define IS_DIGIT(c) ((c) >= '0' && (c) <= '9')
    [all...]
  /external/valgrind/main/coregrind/m_demangle/
cp-demangle.c 216 #define IS_DIGIT(c) ((c) >= '0' && (c) <= '9')
1090 || IS_DIGIT (d_peek_next_char (di))))
    [all...]

Completed in 319 milliseconds