Home
last modified time | relevance | path

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

/external/python/cpython2/Include/
Dbytes_methods.h60 #define isspace(c) undefined_isspace(c) macro
Dpyport.h733 #define isspace(c) iswspace(btowc(c)) macro
/external/u-boot/include/linux/
Dctype.h30 #define isspace(c) ((__ismask(c)&(_S)) != 0) macro
/external/python/cpython2/Lib/curses/
Dascii.py64 def isspace(c): return _ctoi(c) in (9, 10, 11, 12, 13, 32) function
/external/python/cpython3/Lib/curses/
Dascii.py64 def isspace(c): return _ctoi(c) in (9, 10, 11, 12, 13, 32) function
/external/doclava/src/com/google/doclava/apicheck/
DApiFile.java752 static boolean isspace(char c) { in isspace() method in ApiFile
/external/python/cpython3/Include/
Dpyport.h587 #define isspace(c) iswspace(btowc(c)) macro
/external/python/cpython2/Lib/
DUserString.py97 def isspace(self): return self.data.isspace() member in UserString
/external/python/dateutil/dateutil/parser/
D_parser.py220 def isspace(cls, nextchar): member in _timelex
/external/python/cpython3/Lib/collections/
D__init__.py1237 def isspace(self): return self.data.isspace() member in UserString