/ndk/sources/host-tools/sed-4.2.1/ |
basicdefs.h | 132 ctype uses should be through macros like ISPRINT... If 152 #undef ISPRINT 153 #define ISPRINT(c) (ISASCII (c) && isprint (c))
|
/external/valgrind/main/coregrind/m_demangle/ |
safe-ctype.h | 78 _sch_isgraph = _sch_isalnum|_sch_ispunct, /* isprint and not space */ 96 #define ISPRINT(c) _sch_test(c, _sch_isprint) 138 #undef isprint macro 139 #define isprint(c) do_not_use_isprint_with_safe_ctype macro
|
/prebuilts/gcc/darwin-x86/arm/arm-eabi-4.6/lib/gcc/arm-eabi/4.6.x-google/plugin/include/ |
safe-ctype.h | 78 _sch_isgraph = _sch_isalnum|_sch_ispunct, /* isprint and not space */ 96 #define ISPRINT(c) _sch_test(c, _sch_isprint) 135 #undef isprint macro 136 #define isprint(c) do_not_use_isprint_with_safe_ctype macro
|
defaults.h | 76 if (ISPRINT(c)) \ [all...] |
/prebuilts/gcc/darwin-x86/arm/arm-linux-androideabi-4.6/lib/gcc/arm-linux-androideabi/4.6.x-google/plugin/include/ |
safe-ctype.h | 78 _sch_isgraph = _sch_isalnum|_sch_ispunct, /* isprint and not space */ 96 #define ISPRINT(c) _sch_test(c, _sch_isprint) 135 #undef isprint macro 136 #define isprint(c) do_not_use_isprint_with_safe_ctype macro
|
defaults.h | 76 if (ISPRINT(c)) \ [all...] |
/prebuilts/gcc/linux-x86/arm/arm-eabi-4.6/lib/gcc/arm-eabi/4.6.x-google/plugin/include/ |
safe-ctype.h | 78 _sch_isgraph = _sch_isalnum|_sch_ispunct, /* isprint and not space */ 96 #define ISPRINT(c) _sch_test(c, _sch_isprint) 135 #undef isprint macro 136 #define isprint(c) do_not_use_isprint_with_safe_ctype macro
|
defaults.h | 76 if (ISPRINT(c)) \ [all...] |
/prebuilts/gcc/linux-x86/arm/arm-linux-androideabi-4.6/lib/gcc/arm-linux-androideabi/4.6.x-google/plugin/include/ |
safe-ctype.h | 78 _sch_isgraph = _sch_isalnum|_sch_ispunct, /* isprint and not space */ 96 #define ISPRINT(c) _sch_test(c, _sch_isprint) 135 #undef isprint macro 136 #define isprint(c) do_not_use_isprint_with_safe_ctype macro
|
defaults.h | 76 if (ISPRINT(c)) \ [all...] |
/ndk/sources/host-tools/make-3.81/glob/ |
fnmatch.c | 75 # define ISGRAPH(c) (ISASCII (c) && isprint (c) && !isspace (c)) 78 # define ISPRINT(c) (ISASCII (c) && isprint (c)) 383 || (STREQ (str, "print") && ISPRINT ((unsigned char) *n))
|
/ndk/sources/host-tools/sed-4.2.1/sed/ |
execute.c | 1090 if (isascii(*p) && ISPRINT(*p)) { 1092 if (ISPRINT(*p)) { [all...] |