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

  /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...]
pattern.c 830 while ((IS_LETTER(val)) || (IS_DIGIT(val)) ||
868 while ((IS_LETTER(val)) || (IS_DIGIT(val)) ||
    [all...]
tree.c 406 while (IS_LETTER(c) || IS_DIGIT(c) || (c == '.') ||
493 while (IS_LETTER(c) || IS_DIGIT(c) || (c == '.') ||
506 while (IS_LETTER(c) || IS_DIGIT(c) || (c == '.') ||
577 while (IS_LETTER(c) || IS_DIGIT(c) || (c == '.') || (c == ':') ||
644 if (!(IS_LETTER(c) || IS_DIGIT(c) || (c == '.') || (c == ':') ||
649 while (IS_LETTER(c) || IS_DIGIT(c) || (c == '.') || (c == ':') ||
    [all...]
catalog.c     [all...]
HTMLparser.c     [all...]
parser.c     [all...]
xpath.c     [all...]
valid.c     [all...]
xmlregexp.c     [all...]
  /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

Completed in 2429 milliseconds