Searched defs:isxdigit (Results 1 - 5 of 5) sorted by relevance

/external/libcxx/include/
H A Dctype.h28 int isxdigit(int c);
63 #undef isxdigit macro
/external/syslinux/com32/include/
H A Dctype.h100 __ctype_inline int isxdigit(int __c) function
/external/syslinux/core/lwip/src/core/ipv4/
H A Dip_addr.c117 #define isxdigit(c) (isdigit(c) || in_range(c, 'a', 'f') || in_range(c, 'A', 'F')) macro
183 } else if (base == 16 && isxdigit(c)) {
/external/valgrind/coregrind/m_demangle/
H A Dsafe-ctype.h146 #undef isxdigit macro
147 #define isxdigit(c) do_not_use_isxdigit_with_safe_ctype macro
/external/protobuf/src/google/protobuf/stubs/
H A Dstrutil.cc64 #undef isxdigit macro
71 inline bool isxdigit(char c) { function in namespace:google::protobuf
361 if (!isxdigit(p[1])) {
372 while (isxdigit(p[1])) // arbitrarily many hex digits
386 if (isxdigit(p[1])) { // Look one char ahead.
403 if (isxdigit(p[1])) { // Look one char ahead.
506 (last_hex_escape && isxdigit(*src)))) {

Completed in 437 milliseconds