Searched defs:isspace (Results 1 – 10 of 10) sorted by relevance
/external/python/cpython2/Include/ |
D | bytes_methods.h | 60 #define isspace(c) undefined_isspace(c) macro
|
D | pyport.h | 733 #define isspace(c) iswspace(btowc(c)) macro
|
/external/u-boot/include/linux/ |
D | ctype.h | 30 #define isspace(c) ((__ismask(c)&(_S)) != 0) macro
|
/external/python/cpython2/Lib/curses/ |
D | ascii.py | 64 def isspace(c): return _ctoi(c) in (9, 10, 11, 12, 13, 32) function
|
/external/python/cpython3/Lib/curses/ |
D | ascii.py | 64 def isspace(c): return _ctoi(c) in (9, 10, 11, 12, 13, 32) function
|
/external/doclava/src/com/google/doclava/apicheck/ |
D | ApiFile.java | 752 static boolean isspace(char c) { in isspace() method in ApiFile
|
/external/python/cpython3/Include/ |
D | pyport.h | 587 #define isspace(c) iswspace(btowc(c)) macro
|
/external/python/cpython2/Lib/ |
D | UserString.py | 97 def isspace(self): return self.data.isspace() member in UserString
|
/external/python/dateutil/dateutil/parser/ |
D | _parser.py | 220 def isspace(cls, nextchar): member in _timelex
|
/external/python/cpython3/Lib/collections/ |
D | __init__.py | 1237 def isspace(self): return self.data.isspace() member in UserString
|