OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:IS_DIGIT
(Results
1 - 4
of
4
) sorted by null
/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/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 58 milliseconds