Home
last modified time | relevance | path

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

/external/sonivox/arm-wt-22k/lib_src/
Deas_ctype.h36 EAS_INLINE EAS_I8 IsSpace (EAS_I8 c) { return (((c >= 9) && (c <= 13)) || (c == ' ')); } in IsSpace() function
/external/v8/src/
Dostreams.cc53 bool IsSpace(uint16_t c) { return (0x9 <= c && c <= 0xd) || c == 0x20; } in IsSpace() function
/external/tensorflow/tensorflow/core/lib/strings/
Dscanner.h180 static bool IsSpace(char ch) { in IsSpace() function
/external/pdfium/core/fpdfdoc/
Dctypeset.cpp144 bool IsSpace(uint16_t word) { in IsSpace() function
/external/compiler-rt/lib/sanitizer_common/
Dsanitizer_common.h483 INLINE bool IsSpace(int c) { in IsSpace() function
/external/sqlite/dist/orig/
Dshell.c180 #define IsSpace(X) isspace((unsigned char)X) macro
/external/sqlite/dist/
Dshell.c186 #define IsSpace(X) isspace((unsigned char)X) macro