Home
last modified time | relevance | path

Searched defs:ISSPACE (Results 1 – 7 of 7) sorted by relevance

/aosp_15_r20/external/curl/lib/
H A Dcurl_ctype.h45 #define ISSPACE(x) (ISBLANK(x) || (((x) >= 0xa) && ((x) <= 0x0d))) macro
/aosp_15_r20/external/python/cpython2/Include/
Dbytes_methods.h45 #define ISSPACE(c) Py_ISSPACE(c) macro
/aosp_15_r20/external/giflib/
H A Dgetarg.c124 #define ISSPACE(x) ((x) <= ' ') /* Not conventional - but works fine! */ macro
/aosp_15_r20/prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/lib/gcc/x86_64-w64-mingw32/4.8.3/plugin/include/
Dsafe-ctype.h98 #define ISSPACE(c) _sch_test(c, _sch_isspace) macro
/aosp_15_r20/external/rust/android-crates-io/crates/grpcio-sys/grpc/third_party/cares/cares/src/lib/
Dsetup_once.h275 #define ISSPACE(x) (isspace((int) ((unsigned char)x))) macro
/aosp_15_r20/external/harfbuzz_ng/src/
H A Dhb-algs.hh949 static inline bool ISSPACE (unsigned char c) in ISSPACE() function
/aosp_15_r20/external/coreboot/util/kconfig/
H A Dregex.c154 #define ISSPACE(c) (isascii (c) && isspace (c)) macro