Home
last modified time | relevance | path

Searched defs:isspace (Results 1 – 20 of 20) sorted by relevance

/third_party/musl/porting/liteos_m/kernel/src/ctype/
Disspace.c4 int isspace(int c) in isspace() function
/third_party/musl/porting/liteos_a/kernel/src/ctype/
Disspace.c4 int isspace(int c) in isspace() function
/third_party/musl/src/ctype/
Disspace.c4 int isspace(int c) in isspace() function
/third_party/musl/include/
Dctype.h37 #define isspace(a) __isspace(a) macro
/third_party/musl/porting/linux/user/include/
Dctype.h37 #define isspace(a) __isspace(a) macro
/third_party/musl/porting/liteos_a/kernel/include/
Dctype.h37 #define isspace(a) __isspace(a) macro
/third_party/musl/porting/liteos_m/kernel/include/
Dctype.h41 #define isspace(a) __isspace(a) macro
/third_party/boost/boost/
Dtoken_functions.hpp219 static bool isspace(char_type c) in isspace() function
232 static bool isspace(char_type c) in isspace() function
249 static bool isspace(char_type c) in isspace() function
/third_party/boost/boost/spirit/home/support/char_encoding/
Dstandard.hpp120 isspace(int ch) in isspace() function
Dunicode.hpp99 isspace(char_type ch) in isspace() function
Diso8859_1.hpp663 isspace(int ch) in isspace() function
Dascii.hpp277 isspace(int ch) in isspace() function
Dstandard_wide.hpp135 isspace(wchar_t ch) in isspace() function
/third_party/uboot/u-boot-2020.01/include/linux/
Dctype.h30 #define isspace(c) ((__ismask(c)&(_S)) != 0) macro
/third_party/uboot/u-boot-2020.01/drivers/ddr/hisilicon/default/
Dddr_training_console.c34 #define isspace(c) ((c) == ' ' || ((c) >= '\t' && (c) <= '\r')) macro
/third_party/python/Lib/curses/
Dascii.py64 def isspace(c): return _ctoi(c) in (9, 10, 11, 12, 13, 32) function
/third_party/bounds_checking_function/src/
Dsecinput.h143 #define isspace(c) (((c) == ' ') || ((c) == '\t') || ((c) == '\r') || ((c) == '\n')) macro
/third_party/python/Include/
Dpyport.h627 #define isspace(c) iswspace(btowc(c)) macro
/third_party/boost/libs/python/src/
Dstr.cpp264 bool str_base::isspace() const in isspace() function in boost::python::detail::str_base
/third_party/python/Lib/collections/
D__init__.py1430 def isspace(self): member in UserString